Skip to main content

ITrailMeshMethods

Trait ITrailMeshMethods 

Source
pub trait ITrailMeshMethods: ITrailMesh {
    // Provided methods
    fn get_pos_root(self) -> Array<Vector3> { ... }
    fn set_pos_root(self, value: impl Into<Array<Vector3>>) { ... }
    fn get_pos_tip(self) -> Array<Vector3> { ... }
    fn set_pos_tip(self, value: impl Into<Array<Vector3>>) { ... }
    fn get_alpha(self) -> f32 { ... }
    fn set_alpha(self, value: impl Into<f32>) { ... }
    fn get_is_alive(self) -> bool { ... }
    fn start(self) { ... }
    fn on_destroy(self) { ... }
    fn late_update(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_pos_root(self) -> Array<Vector3>

get_PosRoot() overload

Source

fn set_pos_root(self, value: impl Into<Array<Vector3>>)

set_PosRoot(::unity::Array<crate::unity_engine::vector3::Vector3>) overload

Source

fn get_pos_tip(self) -> Array<Vector3>

get_PosTip() overload

Source

fn set_pos_tip(self, value: impl Into<Array<Vector3>>)

set_PosTip(::unity::Array<crate::unity_engine::vector3::Vector3>) overload

Source

fn get_alpha(self) -> f32

get_Alpha() overload

Source

fn set_alpha(self, value: impl Into<f32>)

set_Alpha(f32) overload

Source

fn get_is_alive(self) -> bool

get_IsAlive() overload

Source

fn start(self)

Start() overload

Source

fn on_destroy(self)

OnDestroy() overload

Source

fn late_update(self)

LateUpdate() overload

Source

fn ctor(self)

.ctor() 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: ITrailMesh> ITrailMeshMethods for __T

Available on crate feature combat-trailmesh only.