IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

SpotLight QML Type

Encapsulate a Spot Light object in a Qt 3D scene.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

SpotLight QML Type▲

  • Import Statement: import Qt3D.Render 2.7

  • Instantiates:: QSpotLight

Detailed Description▲

A spotlight is a light source that emits a cone of light in a particular direction.

A spotlight uses three attenuation factors to describe how the intensity of the light decreases over distance. These factors are designed to be used together in calcuating total attenuation. For the materials in Qt3D Extras the following formula is used, where distance is the distance from the light to the surface being rendered:

 
Sélectionnez
totalAttenuation = 1.0 / (constantAttenuation + (linearAttenuation * distance) + (quadraticAttenuation * distance * distance));

Custom materials may choose to interpret these factors differently.

Property Documentation▲

 

constantAttenuation : float▲

Specifies the constant attenuation of the spot light.

The exact meaning and use of this property is up to the material implementation.

cutOffAngle : float▲

Specifies the cut off angle of the spot light.

The exact meaning and use of this property is up to the material implementation.

linearAttenuation : float▲

Specifies the linear attenuation of the spot light.

The exact meaning and use of this property is up to the material implementation.

localDirection : vector3d▲

Specifies the local direction of the spot light.

The exact meaning and use of this property is up to the material implementation.

quadraticAttenuation : float▲

Specifies the quadratic attenuation of the spot light.

The exact meaning and use of this property is up to the material implementation.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+