[Bf-blender-cvs] [0e0b3d6e1a0] blender-v3.4-release: adding defaults for NLA Action scale and repeat

Nate Rupsis noreply at git.blender.org
Thu Nov 3 18:19:13 CET 2022


Commit: 0e0b3d6e1a004e019358aa7f0a46cf8ad89c58a4
Author: Nate Rupsis
Date:   Thu Nov 3 09:17:16 2022 -0500
Branches: blender-v3.4-release
https://developer.blender.org/rB0e0b3d6e1a004e019358aa7f0a46cf8ad89c58a4

adding defaults for NLA Action scale and repeat

Differential Revision: https://developer.blender.org/D16379

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

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

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

diff --git a/source/blender/makesrna/intern/rna_nla.c b/source/blender/makesrna/intern/rna_nla.c
index 524e3134f9c..4412dcee4c1 100644
--- a/source/blender/makesrna/intern/rna_nla.c
+++ b/source/blender/makesrna/intern/rna_nla.c
@@ -822,6 +822,7 @@ static void rna_def_nlastrip(BlenderRNA *brna)
   RNA_def_property_float_funcs(prop, NULL, "rna_NlaStrip_repeat_set", NULL);
   /* these limits have currently be chosen arbitrarily, but could be extended
    * (minimum should still be > 0 though) if needed... */
+  RNA_def_property_float_default(prop, 1.0);
   RNA_def_property_range(prop, 0.1f, 1000.0f);
   RNA_def_property_ui_text(prop, "Repeat", "Number of times to repeat the action range");
   RNA_def_property_update(
@@ -832,6 +833,7 @@ static void rna_def_nlastrip(BlenderRNA *brna)
   RNA_def_property_float_funcs(prop, NULL, "rna_NlaStrip_scale_set", NULL);
   /* these limits can be extended, but beyond this, we can get some crazy+annoying bugs
    * due to numeric errors */
+  RNA_def_property_float_default(prop, 1.0);
   RNA_def_property_range(prop, 0.0001f, 1000.0f);
   RNA_def_property_ui_text(prop, "Scale", "Scaling factor for action");
   RNA_def_property_update(



More information about the Bf-blender-cvs mailing list