[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [56280] trunk/blender/source/blender/ makesrna/intern/rna_rigidbody.c: Fix rigid body world Solver Iterations not showing in UI and throwing python error .

Brecht Van Lommel brechtvanlommel at pandora.be
Thu Apr 25 01:09:20 CEST 2013


Revision: 56280
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=56280
Author:   blendix
Date:     2013-04-24 23:09:19 +0000 (Wed, 24 Apr 2013)
Log Message:
-----------
Fix rigid body world Solver Iterations not showing in UI and throwing python error.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_rigidbody.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_rigidbody.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_rigidbody.c	2013-04-24 20:19:01 UTC (rev 56279)
+++ trunk/blender/source/blender/makesrna/intern/rna_rigidbody.c	2013-04-24 23:09:19 UTC (rev 56280)
@@ -666,7 +666,7 @@
 	RNA_def_property_update(prop, NC_SCENE, "rna_RigidBodyWorld_reset");
 	
 	/* constraint solver iterations */
-	prop = RNA_def_property(srna, "num_solver_iterations", PROP_INT, PROP_NONE);
+	prop = RNA_def_property(srna, "solver_iterations", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "num_solver_iterations");
 	RNA_def_property_range(prop, 1, 1000);
 	RNA_def_property_ui_range(prop, 10, 100, 1, -1);




More information about the Bf-blender-cvs mailing list