Share

GlobalIlluminationMode

C++

enum GlobalIlluminationMode {
  kGlobalIlluminationNone,
  kGlobalIlluminationCast,
  kGlobalIlluminationReceive,
  kGlobalIlluminationCastAndReceive
};

File

acgimaterial.h

Members

Members Description
kGlobalIlluminationNone Indicates there is no global illumination
kGlobalIlluminationCast Indicates that the global illumination is casting light
kGlobalIlluminationReceive Indicates that the global illumination is receiving light
kGlobalIlluminationCastAndReceive Indicates that the global illumination is casting and receiving light

Description

Describes the global illumination.

Was this information helpful?