Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_meshdata_types.h
| Show First 20 Lines • Show All 265 Lines • ▼ Show 20 Lines | typedef struct MFloatProperty { | ||||
| float f; | float f; | ||||
| } MFloatProperty; | } MFloatProperty; | ||||
| typedef struct MIntProperty { | typedef struct MIntProperty { | ||||
| int i; | int i; | ||||
| } MIntProperty; | } MIntProperty; | ||||
| typedef struct MStringProperty { | typedef struct MStringProperty { | ||||
| char s[255], s_len; | char s[255], s_len; | ||||
| } MStringProperty; | } MStringProperty; | ||||
| typedef struct MBoolProperty { | |||||
| uint8_t b; | |||||
| } MBoolProperty; | |||||
| /** \} */ | /** \} */ | ||||
| /* -------------------------------------------------------------------- */ | /* -------------------------------------------------------------------- */ | ||||
| /** \name Custom Data (Vertex) | /** \name Custom Data (Vertex) | ||||
| * \{ */ | * \{ */ | ||||
| /** | /** | ||||
| ▲ Show 20 Lines • Show All 246 Lines • Show Last 20 Lines | |||||