[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52478] trunk/blender/doc/python_api/rst: BGE Docs: Moving the KX_ArmatureSensor.type constant docs from bge.types. rst to bge.logic.rst where the rest of the constants docs are.

Mitchell Stokes mogurijin at gmail.com
Thu Nov 22 12:09:42 CET 2012


Revision: 52478
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=52478
Author:   moguri
Date:     2012-11-22 11:09:42 +0000 (Thu, 22 Nov 2012)
Log Message:
-----------
BGE Docs: Moving the KX_ArmatureSensor.type constant docs from bge.types.rst to bge.logic.rst where the rest of the constants docs are.

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 11:03:17 UTC (rev 52477)
+++ trunk/blender/doc/python_api/rst/bge.logic.rst	2012-11-22 11:09:42 UTC (rev 52478)
@@ -409,6 +409,45 @@
 .. data:: KX_SENSOR_ACTIVE
 .. data:: KX_SENSOR_JUST_DEACTIVATED
 
+-------------
+Armature Sensor
+-------------
+
+.. _armaturesensor-type:
+
+See :class:`bge.types.KX_ArmatureSensor.type`
+
+.. data:: KX_ARMSENSOR_STATE_CHANGED
+
+  Detect that the constraint is changing state (active/inactive)
+
+  :value: 0
+  
+.. data:: KX_ARMSENSOR_LIN_ERROR_BELOW
+
+  Detect that the constraint linear error is above a threshold
+  
+  :value: 1
+  
+.. data:: KX_ARMSENSOR_LIN_ERROR_ABOVE
+
+  Detect that the constraint linear error is below a threshold
+
+  :value: 2
+  
+.. data:: KX_ARMSENSOR_ROT_ERROR_BELOW
+
+  Detect that the constraint rotation error is above a threshold
+  
+  :value: 3
+  
+.. data:: KX_ARMSENSOR_ROT_ERROR_ABOVE
+
+  Detect that the constraint rotation error is below a threshold
+  
+  :value: 4
+  
+
 .. _logic-property-sensor:
 
 ---------------

Modified: trunk/blender/doc/python_api/rst/bge.types.rst
===================================================================
--- trunk/blender/doc/python_api/rst/bge.types.rst	2012-11-22 11:03:17 UTC (rev 52477)
+++ trunk/blender/doc/python_api/rst/bge.types.rst	2012-11-22 11:09:42 UTC (rev 52478)
@@ -4626,40 +4626,6 @@
 
    Armature sensor detect conditions on armatures.
 
-   .. _armaturesensor-type:
-
-   Constants related to :data:`type`
-
-   .. data:: KX_ARMSENSOR_STATE_CHANGED
-   
-      Detect that the constraint is changing state (active/inactive)
-
-      :value: 0
-      
-   .. data:: KX_ARMSENSOR_LIN_ERROR_BELOW
-   
-      Detect that the constraint linear error is above a threshold
-      
-      :value: 1
-      
-   .. data:: KX_ARMSENSOR_LIN_ERROR_ABOVE
-   
-      Detect that the constraint linear error is below a threshold
-
-      :value: 2
-      
-   .. data:: KX_ARMSENSOR_ROT_ERROR_BELOW
-   
-      Detect that the constraint rotation error is above a threshold
-      
-      :value: 3
-      
-   .. data:: KX_ARMSENSOR_ROT_ERROR_ABOVE
-   
-      Detect that the constraint rotation error is below a threshold
-      
-      :value: 4
-      
    .. attribute:: type
 
       The type of measurement that the sensor make when it is active.




More information about the Bf-blender-cvs mailing list