Encapsulate a Point Light object in a Qt 3D scene. More...
Import Statement: | import Qt3D.Render |
Since: | Qt 5.5 |
Instantiates: | QPointLight |
A point light is a light source that emits light in all directions, from a single point. Conceptually, this is similar to light given off by a standard light bulb.
A point light 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:
totalAttenuation = 1.0 / (constantAttenuation + (linearAttenuation * distance) + (quadraticAttenuation * distance * distance));
Custom materials may choose to interpret these factors differently.
constantAttenuation : float
Specifies the constant attenuation of the point light.
Note: The exact meaning and use of this property is up to the material implementation.
linearAttenuation : float
Specifies the linear attenuation of the point light.
Note: The exact meaning and use of this property is up to the material implementation.
quadraticAttenuation : float
Specifies the quadratic attenuation of the point light.
Note: The exact meaning and use of this property is up to the material implementation.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qml-qt3d-render-pointlight.html