Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_view3d_types.h
| Show First 20 Lines • Show All 146 Lines • ▼ Show 20 Lines | typedef struct View3DShading { | ||||
| char color_type; | char color_type; | ||||
| short flag; | short flag; | ||||
| char light; | char light; | ||||
| char background_type; | char background_type; | ||||
| char cavity_type; | char cavity_type; | ||||
| char wire_color_type; | char wire_color_type; | ||||
| char _pad[6]; | char _pad[2]; | ||||
| /** FILE_MAXFILE. */ | /** FILE_MAXFILE. */ | ||||
| char studio_light[256]; | char studio_light[256]; | ||||
| /** FILE_MAXFILE. */ | /** FILE_MAXFILE. */ | ||||
| char lookdev_light[256]; | char lookdev_light[256]; | ||||
| /** FILE_MAXFILE. */ | /** FILE_MAXFILE. */ | ||||
| char matcap[256]; | char matcap[256]; | ||||
| float shadow_intensity; | float shadow_intensity; | ||||
| float single_color[3]; | float single_color[3]; | ||||
| float studiolight_rot_z; | float studiolight_rot_z; | ||||
| float studiolight_background; | float studiolight_background; | ||||
| float studiolight_intensity; | |||||
| float object_outline_color[3]; | float object_outline_color[3]; | ||||
| float xray_alpha; | float xray_alpha; | ||||
| float xray_alpha_wire; | float xray_alpha_wire; | ||||
| float cavity_valley_factor; | float cavity_valley_factor; | ||||
| float cavity_ridge_factor; | float cavity_ridge_factor; | ||||
| float background_color[3]; | float background_color[3]; | ||||
| float curvature_ridge_factor; | float curvature_ridge_factor; | ||||
| float curvature_valley_factor; | float curvature_valley_factor; | ||||
| } View3DShading; | } View3DShading; | ||||
| /** 3D Viewport Overlay settings. */ | /** 3D Viewport Overlay settings. */ | ||||
| typedef struct View3DOverlay { | typedef struct View3DOverlay { | ||||
| int flag; | int flag; | ||||
| /** Edit mode settings. */ | /** Edit mode settings. */ | ||||
| int edit_flag; | int edit_flag; | ||||
| ▲ Show 20 Lines • Show All 410 Lines • Show Last 20 Lines | |||||