[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52464] trunk/blender/doc/python_api/rst: Moving the Armature Actuator constant docs from bge.types.rst to bge.logic .rst with the rest of the constants docs are.

Mitchell Stokes mogurijin at gmail.com
Thu Nov 22 08:52:21 CET 2012


Revision: 52464
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=52464
Author:   moguri
Date:     2012-11-22 07:52:17 +0000 (Thu, 22 Nov 2012)
Log Message:
-----------
Moving the Armature Actuator constant docs from bge.types.rst to bge.logic.rst with the rest of the constants docs are. Not only is this more consistent, but it also makes Campbell's script happier.

Modified Paths:
--------------
    trunk/blender/doc/python_api/rst/bge.logic.rst
    trunk/blender/doc/python_api/rst/bge.types.rst

Modified: trunk/blender/doc/python_api/rst/bge.logic.rst
===================================================================
--- trunk/blender/doc/python_api/rst/bge.logic.rst	2012-11-22 07:31:51 UTC (rev 52463)
+++ trunk/blender/doc/python_api/rst/bge.logic.rst	2012-11-22 07:52:17 UTC (rev 52464)
@@ -491,6 +491,52 @@
 .. data:: KX_ACTIONACT_LOOPEND
 .. data:: KX_ACTIONACT_PROPERTY
 
+---------------
+Armature Actuator
+---------------
+
+ .. _armatureactuator-constants-type:
+   
+   See :class:`bge.types.BL_ArmatureActuator.type`
+   
+   .. data:: KX_ACT_ARMATURE_RUN
+
+      Just make sure the armature will be updated on the next graphic frame.
+      This is the only persistent mode of the actuator:
+      it executes automatically once per frame until stopped by a controller
+      
+      :value: 0
+
+   .. data:: KX_ACT_ARMATURE_ENABLE
+
+      Enable the constraint.
+            
+      :value: 1
+
+   .. data:: KX_ACT_ARMATURE_DISABLE
+
+      Disable the constraint (runtime constraint values are not updated).
+            
+      :value: 2
+
+   .. data:: KX_ACT_ARMATURE_SETTARGET
+
+      Change target and subtarget of constraint.
+      
+      :value: 3
+
+   .. data:: KX_ACT_ARMATURE_SETWEIGHT
+
+      Change weight of constraint (IK only).
+
+      :value: 4
+
+   .. data:: KX_ACT_ARMATURE_SETINFLUENCE
+
+      Change influence of constraint.
+
+      :value: 5
+
 -------------------
 Constraint Actuator
 -------------------

Modified: trunk/blender/doc/python_api/rst/bge.types.rst
===================================================================
--- trunk/blender/doc/python_api/rst/bge.types.rst	2012-11-22 07:31:51 UTC (rev 52463)
+++ trunk/blender/doc/python_api/rst/bge.types.rst	2012-11-22 07:52:17 UTC (rev 52464)
@@ -4572,48 +4572,6 @@
 
    Armature Actuators change constraint condition on armatures.
 
-   .. _armatureactuator-constants-type:
-   
-   Constants related to :data:`~bge.types.BL_ArmatureActuator.type`
-   
-   .. data:: KX_ACT_ARMATURE_RUN
-
-      Just make sure the armature will be updated on the next graphic frame.
-      This is the only persistent mode of the actuator:
-      it executes automatically once per frame until stopped by a controller
-      
-      :value: 0
-
-   .. data:: KX_ACT_ARMATURE_ENABLE
-
-      Enable the constraint.
-            
-      :value: 1
-
-   .. data:: KX_ACT_ARMATURE_DISABLE
-
-      Disable the constraint (runtime constraint values are not updated).
-            
-      :value: 2
-
-   .. data:: KX_ACT_ARMATURE_SETTARGET
-
-      Change target and subtarget of constraint.
-      
-      :value: 3
-
-   .. data:: KX_ACT_ARMATURE_SETWEIGHT
-
-      Change weight of constraint (IK only).
-
-      :value: 4
-
-   .. data:: KX_ACT_ARMATURE_SETINFLUENCE
-
-      Change influence of constraint.
-
-      :value: 5
-
    .. attribute:: type
 
       The type of action that the actuator executes when it is active.




More information about the Bf-blender-cvs mailing list