FMX.Types3D.TLightType
Delphi
TLightType = (Directional, Point, Spot);
C++
enum class DECLSPEC_DENUM TLightType : unsigned char { Directional, Point, Spot, ltDirectional _DEPRECATED_ATTRIBUTE3("Use TLightType.Directional")  = 0x0, ltPoint _DEPRECATED_ATTRIBUTE3("Use TLightType.Point")  = 0x1, ltSpot _DEPRECATED_ATTRIBUTE3("Use TLightType.Spot")  = 0x2 };
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| enum | public | FMX.Types3D.pas FMX.Types3D.hpp | FMX.Types3D | FMX.Types3D | 
Description
Enumeration of lighting modes.
The following table lists the meanings of the elements in TLightType:
| Value | Meaning | 
|---|---|
| 
 | Specifies a directional lighting mode. | 
| 
 | Specifies a point-type lighting mode. | 
| 
 | Specifies a spot-type lighting mode. |