Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_outliner/outliner_draw.c
| Show First 20 Lines • Show All 1,169 Lines • ▼ Show 20 Lines | switch (tselem->type) { | ||||
| case eModifierType_Wireframe: | case eModifierType_Wireframe: | ||||
| UI_icon_draw(x, y, ICON_MOD_WIREFRAME); break; | UI_icon_draw(x, y, ICON_MOD_WIREFRAME); break; | ||||
| case eModifierType_LaplacianDeform: | case eModifierType_LaplacianDeform: | ||||
| UI_icon_draw(x, y, ICON_MOD_MESHDEFORM); break; /* XXX, needs own icon */ | UI_icon_draw(x, y, ICON_MOD_MESHDEFORM); break; /* XXX, needs own icon */ | ||||
| case eModifierType_DataTransfer: | case eModifierType_DataTransfer: | ||||
| UI_icon_draw(x, y, ICON_MOD_DATA_TRANSFER); break; | UI_icon_draw(x, y, ICON_MOD_DATA_TRANSFER); break; | ||||
| case eModifierType_NormalEdit: | case eModifierType_NormalEdit: | ||||
| UI_icon_draw(x, y, ICON_MOD_NORMALEDIT); break; | UI_icon_draw(x, y, ICON_MOD_NORMALEDIT); break; | ||||
| case eModifierType_VertexColorEdit: | |||||
| UI_icon_draw(x, y, ICON_GROUP_VCOL); break; | |||||
| /* Default */ | /* Default */ | ||||
| case eModifierType_None: | case eModifierType_None: | ||||
| case eModifierType_ShapeKey: | case eModifierType_ShapeKey: | ||||
| case NUM_MODIFIER_TYPES: | case NUM_MODIFIER_TYPES: | ||||
| UI_icon_draw(x, y, ICON_DOT); break; | UI_icon_draw(x, y, ICON_DOT); break; | ||||
| } | } | ||||
| break; | break; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 711 Lines • Show Last 20 Lines | |||||