pub trait ILightProbeGenerator_LightProbeArea: IObject {
// Provided methods
fn probe_volume(self) -> Bounds { ... }
fn set_probe_volume(self, value: Bounds) { ... }
fn subdivisions(self) -> Vector3 { ... }
fn set_subdivisions(self, value: Vector3) { ... }
fn random_count(self) -> i32 { ... }
fn set_random_count(self, value: i32) { ... }
}Provided Methods§
fn probe_volume(self) -> Bounds
fn set_probe_volume(self, value: Bounds)
fn subdivisions(self) -> Vector3
fn set_subdivisions(self, value: Vector3)
fn random_count(self) -> i32
fn set_random_count(self, value: i32)
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.