Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_sequencer.c
| Show First 20 Lines • Show All 2,461 Lines • ▼ Show 20 Lines | static void rna_def_multicam(StructRNA *srna) | ||||
| rna_def_input(srna); | rna_def_input(srna); | ||||
| } | } | ||||
| static void rna_def_wipe(StructRNA *srna) | static void rna_def_wipe(StructRNA *srna) | ||||
| { | { | ||||
| PropertyRNA *prop; | PropertyRNA *prop; | ||||
| static const EnumPropertyItem wipe_type_items[] = { | static const EnumPropertyItem wipe_type_items[] = { | ||||
| {0, "SINGLE", 0, "Single", ""}, | {DO_SINGLE_WIPE, "SINGLE", 0, "Single", ""}, | ||||
| {1, "DOUBLE", 0, "Double", ""}, | {DO_DOUBLE_WIPE, "DOUBLE", 0, "Double", ""}, | ||||
| /* not used yet {2, "BOX", 0, "Box", ""}, */ | /* not used yet {DO_BOX_WIPE, "BOX", 0, "Box", ""}, */ | ||||
| /* not used yet {3, "CROSS", 0, "Cross", ""}, */ | /* not used yet {DO_CROSS_WIPE, "CROSS", 0, "Cross", ""}, */ | ||||
| {4, "IRIS", 0, "Iris", ""}, | {DO_IRIS_WIPE, "IRIS", 0, "Iris", ""}, | ||||
| {5, "CLOCK", 0, "Clock", ""}, | {DO_CLOCK_WIPE, "CLOCK", 0, "Clock", ""}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| static const EnumPropertyItem wipe_direction_items[] = { | static const EnumPropertyItem wipe_direction_items[] = { | ||||
| {0, "OUT", 0, "Out", ""}, | {0, "OUT", 0, "Out", ""}, | ||||
| {1, "IN", 0, "In", ""}, | {1, "IN", 0, "In", ""}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 705 Lines • Show Last 20 Lines | |||||