[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [21606] branches/blender2.5/blender/source /blender/makesrna/intern/rna_constraint.c: 2. 5 - Tweak to Action Constraint 'Transform Channel' order of options

Joshua Leung aligorith at gmail.com
Thu Jul 16 00:51:47 CEST 2009


Revision: 21606
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=21606
Author:   aligorith
Date:     2009-07-16 00:51:47 +0200 (Thu, 16 Jul 2009)

Log Message:
-----------
2.5 - Tweak to Action Constraint 'Transform Channel' order of options

Modified Paths:
--------------
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_constraint.c

Modified: branches/blender2.5/blender/source/blender/makesrna/intern/rna_constraint.c
===================================================================
--- branches/blender2.5/blender/source/blender/makesrna/intern/rna_constraint.c	2009-07-15 19:20:59 UTC (rev 21605)
+++ branches/blender2.5/blender/source/blender/makesrna/intern/rna_constraint.c	2009-07-15 22:51:47 UTC (rev 21606)
@@ -716,15 +716,15 @@
 	PropertyRNA *prop;
 
 	static EnumPropertyItem transform_channel_items[] = {
+		{20, "LOCATION_X", 0, "Location X", ""},
+		{21, "LOCATION_Y", 0, "Location Y", ""},
+		{22, "LOCATION_Z", 0, "Location Z", ""},
 		{00, "ROTATION_X", 0, "Rotation X", ""},
 		{01, "ROTATION_Y", 0, "Rotation Y", ""},
 		{02, "ROTATION_Z", 0, "Rotation Z", ""},
-		{10, "SIZE_X", 0, "Scale X", ""},
-		{11, "SIZE_Y", 0, "Scale Y", ""},
-		{12, "SIZE_Z", 0, "Scale Z", ""},
-		{20, "LOCATION_X", 0, "Location X", ""},
-		{21, "LOCATION_Y", 0, "Location Y", ""},
-		{22, "LOCATION_Z", 0, "Location Z", ""},
+		{10, "SCALE_X", 0, "Scale X", ""},
+		{11, "SCALE_Y", 0, "Scale Y", ""},
+		{12, "SCALE_Z", 0, "Scale Z", ""},
 		{0, NULL, 0, NULL, NULL}};
 
 	srna= RNA_def_struct(brna, "ActionConstraint", "Constraint");





More information about the Bf-blender-cvs mailing list