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§
Sourcefn ctor(self, chr: impl Into<Character>, hand: impl Into<i32>)
fn ctor(self, chr: impl Into<Character>, hand: impl Into<i32>)
.ctor(crate::combat::character::Character, i32) overload
Sourcefn setup_weapon_length_offset(self)
fn setup_weapon_length_offset(self)
SetupWeaponLengthOffset() 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: ITrailVertexSupplier> ITrailVertexSupplierMethods for __T
Available on crate feature
combat-trailvertexsupplier only.