pub trait IMapUIMethods: IMapUI {
// Provided methods
fn start(self) { ... }
fn update(self) { ... }
fn get_time(self) -> f32 { ... }
fn get_cannon_icon_offset(self) -> f32 { ... }
fn get_up_down_curve(self) -> AnimationCurve { ... }
fn get_scale_curve(self) -> AnimationCurve { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_cannon_icon_offset(self) -> f32
fn get_cannon_icon_offset(self) -> f32
get_CannonIconOffset() overload
Sourcefn get_up_down_curve(self) -> AnimationCurve
fn get_up_down_curve(self) -> AnimationCurve
get_UpDownCurve() overload
Sourcefn get_scale_curve(self) -> AnimationCurve
fn get_scale_curve(self) -> AnimationCurve
get_ScaleCurve() 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: IMapUI> IMapUIMethods for __T
Available on crate feature
root-mapui only.