Aery

A plugin that adds a subset of Entity Relationship features to Bevy using Non-fragmenting ZST relations.

Crates.io Docs.rs

Currently supported:

API tour:

Non exhaustive. Covers most common parts.

```rust use bevy::prelude::; use aery::prelude::;

fn main() { App::new() .addplugins(Aery) .addsystems(Startup, setup) .add_systems(Update, (alert, sys)) .run(); }

[derive(Component)]

struct Foo;

[derive(Component)]

struct Bar;

[derive(Relation)]

[cleanup(policy = "Recursive")]

struct ChildOf;

[derive(Relation)]

[multi]

struct Bag;

// Spawning entities with relations fn setup(mut commands: Commands) { // A hierarchy of Foos with (chocolate? OwO) Bars in their Bags commands.add(|wrld: &mut World| { wrld.spawn(Foo) .scope::(|, mut child| { child.insert(Foo); child.scopetarget::(|, mut bag| { bag.insert(Bar); }); }) .scope::(|, mut child| { child.insert(Foo); child.scopetarget::(|, mut bag| { bag.insert(Bar); }); }); }) }

// Listening for relation events fn alert(mut events: EventReader) { for event in events.iter() { if event.matches(Wc, TargetOp::Set, ChildOf, Wc) { println!("{:?} was added as a child of {:?}", event.host, event.target); } } }

// Relation Queries fn sys( foos: Query<(&Foo, Relations<(Bag, ChildOf)>)>, roots: Query>, bars: Query<&Bar>, ) { foos.ops() .join::(&bars) .traverse::(roots.iter()) .foreach(|fooparent, foo, bar| { // .. }) } ```

Version table

| Bevy version | Aery verison | |--------------|--------------| | 0.11 | 0.3 | | 0.10 | 0.1 - 0.2 |

Credits