Changeset View
Changeset View
Standalone View
Standalone View
source/blender/gpencil_modifiers/intern/MOD_gpencilarmature.c
| Show First 20 Lines • Show All 185 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| static void panelRegister(ARegionType *region_type) | static void panelRegister(ARegionType *region_type) | ||||
| { | { | ||||
| gpencil_modifier_panel_register(region_type, eGpencilModifierType_Armature, panel_draw); | gpencil_modifier_panel_register(region_type, eGpencilModifierType_Armature, panel_draw); | ||||
| } | } | ||||
| GpencilModifierTypeInfo modifierType_Gpencil_Armature = { | GpencilModifierTypeInfo modifierType_Gpencil_Armature = { | ||||
| /* name */ "Armature", | /* name */ N_("Armature"), | ||||
| /* structName */ "ArmatureGpencilModifierData", | /* structName */ "ArmatureGpencilModifierData", | ||||
| /* structSize */ sizeof(ArmatureGpencilModifierData), | /* structSize */ sizeof(ArmatureGpencilModifierData), | ||||
| /* type */ eGpencilModifierTypeType_Gpencil, | /* type */ eGpencilModifierTypeType_Gpencil, | ||||
| /* flags */ eGpencilModifierTypeFlag_SupportsEditmode, | /* flags */ eGpencilModifierTypeFlag_SupportsEditmode, | ||||
| /* copyData */ copyData, | /* copyData */ copyData, | ||||
| /* deformStroke */ deformStroke, | /* deformStroke */ deformStroke, | ||||
| Show All 12 Lines | |||||