bevy_talks 0.5.0

A Bevy plugin to write dialogues for your characters to say and do things, together with player choices.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Prelude for the `bevy_talks` crate.
pub use super::TalksPlugin;

pub use super::actors::*;
pub use super::builder::{build_command::*, commands::*, *};
pub use super::errors::*;
pub use super::events::{node_events::*, requests::*, *};
pub use super::talk::*;
pub use super::talk_asset::*;
pub use bevy_talks_macros::NodeEventEmitter;