Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_mask.cc
| Show First 20 Lines • Show All 798 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| static void panelRegister(ARegionType *region_type) | static void panelRegister(ARegionType *region_type) | ||||
| { | { | ||||
| modifier_panel_register(region_type, eModifierType_Mask, panel_draw); | modifier_panel_register(region_type, eModifierType_Mask, panel_draw); | ||||
| } | } | ||||
| ModifierTypeInfo modifierType_Mask = { | ModifierTypeInfo modifierType_Mask = { | ||||
| /* name */ "Mask", | /* name */ N_("Mask"), | ||||
| /* structName */ "MaskModifierData", | /* structName */ "MaskModifierData", | ||||
| /* structSize */ sizeof(MaskModifierData), | /* structSize */ sizeof(MaskModifierData), | ||||
| /* srna */ &RNA_MaskModifier, | /* srna */ &RNA_MaskModifier, | ||||
| /* type */ eModifierTypeType_Nonconstructive, | /* type */ eModifierTypeType_Nonconstructive, | ||||
| /* flags */ | /* flags */ | ||||
| (ModifierTypeFlag)(eModifierTypeFlag_AcceptsMesh | eModifierTypeFlag_SupportsMapping | | (ModifierTypeFlag)(eModifierTypeFlag_AcceptsMesh | eModifierTypeFlag_SupportsMapping | | ||||
| eModifierTypeFlag_SupportsEditmode), | eModifierTypeFlag_SupportsEditmode), | ||||
| /* icon */ ICON_MOD_MASK, | /* icon */ ICON_MOD_MASK, | ||||
| Show All 24 Lines | |||||