Enum dae_parser::LightKind [−][src]
pub enum LightKind {
Ambient(AmbientLight),
Directional(DirectionalLight),
Point(Box<PointLight>),
Spot(Box<SpotLight>),
}
Expand description
The kind of light being described.
Variants
Ambient(AmbientLight)
Tuple Fields
0: AmbientLight
Describes an ambient light source.
Directional(DirectionalLight)
Tuple Fields
Describes a directional light source.
Point(Box<PointLight>)
Tuple Fields
0: Box<PointLight>
Describes a point light source.
Spot(Box<SpotLight>)
Describes a spot light source.
Implementations
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for LightKind
impl UnwindSafe for LightKind
Blanket Implementations
Mutably borrows from an owned value. Read more