Skip to main content

ILightProbeGeneratorMethods

Trait ILightProbeGeneratorMethods 

Source
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§

Source

fn gen_probes(self)

GenProbes() overload

Source

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

Source

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

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: ILightProbeGenerator> ILightProbeGeneratorMethods for __T

Available on crate feature root-lightprobegenerator only.