pub trait ISupportedRenderingFeaturesMethods: ISupportedRenderingFeatures {
// Provided methods
fn get_default_mixed_lighting_modes(
self,
) -> SupportedRenderingFeatures_LightmapMixedBakeModes { ... }
fn get_mixed_lighting_modes(
self,
) -> SupportedRenderingFeatures_LightmapMixedBakeModes { ... }
fn get_lightmap_bake_types(self) -> LightmapBakeType { ... }
fn get_lightmaps_modes(self) -> LightmapsMode { ... }
fn get_enlighten(self) -> bool { ... }
fn get_renders_ui_overlay(self) -> bool { ... }
fn get_auto_ambient_probe_baking(self) -> bool { ... }
fn get_auto_default_reflection_probe_baking(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_default_mixed_lighting_modes(
self,
) -> SupportedRenderingFeatures_LightmapMixedBakeModes
fn get_default_mixed_lighting_modes( self, ) -> SupportedRenderingFeatures_LightmapMixedBakeModes
get_defaultMixedLightingModes() overload
Sourcefn get_mixed_lighting_modes(
self,
) -> SupportedRenderingFeatures_LightmapMixedBakeModes
fn get_mixed_lighting_modes( self, ) -> SupportedRenderingFeatures_LightmapMixedBakeModes
get_mixedLightingModes() overload
Sourcefn get_lightmap_bake_types(self) -> LightmapBakeType
fn get_lightmap_bake_types(self) -> LightmapBakeType
get_lightmapBakeTypes() overload
Sourcefn get_lightmaps_modes(self) -> LightmapsMode
fn get_lightmaps_modes(self) -> LightmapsMode
get_lightmapsModes() overload
Sourcefn get_enlighten(self) -> bool
fn get_enlighten(self) -> bool
get_enlighten() overload
Sourcefn get_renders_ui_overlay(self) -> bool
fn get_renders_ui_overlay(self) -> bool
get_rendersUIOverlay() overload
Sourcefn get_auto_ambient_probe_baking(self) -> bool
fn get_auto_ambient_probe_baking(self) -> bool
get_autoAmbientProbeBaking() overload
Sourcefn get_auto_default_reflection_probe_baking(self) -> bool
fn get_auto_default_reflection_probe_baking(self) -> bool
get_autoDefaultReflectionProbeBaking() 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: ISupportedRenderingFeatures> ISupportedRenderingFeaturesMethods for __T
Available on crate feature
unity_engine-rendering-supportedrenderingfeatures only.