Non-fragmenting (slight misnomer) ZST relations for Bevy.
```rust use bevy::prelude::; use aery::prelude::;
fn main() { App::new() .addplugin(Aery) .addstartupsystem(setup) .addsystem(sys) .run(); }
struct Foo;
struct Bar;
struct R0;
struct R1;
fn setup(mut commands: Commands) { let (root, foo0, foo1, bar0, bar1) = ( commands.spawn(Foo).id(), commands.spawn(Foo).id(), commands.spawn(Foo).id(), commands.spawn(Bar).id(), commands.spawn(Bar).id(), );
commands.set::<R0>(foo0, bar0);
commands.set::<R0>(foo1, bar1);
commands.set::<R1>(foo0, root);
commands.set::<R1>(foo1, root);
}
fn sys(
foos: Query<(&Foo, Relations<(R0, R1)>)>,
bars: Query<&Bar>,
r1roots: Query
| Bevy version | Aery verison | |--------------|--------------| | 0.10 | 0.1 - 0.2 |