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>2010-01-10 22:35:42 +0300
committerDalai Felinto <dfelinto@gmail.com>2010-01-10 22:35:42 +0300
commit580345394eb58748fa6df527a095671ed3edc396 (patch)
tree83e286a1c678b6695511af521e236e2d69cd7241 /source/gameengine/PyDoc/VideoTexture.py
parent6b4a8c5d722f13576cf486b2f8b9a190c7970781 (diff)
BGE API_DOC: VideoTexture and PhysicsConstraints templates (need the functions to be filled with their description).
PhysicsConstraints is documented in the Game Kit Book: http://download.blender.org/documentation/gamekit1/ VideoTexture is documented in the wiki: http://wiki.blender.org/index.php/Dev:Source/GameEngine/2.49/VideoTexture I don't think I will have time to fill the documentation. But I hope this commit helps someone interested in helping it. Therefore volunteers to document those modules are highly welcome !!! (let's give to BGE the documentation it deserves)! * + added GameLogic.Lave/LoadGlobalDict + some typo fixes
Diffstat (limited to 'source/gameengine/PyDoc/VideoTexture.py')
-rw-r--r--source/gameengine/PyDoc/VideoTexture.py133
1 files changed, 133 insertions, 0 deletions
diff --git a/source/gameengine/PyDoc/VideoTexture.py b/source/gameengine/PyDoc/VideoTexture.py
new file mode 100644
index 00000000000..cbcd28fb24c
--- /dev/null
+++ b/source/gameengine/PyDoc/VideoTexture.py
@@ -0,0 +1,133 @@
+# $Id$
+"""
+Documentation for the VideoTexture module.
+
+Example:
+ import VideoTexture
+ import GameLogic
+
+"""
+def getLastError():
+ """
+ Does something
+
+ @rtype:
+ """
+def imageToArray(image):
+ """
+ Does something
+
+ @param image: Image ID
+ @type image: integer
+ @rtype: array
+ """
+def materialID(material):
+ """
+ Gets the ID of a material
+
+ @param material: the name of the material
+ @type material: string
+ @rtype:
+ """
+def setLogFile():
+ """
+ Does something
+
+ @rtype:
+ """
+def FilterBGR24():
+ """
+ Does something
+
+ @rtype:
+ """
+def FilterBlueScreen():
+ """
+ Does something
+
+ @rtype:
+ """
+def FilterColor():
+ """
+ Does something
+
+ @rtype:
+ """
+def FilterGray():
+ """
+ Does something
+
+ @rtype:
+ """
+def FilterLevel():
+ """
+ Does something
+
+ @rtype:
+ """
+def FilterNormal():
+ """
+ Does something
+
+ @rtype:
+ """
+def FilterRGB24():
+ """
+ Does something
+
+ @rtype:
+ """
+def FilterRGBA32():
+ """
+ Does something
+
+ @rtype:
+ """
+def ImageBuff():
+ """
+ Does something
+
+ @rtype:
+ """
+def ImageFFmpeg():
+ """
+ Does something
+
+ @rtype:
+ """
+def ImageMirror():
+ """
+ Does something
+
+ @rtype:
+ """
+def ImageMix():
+ """
+ Does something
+
+ @rtype:
+ """
+def ImageRender():
+ """
+ Does something
+
+ @rtype:
+ """
+def ImageViewport():
+ """
+ Does something
+
+ @rtype:
+ """
+def Texture():
+ """
+ Does something
+
+ @rtype:
+ """
+def VideoFFmpeg():
+ """
+ Does something
+
+ @rtype:
+ """ \ No newline at end of file