pub trait Node<T>:
Debug
+ Send
+ Sync {
// Required method
fn tick(&mut self, ctx: &mut TickContext<'_, T>) -> Status;
// Provided methods
fn abort(&mut self) { ... }
fn name(&self) -> &str { ... }
}Expand description
A node in the behavior tree.