SpotLight.QuadraticAttenuation Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The quadratic portion of the attenuation equation that determines how the light falls off with distance. Animatable.
public:
property float QuadraticAttenuation { float get(); void set(float value); };
float QuadraticAttenuation();
void QuadraticAttenuation(float value);
public float QuadraticAttenuation { get; set; }
var single = spotLight.quadraticAttenuation;
spotLight.quadraticAttenuation = single;
Public Property QuadraticAttenuation As Single
Property Value
float
The quadratic coefficient in the light's attenuation equation. Controls light intensity falloff based on distance squared. Range is from 0 to infinity.
Examples
_spotLight.QuadraticAttenuation = .0007F;
Remarks
The SpotLight.QuadraticAttenuation property is part of the attenuation equation which also includes SpotLight.LinearAttenuation and SpotLight.ConstantAttenuation: