[Bf-blender-cvs] [bfe3478] master: Use proper defaults for Hue/Saturation node

Sergey Sharybin noreply at git.blender.org
Wed Dec 7 11:27:44 CET 2016


Commit: bfe34789d1301407e91841d61e24c7a8f0691aa5
Author: Sergey Sharybin
Date:   Wed Dec 7 11:27:27 2016 +0100
Branches: master
https://developer.blender.org/rBbfe34789d1301407e91841d61e24c7a8f0691aa5

Use proper defaults for Hue/Saturation node

===================================================================

M	source/blender/makesrna/intern/rna_nodetree.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 34002f8..ada4dec 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -4450,6 +4450,7 @@ static void def_cmp_hue_saturation(StructRNA *srna)
 	prop = RNA_def_property(srna, "color_hue", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_float_sdna(prop, NULL, "hue");
 	RNA_def_property_range(prop, 0.0f, 1.0f);
+	RNA_def_property_float_default(prop, 0.5f);
 	RNA_def_property_ui_text(prop, "Hue", "");
 	RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
 	
@@ -4457,12 +4458,14 @@ static void def_cmp_hue_saturation(StructRNA *srna)
 	RNA_def_property_float_sdna(prop, NULL, "sat");
 	RNA_def_property_range(prop, 0.0f, 2.0f);
 	RNA_def_property_ui_text(prop, "Saturation", "");
+	RNA_def_property_float_default(prop, 1.0f);
 	RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
 	
 	prop = RNA_def_property(srna, "color_value", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_float_sdna(prop, NULL, "val");
 	RNA_def_property_range(prop, 0.0f, 2.0f);
 	RNA_def_property_ui_text(prop, "Value", "");
+	RNA_def_property_float_default(prop, 1.0f);
 	RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
 }




More information about the Bf-blender-cvs mailing list