actuators
actuators
gets a list of the names of the actuators attached to the game object
Type: list [ actuator names ]
Sample Code
################# Get actuator
# get the controller
controller = GameLogic.getCurrentController()
# get the game object that the controller is attached
to.
obj = controller.owner
# get actuator list
actList = obj.actuators
|