Skip to main content

ITrailVertexSupplierMethods

Trait ITrailVertexSupplierMethods 

Source
pub trait ITrailVertexSupplierMethods: ITrailVertexSupplier {
    // Provided methods
    fn get_alpha(self) -> f32 { ... }
    fn set_alpha(self, value: impl Into<f32>) { ... }
    fn clear(self) { ... }
    fn ctor(self, chr: impl Into<Character>, hand: impl Into<i32>) { ... }
    fn setup_weapon_length_offset(self) { ... }
    fn update(self, dt: impl Into<f32>) -> (Vector3, Vector3) { ... }
    fn send_to_mesh(
        self,
        pos_r: impl Into<Array<Vector3>>,
        pos_t: impl Into<Array<Vector3>>,
    ) { ... }
}

Provided Methods§

Source

fn get_alpha(self) -> f32

get_Alpha() overload

Source

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

set_Alpha(f32) overload

Source

fn clear(self)

Clear() overload

Source

fn ctor(self, chr: impl Into<Character>, hand: impl Into<i32>)

.ctor(crate::combat::character::Character, i32) overload

Source

fn setup_weapon_length_offset(self)

SetupWeaponLengthOffset() overload

Source

fn update(self, dt: impl Into<f32>) -> (Vector3, Vector3)

Update(f32, *mutcrate::unity_engine::vector3::Vector3, *mutcrate::unity_engine::vector3::Vector3) overload

Source

fn send_to_mesh( self, pos_r: impl Into<Array<Vector3>>, pos_t: impl Into<Array<Vector3>>, )

SendToMesh(::unity::Array<crate::unity_engine::vector3::Vector3>, ::unity::Array<crate::unity_engine::vector3::Vector3>) 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: ITrailVertexSupplier> ITrailVertexSupplierMethods for __T

Available on crate feature combat-trailvertexsupplier only.