blender/source/gameengine/PyDoc/SCA_ILogicBrick.py
Kester Maddock d38329b5aa Added Python module for Lights.
Added attributes to the vertex class.
2004-05-30 11:09:46 +00:00

30 lines
597 B
Python

# $Id$
# Documentation for the logic brick base class SCA_ILogicBrick
from KX_GameObject import *
class SCA_ILogicBrick:
"""
Logic brick base class.
"""
def getOwner():
"""
Gets the game object associated with this logic brick.
@rtype KX_GameObject
"""
def setExecutePriority(priority):
"""
Sets the priority of this logic brick.
@type priority: integer
@param priority: the priority of this logic brick.
"""
def getExecutePriority():
"""
Gets the execution priority of this logic brick.
@rtype integer
@return this logic bricks current priority.
"""