This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/gameengine/PyDoc/SCA_ILogicBrick.py
Kester Maddock a96955efc2 Game Python Reference Manual.
This manual lists all the Python classes and modules for Game Objects, Sensor bricks, Controllers etc.
Missing: Actuator & Controller reference.
2004-05-24 07:49:50 +00:00

29 lines
590 B
Python

# 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.
"""