Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_scene_types.h
| Show First 20 Lines • Show All 1,291 Lines • ▼ Show 20 Lines | typedef enum eGP_Interpolate_Type { | ||||
| GP_IPO_ELASTIC = 7, | GP_IPO_ELASTIC = 7, | ||||
| GP_IPO_EXPO = 8, | GP_IPO_EXPO = 8, | ||||
| GP_IPO_QUAD = 9, | GP_IPO_QUAD = 9, | ||||
| GP_IPO_QUART = 10, | GP_IPO_QUART = 10, | ||||
| GP_IPO_QUINT = 11, | GP_IPO_QUINT = 11, | ||||
| GP_IPO_SINE = 12, | GP_IPO_SINE = 12, | ||||
| } eGP_Interpolate_Type; | } eGP_Interpolate_Type; | ||||
| /* *************************************************************** */ | |||||
| /* Transform Orientations */ | |||||
| typedef struct TransformOrientation { | |||||
| struct TransformOrientation *next, *prev; | |||||
| char name[64]; /* MAX_NAME */ | |||||
| float mat[3][3]; | |||||
| int pad; | |||||
| } TransformOrientation; | |||||
| /* *************************************************************** */ | /* *************************************************************** */ | ||||
| /* Unified Paint Settings | /* Unified Paint Settings | ||||
| */ | */ | ||||
| /* These settings can override the equivalent fields in the active | /* These settings can override the equivalent fields in the active | ||||
| * Brush for any paint mode; the flag field controls whether these | * Brush for any paint mode; the flag field controls whether these | ||||
| * values are used */ | * values are used */ | ||||
| typedef struct UnifiedPaintSettings { | typedef struct UnifiedPaintSettings { | ||||
| ▲ Show 20 Lines • Show All 372 Lines • ▼ Show 20 Lines | typedef struct Scene { | ||||
| struct ToolSettings *toolsettings; /* default allocated now */ | struct ToolSettings *toolsettings; /* default allocated now */ | ||||
| void *pad2; | void *pad2; | ||||
| struct DisplaySafeAreas safe_areas; | struct DisplaySafeAreas safe_areas; | ||||
| /* migrate or replace? depends on some internal things... */ | /* migrate or replace? depends on some internal things... */ | ||||
| /* no, is on the right place (ton) */ | /* no, is on the right place (ton) */ | ||||
| struct RenderData r; | struct RenderData r; | ||||
| struct AudioData audio; | struct AudioData audio; | ||||
| ListBase markers; | ListBase markers; | ||||
| ListBase transform_spaces; | ListBase transform_spaces DNA_DEPRECATED; | ||||
| void *sound_scene; | void *sound_scene; | ||||
| void *playback_handle; | void *playback_handle; | ||||
| void *sound_scrub_handle; | void *sound_scrub_handle; | ||||
| void *speaker_handles; | void *speaker_handles; | ||||
| void *fps_info; /* (runtime) info/cache used for presenting playback framerate info to the user */ | void *fps_info; /* (runtime) info/cache used for presenting playback framerate info to the user */ | ||||
| /* none of the dependency graph vars is mean to be saved */ | /* none of the dependency graph vars is mean to be saved */ | ||||
| ▲ Show 20 Lines • Show All 648 Lines • Show Last 20 Lines | |||||