A query filter to allow Enabled
-style marker components without losing the
ergonomics of ZST
-style marker component filtering!
Without bevy_mod_check_filter
:
```rust
struct Poisoned;
struct Name { name: &'static str };
fn all_poisoned(entities: Query<&Name, With
With bevy_mod_check_filter
:
```rust
struct Poisoned(pub bool);
impl std::ops::Deref for Poisoned { type Target = bool;
fn deref(&self) -> &Self::Target {
&self.0
}
}
struct Name { name: &'static str };
fn all_poisoned(entities: Query<&Name, Check
// OR with one of the provided type aliases:
fn find_poisoned(entities: Query<&Name, IsTrue
All code in this repository is dual-licensed under either: