Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_modifier_types.h
| Show First 20 Lines • Show All 382 Lines • ▼ Show 20 Lines | typedef struct DisplaceModifierData { | ||||
| int direction; | int direction; | ||||
| char defgrp_name[64]; /* MAX_VGROUP_NAME */ | char defgrp_name[64]; /* MAX_VGROUP_NAME */ | ||||
| float midlevel; | float midlevel; | ||||
| int pad; | int pad; | ||||
| } DisplaceModifierData; | } DisplaceModifierData; | ||||
| /* DisplaceModifierData->direction */ | /* DisplaceModifierData->direction */ | ||||
| enum { | enum { | ||||
| MOD_DISP_DIR_X = 0, | MOD_DISP_DIR_LOCAL_X = 0, | ||||
| MOD_DISP_DIR_Y = 1, | MOD_DISP_DIR_LOCAL_Y = 1, | ||||
| MOD_DISP_DIR_Z = 2, | MOD_DISP_DIR_LOCAL_Z = 2, | ||||
| MOD_DISP_DIR_NOR = 3, | MOD_DISP_DIR_NOR = 3, | ||||
| MOD_DISP_DIR_RGB_XYZ = 4, | MOD_DISP_DIR_RGB_XYZ = 4, | ||||
| MOD_DISP_DIR_CLNOR = 5, | MOD_DISP_DIR_CLNOR = 5, | ||||
| MOD_DISP_DIR_GLOBAL_X = 6, | |||||
| MOD_DISP_DIR_GLOBAL_Y = 7, | |||||
| MOD_DISP_DIR_GLOBAL_Z = 8, | |||||
| }; | }; | ||||
| /* DisplaceModifierData->texmapping */ | /* DisplaceModifierData->texmapping */ | ||||
| enum { | enum { | ||||
| MOD_DISP_MAP_LOCAL = 0, | MOD_DISP_MAP_LOCAL = 0, | ||||
| MOD_DISP_MAP_GLOBAL = 1, | MOD_DISP_MAP_GLOBAL = 1, | ||||
| MOD_DISP_MAP_OBJECT = 2, | MOD_DISP_MAP_OBJECT = 2, | ||||
| MOD_DISP_MAP_UV = 3, | MOD_DISP_MAP_UV = 3, | ||||
| ▲ Show 20 Lines • Show All 1,165 Lines • Show Last 20 Lines | |||||