bevymodcheck_filter

A query filter to allow Enabled-style marker components without losing the ergonomics of ZST-style marker component filtering!

Example

Without bevy_mod_check_filter:

```rust

[derive(Component)]

struct Poisoned;

fn all_poisoned(entities: Query<&Name, With>) { // ... } ```

With bevy_mod_check_filter:

```rust

[derive(Component, Deref)]

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>) { // ... } ```

License

All code in this repository is dual-licensed under either: