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§
Sourcefn setup(self, root: impl Into<GameObject>)
fn setup(self, root: impl Into<GameObject>)
Setup(crate::unity_engine::gameobject::GameObject) overload
Sourcefn commit_alpha(self)
fn commit_alpha(self)
CommitAlpha() overload
Sourcefn set_render_alpha(self, render: impl Into<Renderer>, alpha: impl Into<f32>)
fn set_render_alpha(self, render: impl Into<Renderer>, alpha: impl Into<f32>)
SetRenderAlpha(crate::unity_engine::renderer::Renderer, f32) overload
Sourcefn set_renders_alpha(
self,
renders: impl Into<Array<Renderer>>,
alpha: impl Into<f32>,
)
fn set_renders_alpha( self, renders: impl Into<Array<Renderer>>, alpha: impl Into<f32>, )
SetRendersAlpha(::unity::Array<crate::unity_engine::renderer::Renderer>, f32) 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: IMapObject_DitherManager> IMapObject_DitherManagerMethods for __T
Available on crate feature
app-mapobject only.