Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_lightprobe_types.h
| Show First 20 Lines • Show All 60 Lines • ▼ Show 20 Lines | typedef struct LightProbe { | ||||
| int grid_resolution_x; /* Irradiance grid resolution */ | int grid_resolution_x; /* Irradiance grid resolution */ | ||||
| int grid_resolution_y; | int grid_resolution_y; | ||||
| int grid_resolution_z; | int grid_resolution_z; | ||||
| int pad1; | int pad1; | ||||
| struct Object *parallax_ob; /* Object to use as a parallax origin */ | struct Object *parallax_ob; /* Object to use as a parallax origin */ | ||||
| struct Image *image; /* Image to use on as lighting data */ | struct Image *image; /* Image to use on as lighting data */ | ||||
| struct Group *visibility_grp; /* Object visibility group, inclusive or exclusive */ | struct Collection *visibility_grp; /* Object visibility group, inclusive or exclusive */ | ||||
| float data_draw_size; | float data_draw_size; | ||||
| /* Runtime display data */ | /* Runtime display data */ | ||||
| float distfalloff, distgridinf; | float distfalloff, distgridinf; | ||||
| float pad; | float pad; | ||||
| } LightProbe; | } LightProbe; | ||||
| Show All 36 Lines | |||||