Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_modifier_types.h
| Show First 20 Lines • Show All 1,043 Lines • ▼ Show 20 Lines | typedef struct ExplodeModifierData { | ||||
| /** MAX_CUSTOMDATA_LAYER_NAME. */ | /** MAX_CUSTOMDATA_LAYER_NAME. */ | ||||
| char uvname[64]; | char uvname[64]; | ||||
| } ExplodeModifierData; | } ExplodeModifierData; | ||||
| typedef struct MultiresModifierData { | typedef struct MultiresModifierData { | ||||
| ModifierData modifier; | ModifierData modifier; | ||||
| char lvl, sculptlvl, renderlvl, totlvl; | char lvl, sculptlvl, renderlvl, totlvl; | ||||
| char simple, flags, _pad[2]; | char simple DNA_DEPRECATED; | ||||
| char flags, _pad[2]; | |||||
| short quality; | short quality; | ||||
| short uv_smooth; | short uv_smooth; | ||||
| short boundary_smooth; | short boundary_smooth; | ||||
| char _pad2[2]; | char _pad2[2]; | ||||
| } MultiresModifierData; | } MultiresModifierData; | ||||
| typedef enum { | typedef enum { | ||||
| eMultiresModifierFlag_ControlEdges = (1 << 0), | eMultiresModifierFlag_ControlEdges = (1 << 0), | ||||
| ▲ Show 20 Lines • Show All 1,253 Lines • Show Last 20 Lines | |||||