pub trait IFSMMethods: IFSM {
// Provided methods
fn get_current_state(self) -> State { ... }
fn ctor(self) { ... }
fn finalize(self) { ... }
fn dispose(self) { ... }
fn update(self) { ... }
fn late_update(self) { ... }
fn update_core(self, update_func: impl Into<Action_1<State>>) { ... }
fn add(self, state: impl Into<State>) { ... }
fn add_first(self, state: impl Into<State>) { ... }
fn clear(self) { ... }
fn get_debugger_display(self) -> Il2CppString { ... }
fn to_string(self) -> Il2CppString { ... }
}Provided Methods§
Sourcefn get_current_state(self) -> State
fn get_current_state(self) -> State
get_CurrentState() overload
Sourcefn late_update(self)
fn late_update(self)
LateUpdate() overload
Sourcefn update_core(self, update_func: impl Into<Action_1<State>>)
fn update_core(self, update_func: impl Into<Action_1<State>>)
UpdateCore(crate::system::action_1::Action_1<crate::combat::state::State>) overload
Sourcefn get_debugger_display(self) -> Il2CppString
fn get_debugger_display(self) -> Il2CppString
get_DebuggerDisplay() overload
Sourcefn to_string(self) -> Il2CppString
fn to_string(self) -> Il2CppString
ToString() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IFSM> IFSMMethods for __T
Available on crate feature
combat-fsm only.