Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_sequencer.c
| Show First 20 Lines • Show All 2,633 Lines • ▼ Show 20 Lines | |||||
| { | { | ||||
| PropertyRNA *prop; | PropertyRNA *prop; | ||||
| RNA_def_struct_sdna_from(srna, "SolidColorVars", "effectdata"); | RNA_def_struct_sdna_from(srna, "SolidColorVars", "effectdata"); | ||||
| prop = RNA_def_property(srna, "color", PROP_FLOAT, PROP_COLOR_GAMMA); | prop = RNA_def_property(srna, "color", PROP_FLOAT, PROP_COLOR_GAMMA); | ||||
| RNA_def_property_float_sdna(prop, NULL, "col"); | RNA_def_property_float_sdna(prop, NULL, "col"); | ||||
| RNA_def_property_ui_text(prop, "Color", "Effect Strip color"); | RNA_def_property_ui_text(prop, "Color", "Effect Strip color"); | ||||
| RNA_def_property_update( | RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_raw_update"); | ||||
| prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_preprocessed_update"); | |||||
| } | } | ||||
| static void rna_def_speed_control(StructRNA *srna) | static void rna_def_speed_control(StructRNA *srna) | ||||
| { | { | ||||
| PropertyRNA *prop; | PropertyRNA *prop; | ||||
| RNA_def_struct_sdna_from(srna, "SpeedControlVars", "effectdata"); | RNA_def_struct_sdna_from(srna, "SpeedControlVars", "effectdata"); | ||||
| ▲ Show 20 Lines • Show All 525 Lines • Show Last 20 Lines | |||||