bevy_yarnspinner 0.7.0

Bevy plugin for Yarn Spinner for Rust, friendly tool for writing game dialogue
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use bevy::prelude::*;
pub use command_registry::YarnCommands;
pub(crate) use command_registry::wait::update_wait;
pub use command_wrapping::{TaskFinishedIndicator, UntypedYarnCommand, YarnCommand};

mod command_registry;
mod command_wrapping;
mod execution;

pub(crate) fn commands_plugin(app: &mut App) {
    app.add_plugins(command_wrapping::command_wrapping_plugin)
        .add_plugins(command_registry::command_registry_plugin)
        .add_plugins(execution::command_execution_plugin);
}