Skip to main content

IMapObject_DitherManagerMethods

Trait IMapObject_DitherManagerMethods 

Source
pub trait IMapObject_DitherManagerMethods: IMapObject_DitherManager {
    // Provided methods
    fn setup(self, root: impl Into<GameObject>) { ... }
    fn commit_alpha(self) { ... }
    fn set_alpha(self, alpha: impl Into<f32>) { ... }
    fn get_alpha(self) -> f32 { ... }
    fn set_render_alpha(
        self,
        render: impl Into<Renderer>,
        alpha: impl Into<f32>,
    ) { ... }
    fn set_renders_alpha(
        self,
        renders: impl Into<Array<Renderer>>,
        alpha: impl Into<f32>,
    ) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn setup(self, root: impl Into<GameObject>)

Setup(crate::unity_engine::gameobject::GameObject) overload

Source

fn commit_alpha(self)

CommitAlpha() overload

Source

fn set_alpha(self, alpha: impl Into<f32>)

SetAlpha(f32) overload

Source

fn get_alpha(self) -> f32

GetAlpha() overload

Source

fn set_render_alpha(self, render: impl Into<Renderer>, alpha: impl Into<f32>)

SetRenderAlpha(crate::unity_engine::renderer::Renderer, f32) overload

Source

fn set_renders_alpha( self, renders: impl Into<Array<Renderer>>, alpha: impl Into<f32>, )

SetRendersAlpha(::unity::Array<crate::unity_engine::renderer::Renderer>, f32) 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: IMapObject_DitherManager> IMapObject_DitherManagerMethods for __T

Available on crate feature app-mapobject only.