Skip to content

mrchantey/beet

Repository files navigation

beet

A very flexible behavior library for games and robotics.

Crates.io version Download docs.rs docs

made with ❤️‍🔥 by mrchantey

use bevy::prelude::*;
use beet::prelude::*;
fn main(){
  App::new().world_mut().spawn((
      Running,
      SequenceSelector::default(), 
    ))
    .with_children(|parent| {
      parent.spawn((
        LogOnRun("Hello".into()),
        InsertOnRun(RunResult::Success),
      ));
      parent.spawn((
        LogOnRun("World".into()),
        InsertOnRun(RunResult::Success),
      ));
    });
}

Bevy Versions

bevy beet
0.14.0 0.0.2

About

A behavior library for games and robotics.

Topics

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE.txt
MIT
LICENSE-MIT.txt

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages