FMX.Types3D.TLightType

From RAD Studio API Documentation
Jump to: navigation, search

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

Directional

Specifies a directional lighting mode.

Point

Specifies a point-type lighting mode.

Spot

Specifies a spot-type lighting mode.

See Also