pub trait IOffsetModifier: IMonoBehaviour {
// Provided methods
fn weight(self) -> f32 { ... }
fn set_weight(self, value: f32) { ... }
fn ik(self) -> FullBodyBipedIK { ... }
fn set_ik(self, value: FullBodyBipedIK) { ... }
fn last_time(self) -> f32 { ... }
fn set_last_time(self, value: f32) { ... }
}Provided Methods§
fn weight(self) -> f32
fn set_weight(self, value: f32)
fn ik(self) -> FullBodyBipedIK
fn set_ik(self, value: FullBodyBipedIK)
fn last_time(self) -> f32
fn set_last_time(self, value: f32)
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.