Skip to main content

IHubMoveStateMoveSplineLoopMethods

Trait IHubMoveStateMoveSplineLoopMethods 

Source
pub trait IHubMoveStateMoveSplineLoopMethods: IHubMoveStateMoveSplineLoop {
    // Provided methods
    fn ctor(
        self,
        unit: impl Into<HubUnitController>,
        data: impl Into<Array<Vector3>>,
        body_anim: impl Into<Il2CppString>,
        face_anim: impl Into<Il2CppString>,
        is_turn: impl Into<bool>,
        speed: impl Into<f32>,
    ) { ... }
    fn is_end(self) -> bool { ... }
    fn start(self, resume: impl Into<bool>) { ... }
    fn update(self) { ... }
    fn on_draw_gizmos(self) { ... }
}

Provided Methods§

Source

fn ctor( self, unit: impl Into<HubUnitController>, data: impl Into<Array<Vector3>>, body_anim: impl Into<Il2CppString>, face_anim: impl Into<Il2CppString>, is_turn: impl Into<bool>, speed: impl Into<f32>, )

.ctor(crate::app::hubunitcontroller::HubUnitController, ::unity::Array<crate::unity_engine::vector3::Vector3>, ::unity::Il2CppString, ::unity::Il2CppString, bool, f32) overload

Source

fn is_end(self) -> bool

IsEnd() overload

Source

fn start(self, resume: impl Into<bool>)

Start(bool) overload

Source

fn update(self)

Update() overload

Source

fn on_draw_gizmos(self)

OnDrawGizmos() 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§

Source§

impl<__T: IHubMoveStateMoveSplineLoop> IHubMoveStateMoveSplineLoopMethods for __T

Available on crate feature app-hubmovestatemovesplineloop only.