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;
fn all_poisoned(entities: Query<&Name, With
With bevy_mod_check_filter
:
```rust
struct Poisoned(pub bool);
fn all_poisoned(entities: Query<&Name, Check
// OR with one of the provided type aliases:
fn all_poisoned(entities: Query<&Name, IsTrue
All code in this repository is dual-licensed under either: