Skip to main content

IEmissionAnimationMethods

Trait IEmissionAnimationMethods 

Source
pub trait IEmissionAnimationMethods: IEmissionAnimation {
    // Provided methods
    fn get_is_animate(self) -> bool { ... }
    fn set_is_animate(self, value: impl Into<bool>) { ... }
    fn awake(self) { ... }
    fn update(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_is_animate(self) -> bool

get_IsAnimate() overload

Source

fn set_is_animate(self, value: impl Into<bool>)

set_IsAnimate(bool) overload

Source

fn awake(self)

Awake() overload

Source

fn update(self)

Update() overload

Source

fn ctor(self)

.ctor() 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: IEmissionAnimation> IEmissionAnimationMethods for __T

Available on crate feature app-emissionanimation only.