Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_node_types.h
| Show First 20 Lines • Show All 839 Lines • ▼ Show 20 Lines | |||||
| typedef struct NodeTexSky { | typedef struct NodeTexSky { | ||||
| NodeTexBase base; | NodeTexBase base; | ||||
| int sky_model; | int sky_model; | ||||
| float sun_direction[3]; | float sun_direction[3]; | ||||
| float turbidity; | float turbidity; | ||||
| float ground_albedo; | float ground_albedo; | ||||
| float sun_size; | float sun_size; | ||||
| float sun_intensity; | |||||
| float sun_elevation; | float sun_elevation; | ||||
| float sun_rotation; | float sun_rotation; | ||||
| int altitude; | float altitude; | ||||
| float air_density; | float air_density; | ||||
| float dust_density; | float dust_density; | ||||
| float ozone_density; | float ozone_density; | ||||
| char sun_disc; | char sun_disc; | ||||
| char _pad[3]; | char _pad[7]; | ||||
| } NodeTexSky; | } NodeTexSky; | ||||
| typedef struct NodeTexImage { | typedef struct NodeTexImage { | ||||
| NodeTexBase base; | NodeTexBase base; | ||||
| ImageUser iuser; | ImageUser iuser; | ||||
| int color_space DNA_DEPRECATED; | int color_space DNA_DEPRECATED; | ||||
| int projection; | int projection; | ||||
| float projection_blend; | float projection_blend; | ||||
| ▲ Show 20 Lines • Show All 579 Lines • Show Last 20 Lines | |||||