Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/PyDoc/KX_GameObject.py')
-rw-r--r--source/gameengine/PyDoc/KX_GameObject.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/gameengine/PyDoc/KX_GameObject.py b/source/gameengine/PyDoc/KX_GameObject.py
index dd9e4b0bb23..a19e36d6dd0 100644
--- a/source/gameengine/PyDoc/KX_GameObject.py
+++ b/source/gameengine/PyDoc/KX_GameObject.py
@@ -7,10 +7,14 @@ class KX_GameObject:
Properties assigned to game objects are accessible as attributes of this class.
- @ivar mass: The object's mass (provided the object has a physics controller). float. read only
+ @ivar name: The object's name.
+ @type name: string.
+ @ivar mass: The object's mass (provided the object has a physics controller). Read only.
+ @type mass: float
@ivar parent: The object's parent object. (Read only)
@type parent: L{KX_GameObject}
- @ivar visible: visibility flag. boolean.
+ @ivar visible: visibility flag.
+ @type visible: boolean
@ivar position: The object's position.
@type position: list [x, y, z]
@ivar orientation: The object's orientation. 3x3 Matrix.