pub trait ICustomEnvSetManagerMethods: ICustomEnvSetManager {
// Provided methods
fn register(self, set: impl Into<CustomEnvSet>) { ... }
fn unregister(self, set: impl Into<CustomEnvSet>) { ... }
fn try_get_reflection_probe(
self,
index: impl Into<i32>,
) -> (bool, ReflectionProbe) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn register(self, set: impl Into<CustomEnvSet>)
fn register(self, set: impl Into<CustomEnvSet>)
Register(crate::unity_engine::rendering::universal::custom::customenvset::CustomEnvSet) overload
Sourcefn unregister(self, set: impl Into<CustomEnvSet>)
fn unregister(self, set: impl Into<CustomEnvSet>)
Unregister(crate::unity_engine::rendering::universal::custom::customenvset::CustomEnvSet) overload
Sourcefn try_get_reflection_probe(
self,
index: impl Into<i32>,
) -> (bool, ReflectionProbe)
fn try_get_reflection_probe( self, index: impl Into<i32>, ) -> (bool, ReflectionProbe)
TryGetReflectionProbe(i32, *mutcrate::unity_engine::reflectionprobe::ReflectionProbe) 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: ICustomEnvSetManager> ICustomEnvSetManagerMethods for __T
Available on crate feature
unity_engine-rendering-universal-custom-customenvsetmanager only.