Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_uvproject.c
| Show First 20 Lines • Show All 343 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| static void panelRegister(ARegionType *region_type) | static void panelRegister(ARegionType *region_type) | ||||
| { | { | ||||
| modifier_panel_register(region_type, eModifierType_UVProject, panel_draw); | modifier_panel_register(region_type, eModifierType_UVProject, panel_draw); | ||||
| } | } | ||||
| ModifierTypeInfo modifierType_UVProject = { | ModifierTypeInfo modifierType_UVProject = { | ||||
| /* name */ "UVProject", | /* name */ N_("UVProject"), | ||||
| /* structName */ "UVProjectModifierData", | /* structName */ "UVProjectModifierData", | ||||
| /* structSize */ sizeof(UVProjectModifierData), | /* structSize */ sizeof(UVProjectModifierData), | ||||
| /* srna */ &RNA_UVProjectModifier, | /* srna */ &RNA_UVProjectModifier, | ||||
| /* type */ eModifierTypeType_NonGeometrical, | /* type */ eModifierTypeType_NonGeometrical, | ||||
| /* flags */ eModifierTypeFlag_AcceptsMesh | eModifierTypeFlag_SupportsMapping | | /* flags */ eModifierTypeFlag_AcceptsMesh | eModifierTypeFlag_SupportsMapping | | ||||
| eModifierTypeFlag_SupportsEditmode | eModifierTypeFlag_EnableInEditmode, | eModifierTypeFlag_SupportsEditmode | eModifierTypeFlag_EnableInEditmode, | ||||
| /* icon */ ICON_MOD_UVPROJECT, | /* icon */ ICON_MOD_UVPROJECT, | ||||
| Show All 23 Lines | |||||