pub trait IMagicSubAnimMethods: IMagicSubAnim {
// Provided methods
fn get_distance_scale(self) -> f32 { ... }
fn setup(self, chr: impl Into<Character>) -> (Vector3, Vector3) { ... }
fn update(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_distance_scale(self) -> f32
fn get_distance_scale(self) -> f32
get_DistanceScale() 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: IMagicSubAnim> IMagicSubAnimMethods for __T
Available on crate feature
combat-magicsubanim only.