Zeenobit

Results 14 issues of Zeenobit

Based on the documentation: ```rust /// Returns true if the number is positive and false if the number is zero or negative. fn is_positive(&self) -> bool; /// Returns true if...

# Objective As far as I'm aware, there is currently no way to use a `Bundle` as a filter type. This applies to named bundles (i.e. using `#[derive(Bundle)]`), as well...

A-ECS
C-Usability
S-Controversial

# Objective Fixed #6184 ## Solution This PR adds an `Execute` trait which is implemented for `&mut World` and `&mut App`. It allows the user to do this: ```rust let...

A-ECS
C-Usability
C-Testing

# Objective Fixed #6184 ## Solution This PR adds an `ApplyCommands` trait which is implemented for &mut World and &mut App. It allows the user to do this: ```rust let...

A-ECS
C-Usability
S-Controversial

I've managed to get most of this crate functional in my project by having a root UI node with a couple of style sheets. I have a system which refreshes...

I'm trying to use `bevy_ecss` in my project, but for some reason my stylesheets aren't cascading to child nodes that are added after the initial UI setup. I have some...

enhancement

## What problem does this solve or what need does it fill? Since Bevy 0.14, the Bevy Color API was expanded and improved. While these improvements have obvious benefits, one...

C-Enhancement
C-Usability
S-Needs-Design
X-Controversial
A-Color
D-Macros

This is a PR to address Issue #26 I've added a new `include_system_set` member to `Settings`. Inside `included_systems_sets`, I'm checking this mapper to skip any unwanted system sets. I think...

Trivial changelist to allow setting the scroll visibility on `Window`.

## Bevy version Bevy 0.16 ## What you did This is a follow up to [this discussion](https://github.com/bevyengine/bevy/discussions/19460). The following code no longer compiles as of Bevy 0.16: ```rust use bevy::prelude::*;...

C-Bug
A-ECS
P-Regression
D-Complex
S-Needs-Design