pub trait ILightProbeGeneratorMethods: ILightProbeGenerator {
// Provided methods
fn gen_probes(self) { ... }
fn get_probes_for_volume_grid(
self,
probe_volume: impl Into<Bounds>,
subdivisions: impl Into<Vector3>,
) -> List_1<Vector3> { ... }
fn get_probes_for_volume_random(
self,
probe_volume: impl Into<Bounds>,
count: impl Into<i32>,
) -> List_1<Vector3> { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn gen_probes(self)
fn gen_probes(self)
GenProbes() overload
Sourcefn get_probes_for_volume_grid(
self,
probe_volume: impl Into<Bounds>,
subdivisions: impl Into<Vector3>,
) -> List_1<Vector3>
fn get_probes_for_volume_grid( self, probe_volume: impl Into<Bounds>, subdivisions: impl Into<Vector3>, ) -> List_1<Vector3>
GetProbesForVolume_Grid(crate::unity_engine::bounds::Bounds, crate::unity_engine::vector3::Vector3) overload
Sourcefn get_probes_for_volume_random(
self,
probe_volume: impl Into<Bounds>,
count: impl Into<i32>,
) -> List_1<Vector3>
fn get_probes_for_volume_random( self, probe_volume: impl Into<Bounds>, count: impl Into<i32>, ) -> List_1<Vector3>
GetProbesForVolume_Random(crate::unity_engine::bounds::Bounds, i32) 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: ILightProbeGenerator> ILightProbeGeneratorMethods for __T
Available on crate feature
root-lightprobegenerator only.