Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_lightprobe_types.h
| Show First 20 Lines • Show All 58 Lines • ▼ Show 20 Lines | typedef struct LightProbe { | ||||
| struct Object *parallax_ob; | struct Object *parallax_ob; | ||||
| /** Image to use on as lighting data. */ | /** Image to use on as lighting data. */ | ||||
| struct Image *image; | struct Image *image; | ||||
| /** Object visibility group, inclusive or exclusive. */ | /** Object visibility group, inclusive or exclusive. */ | ||||
| struct Collection *visibility_grp; | struct Collection *visibility_grp; | ||||
| /* Runtime display data */ | /* Runtime display data */ | ||||
| float distfalloff, distgridinf; | float distfalloff, distgridinf; | ||||
| char _pad[8]; | |||||
| } LightProbe; | } LightProbe; | ||||
| /* Probe->type */ | /* Probe->type */ | ||||
| enum { | enum { | ||||
| LIGHTPROBE_TYPE_CUBE = 0, | LIGHTPROBE_TYPE_CUBE = 0, | ||||
| LIGHTPROBE_TYPE_PLANAR = 1, | LIGHTPROBE_TYPE_PLANAR = 1, | ||||
| LIGHTPROBE_TYPE_GRID = 2, | LIGHTPROBE_TYPE_GRID = 2, | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 132 Lines • Show Last 20 Lines | |||||