[Bf-blender-cvs] [d36fb8e] master: Logic Bricks *must* be kept in alphabetical order

Dalai Felinto noreply at git.blender.org
Tue Jan 6 15:30:14 CET 2015


Commit: d36fb8e34e62a53d212b3965fd9d8b7fc9a27a2a
Author: Dalai Felinto
Date:   Tue Jan 6 12:28:57 2015 -0200
Branches: master
https://developer.blender.org/rBd36fb8e34e62a53d212b3965fd9d8b7fc9a27a2a

Logic Bricks *must* be kept in alphabetical order

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

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

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

diff --git a/source/blender/makesrna/intern/rna_actuator.c b/source/blender/makesrna/intern/rna_actuator.c
index 0114ffa..6792dd7 100644
--- a/source/blender/makesrna/intern/rna_actuator.c
+++ b/source/blender/makesrna/intern/rna_actuator.c
@@ -55,16 +55,16 @@ static EnumPropertyItem actuator_type_items[] = {
 	{ACT_2DFILTER, "FILTER_2D", 0, "Filter 2D", ""},
 	{ACT_GAME, "GAME", 0, "Game", ""},
 	{ACT_MESSAGE, "MESSAGE", 0, "Message", ""},
-    {ACT_MOUSE, "MOUSE", 0, "Mouse", ""},
 	{ACT_OBJECT, "MOTION", 0, "Motion", ""},
+	{ACT_MOUSE, "MOUSE", 0, "Mouse", ""},
 	{ACT_PARENT, "PARENT", 0, "Parent", ""},
 	{ACT_PROPERTY, "PROPERTY", 0, "Property", ""},
 	{ACT_RANDOM, "RANDOM", 0, "Random", ""},
 	{ACT_SCENE, "SCENE", 0, "Scene", ""},
 	{ACT_SOUND, "SOUND", 0, "Sound", ""},
 	{ACT_STATE, "STATE", 0, "State", ""},
-	{ACT_VISIBILITY, "VISIBILITY", 0, "Visibility", ""},
 	{ACT_STEERING, "STEERING", 0, "Steering", ""},
+	{ACT_VISIBILITY, "VISIBILITY", 0, "Visibility", ""},
 	{0, NULL, 0, NULL, NULL}
 };




More information about the Bf-blender-cvs mailing list