Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_space_types.h
| Show First 20 Lines • Show All 232 Lines • ▼ Show 20 Lines | typedef enum eSpaceButtons_Flag { | ||||
| /** Do not add materials, particles, etc. in TemplateTextureUser list. */ | /** Do not add materials, particles, etc. in TemplateTextureUser list. */ | ||||
| SB_TEX_USER_LIMITED = (1 << 3), | SB_TEX_USER_LIMITED = (1 << 3), | ||||
| SB_SHADING_CONTEXT = (1 << 4), | SB_SHADING_CONTEXT = (1 << 4), | ||||
| } eSpaceButtons_Flag; | } eSpaceButtons_Flag; | ||||
| /* SpaceProperties.outliner_sync */ | /* SpaceProperties.outliner_sync */ | ||||
| typedef enum eSpaceButtons_OutlinerSync { | typedef enum eSpaceButtons_OutlinerSync { | ||||
| PROPERTIES_SYNC_AUTO = 0, | PROPERTIES_SYNC_AUTO = 0, | ||||
| PROPERTIES_SYNC_OFF = 1, | PROPERTIES_SYNC_NEVER = 1, | ||||
| PROPERTIES_SYNC_ON = 2, | PROPERTIES_SYNC_ALWAYS = 2, | ||||
| } eSpaceButtons_OutlinerSync; | } eSpaceButtons_OutlinerSync; | ||||
| /** \} */ | /** \} */ | ||||
| /* -------------------------------------------------------------------- */ | /* -------------------------------------------------------------------- */ | ||||
| /** \name Outliner | /** \name Outliner | ||||
| * \{ */ | * \{ */ | ||||
| ▲ Show 20 Lines • Show All 1,641 Lines • Show Last 20 Lines | |||||