pub trait NextActionExt {
fn next_action(&mut self, actor: Entity);
}
Expand description
Extension trait for next_action
method on ActionCommands
and Commands
.
Required Methods
fn next_action(&mut self, actor: Entity)
fn next_action(&mut self, actor: Entity)
Start next action for entity actor
. This is done by removing the currently running action,
and retrieving the next action in the queue list.