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:
authorDalai Felinto <dfelinto@gmail.com>2009-06-21 21:40:56 +0400
committerDalai Felinto <dfelinto@gmail.com>2009-06-21 21:40:56 +0400
commit320fc51a2b94a00c41ad433b061bca37577181c0 (patch)
treeee3fc99832813b90206222ef9291a0710a186bc9
parent29c6440bb39e20b6e0650be22c0d459fa434a608 (diff)
BGE pyAPI update
(adding "when accessing it from the Game Engine use Mathutils instead of Blender.Mathutils" message in Blender pyAPI doc)
-rw-r--r--source/blender/python/api2_2x/doc/BGL.py1
-rw-r--r--source/blender/python/api2_2x/doc/Geometry.py1
-rw-r--r--source/blender/python/api2_2x/doc/Mathutils.py1
-rw-r--r--source/gameengine/PyDoc/API_intro.py2
4 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/doc/BGL.py b/source/blender/python/api2_2x/doc/BGL.py
index 4a10de4a05c..b054e762273 100644
--- a/source/blender/python/api2_2x/doc/BGL.py
+++ b/source/blender/python/api2_2x/doc/BGL.py
@@ -7,6 +7,7 @@ B{New}: some GLU functions: L{gluLookAt}, etc.
The Blender.BGL submodule
=========================
+(when accessing it from the Game Engine use BGL instead of Blender.BGL)
This module wraps OpenGL constants and functions, making them available from
within Blender Python.
diff --git a/source/blender/python/api2_2x/doc/Geometry.py b/source/blender/python/api2_2x/doc/Geometry.py
index 97f97e8833e..da5ce045b44 100644
--- a/source/blender/python/api2_2x/doc/Geometry.py
+++ b/source/blender/python/api2_2x/doc/Geometry.py
@@ -5,6 +5,7 @@ The Blender.Geometry submodule.
Geometry
========
+(when accessing it from the Game Engine use Geometry instead of Blender.Geometry)
This new module provides access to a geometry function.
"""
diff --git a/source/blender/python/api2_2x/doc/Mathutils.py b/source/blender/python/api2_2x/doc/Mathutils.py
index 73a2ce46c4f..92836237fa6 100644
--- a/source/blender/python/api2_2x/doc/Mathutils.py
+++ b/source/blender/python/api2_2x/doc/Mathutils.py
@@ -5,6 +5,7 @@ The Blender.Mathutils submodule.
Mathutils
=========
+(when accessing it from the Game Engine use Mathutils instead of Blender.Mathutils)
This module provides access to matrices, eulers, quaternions and vectors.
diff --git a/source/gameengine/PyDoc/API_intro.py b/source/gameengine/PyDoc/API_intro.py
index 578b56eb2b0..0a687088627 100644
--- a/source/gameengine/PyDoc/API_intro.py
+++ b/source/gameengine/PyDoc/API_intro.py
@@ -24,7 +24,7 @@ The Blender Game Engine Python API Reference
Additional Modules:
-------------------
- These modules have no GameEngine spesific functionality but are useful in many cases.
+ These modules have no GameEngine specific functionality but are useful in many cases.
- L{Mathutils}
- L{Geometry}