Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/gpencil/gpencil_interpolate.c
| Show First 20 Lines • Show All 1,565 Lines • ▼ Show 20 Lines | static const EnumPropertyItem flip_modes[] = { | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| PropertyRNA *prop; | PropertyRNA *prop; | ||||
| /* identifiers */ | /* identifiers */ | ||||
| ot->name = "Interpolate Sequence"; | ot->name = "Interpolate Sequence"; | ||||
| ot->idname = "GPENCIL_OT_interpolate_sequence"; | ot->idname = "GPENCIL_OT_interpolate_sequence"; | ||||
| ot->translation_context = BLT_I18NCONTEXT_ID_GPENCIL; | |||||
| ot->description = "Generate 'in-betweens' to smoothly interpolate between Grease Pencil frames"; | ot->description = "Generate 'in-betweens' to smoothly interpolate between Grease Pencil frames"; | ||||
| /* api callbacks */ | /* api callbacks */ | ||||
| ot->exec = gpencil_interpolate_seq_exec; | ot->exec = gpencil_interpolate_seq_exec; | ||||
| ot->poll = gpencil_view3d_poll; | ot->poll = gpencil_view3d_poll; | ||||
| ot->ui = gpencil_interpolate_seq_ui; | ot->ui = gpencil_interpolate_seq_ui; | ||||
| RNA_def_int(ot->srna, | RNA_def_int(ot->srna, | ||||
| ▲ Show 20 Lines • Show All 226 Lines • Show Last 20 Lines | |||||