pub trait NextActionExt {
    fn next_action(&mut self, actor: Entity);
}
Expand description

Extension trait for next_action method on ActionCommands and Commands.

Required Methods

Start next action for entity actor. This is done by removing the currently running action, and retrieving the next action in the queue list.

Implementations on Foreign Types

Implementors