Skip to main content

IAudienceAnimeMethods

Trait IAudienceAnimeMethods 

Source
pub trait IAudienceAnimeMethods: IAudienceAnime {
    // Provided methods
    fn ctor(
        self,
        material: impl Into<Material>,
        pattern: impl Into<i32>,
        speed: impl Into<f32>,
    ) { ... }
    fn get_material(self) -> Material { ... }
    fn update(self) { ... }
}

Provided Methods§

Source

fn ctor( self, material: impl Into<Material>, pattern: impl Into<i32>, speed: impl Into<f32>, )

.ctor(crate::unity_engine::material::Material, i32, f32) overload

Source

fn get_material(self) -> Material

GetMaterial() overload

Source

fn update(self)

Update() 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: IAudienceAnime> IAudienceAnimeMethods for __T

Available on crate feature root-audienceanime only.