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§
Sourcefn get_pos_root(self) -> Array<Vector3>
fn get_pos_root(self) -> Array<Vector3>
get_PosRoot() overload
Sourcefn set_pos_root(self, value: impl Into<Array<Vector3>>)
fn set_pos_root(self, value: impl Into<Array<Vector3>>)
set_PosRoot(::unity::Array<crate::unity_engine::vector3::Vector3>) overload
Sourcefn get_pos_tip(self) -> Array<Vector3>
fn get_pos_tip(self) -> Array<Vector3>
get_PosTip() overload
Sourcefn set_pos_tip(self, value: impl Into<Array<Vector3>>)
fn set_pos_tip(self, value: impl Into<Array<Vector3>>)
set_PosTip(::unity::Array<crate::unity_engine::vector3::Vector3>) overload
Sourcefn get_is_alive(self) -> bool
fn get_is_alive(self) -> bool
get_IsAlive() overload
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() overload
Sourcefn late_update(self)
fn late_update(self)
LateUpdate() 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: ITrailMesh> ITrailMeshMethods for __T
Available on crate feature
combat-trailmesh only.