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:
authorKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-06-02 16:43:27 +0400
committerKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-06-02 16:43:27 +0400
commit976e3a1824622c11c0bc72110345fcceae75fd73 (patch)
tree27921d8ff9ae80ed3eb288ae702ff17902a6163d /source/gameengine/PyDoc/SCA_PythonController.py
parent474ec217aefd4057429d4cbde4c08768e833cfe5 (diff)
Updates to GamePython Reference.
Added Actuator documentation.
Diffstat (limited to 'source/gameengine/PyDoc/SCA_PythonController.py')
-rw-r--r--source/gameengine/PyDoc/SCA_PythonController.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/gameengine/PyDoc/SCA_PythonController.py b/source/gameengine/PyDoc/SCA_PythonController.py
index f0926178288..eb9e57c0819 100644
--- a/source/gameengine/PyDoc/SCA_PythonController.py
+++ b/source/gameengine/PyDoc/SCA_PythonController.py
@@ -1,8 +1,8 @@
# $Id$
# Documentation for SCA_PythonController
-from SCA_ILogicBrick import *
+from SCA_IController import *
-class SCA_PythonController(SCA_ILogicBrick):
+class SCA_PythonController(SCA_IController):
"""
A Python controller uses a Python script to activate it's actuators,
based on it's sensors.
@@ -12,27 +12,27 @@ class SCA_PythonController(SCA_ILogicBrick):
"""
Gets a list of all sensors attached to this controller.
- @rtype: list [SCA_ISensor]
+ @rtype: list [L{SCA_ISensor}]
"""
def getSensor(name):
"""
Gets the named linked sensor.
@type name: string
- @rtype: SCA_ISensor
+ @rtype: L{SCA_ISensor}
"""
def getActuators():
"""
Gets a list of all actuators linked to this controller.
- @rtype: list [SCA_IActuator]
+ @rtype: list [L{SCA_IActuator}]
"""
def getActuator(name):
"""
Gets the named linked actuator.
@type name: string
- @rtype: SCA_IActuator
+ @rtype: L{SCA_IActuator}
"""
def getScript():
"""