Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/gpencil/gpencil_ops.c
| Show First 20 Lines • Show All 679 Lines • ▼ Show 20 Lines | #endif | ||||
| WM_operatortype_append(GPENCIL_OT_primitive_circle); | WM_operatortype_append(GPENCIL_OT_primitive_circle); | ||||
| WM_operatortype_append(GPENCIL_OT_primitive_curve); | WM_operatortype_append(GPENCIL_OT_primitive_curve); | ||||
| /* convert old 2.7 files to 2.8 */ | /* convert old 2.7 files to 2.8 */ | ||||
| WM_operatortype_append(GPENCIL_OT_convert_old_files); | WM_operatortype_append(GPENCIL_OT_convert_old_files); | ||||
| /* armatures */ | /* armatures */ | ||||
| WM_operatortype_append(GPENCIL_OT_generate_weights); | WM_operatortype_append(GPENCIL_OT_generate_weights); | ||||
| /* Assets. */ | |||||
| WM_operatortype_append(GPENCIL_OT_asset_create); | |||||
| WM_operatortype_append(GPENCIL_OT_asset_import); | |||||
| } | } | ||||
| void ED_operatormacros_gpencil(void) | void ED_operatormacros_gpencil(void) | ||||
| { | { | ||||
| wmOperatorType *ot; | wmOperatorType *ot; | ||||
| wmOperatorTypeMacro *otmacro; | wmOperatorTypeMacro *otmacro; | ||||
| /* Duplicate + Move = Interactively place newly duplicated strokes */ | /* Duplicate + Move = Interactively place newly duplicated strokes */ | ||||
| Show All 24 Lines | |||||