Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_cast.c
| Show First 20 Lines • Show All 553 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| static void panelRegister(ARegionType *region_type) | static void panelRegister(ARegionType *region_type) | ||||
| { | { | ||||
| modifier_panel_register(region_type, eModifierType_Cast, panel_draw); | modifier_panel_register(region_type, eModifierType_Cast, panel_draw); | ||||
| } | } | ||||
| ModifierTypeInfo modifierType_Cast = { | ModifierTypeInfo modifierType_Cast = { | ||||
| /* name */ "Cast", | /* name */ N_("Cast"), | ||||
| /* structName */ "CastModifierData", | /* structName */ "CastModifierData", | ||||
| /* structSize */ sizeof(CastModifierData), | /* structSize */ sizeof(CastModifierData), | ||||
| /* srna */ &RNA_CastModifier, | /* srna */ &RNA_CastModifier, | ||||
| /* type */ eModifierTypeType_OnlyDeform, | /* type */ eModifierTypeType_OnlyDeform, | ||||
| /* flags */ eModifierTypeFlag_AcceptsCVs | eModifierTypeFlag_AcceptsVertexCosOnly | | /* flags */ eModifierTypeFlag_AcceptsCVs | eModifierTypeFlag_AcceptsVertexCosOnly | | ||||
| eModifierTypeFlag_SupportsEditmode, | eModifierTypeFlag_SupportsEditmode, | ||||
| /* icon */ ICON_MOD_CAST, | /* icon */ ICON_MOD_CAST, | ||||
| Show All 23 Lines | |||||