Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_fcurve.c
| Context not available. | |||||
| prop = RNA_def_property(srna, "mute", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "mute", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", FMODIFIER_FLAG_MUTED); | RNA_def_property_boolean_sdna(prop, NULL, "flag", FMODIFIER_FLAG_MUTED); | ||||
| RNA_def_property_ui_text(prop, "Muted", "F-Curve Modifier will not be evaluated"); | RNA_def_property_ui_text(prop, "Enabled", "F-Curve Modifier will be evaluated"); | ||||
| RNA_def_property_update(prop, NC_ANIMATION | ND_KEYFRAME_PROP, "rna_FModifier_update"); | RNA_def_property_update(prop, NC_ANIMATION | ND_KEYFRAME_PROP, "rna_FModifier_update"); | ||||
| RNA_def_property_ui_icon(prop, ICON_CHECKBOX_DEHLT, 1); | RNA_def_property_ui_icon(prop, ICON_CHECKBOX_HLT, -1); | ||||
| prop = RNA_def_property(srna, "is_valid", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "is_valid", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_clear_flag(prop, PROP_EDITABLE); | RNA_def_property_clear_flag(prop, PROP_EDITABLE); | ||||
| Context not available. | |||||