pub trait IHubMoveStateWaitMethods: IHubMoveStateWait {
// Provided methods
fn ctor(
self,
unit: impl Into<HubUnitController>,
target: impl Into<Vector3>,
body_anim: impl Into<Il2CppString>,
face_anim: impl Into<Il2CppString>,
is_turn: impl Into<bool>,
start_sec: impl Into<f32>,
end_sec: impl Into<f32>,
) { ... }
fn is_end(self) -> bool { ... }
fn start(self, resume: impl Into<bool>) { ... }
fn update(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
unit: impl Into<HubUnitController>,
target: impl Into<Vector3>,
body_anim: impl Into<Il2CppString>,
face_anim: impl Into<Il2CppString>,
is_turn: impl Into<bool>,
start_sec: impl Into<f32>,
end_sec: impl Into<f32>,
)
fn ctor( self, unit: impl Into<HubUnitController>, target: impl Into<Vector3>, body_anim: impl Into<Il2CppString>, face_anim: impl Into<Il2CppString>, is_turn: impl Into<bool>, start_sec: impl Into<f32>, end_sec: impl Into<f32>, )
.ctor(crate::app::hubunitcontroller::HubUnitController, crate::unity_engine::vector3::Vector3, ::unity::Il2CppString, ::unity::Il2CppString, bool, f32, f32) 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: IHubMoveStateWait> IHubMoveStateWaitMethods for __T
Available on crate feature
app-hubmovestatewait only.