Module KX_GameActuator

Source Code for Module KX_GameActuator

 1  # $Id: KX_GameActuator.py 2615 2004-06-02 12:43:27Z kester $ 
 2  # Documentation for KX_GameActuator 
 3  from SCA_IActuator import * 
 4   
5 -class KX_GameActuator(SCA_IActuator):
6 """ 7 The game actuator loads a new .blend file, restarts the current .blend file or quits the game. 8 """
9 - def getFile():
10 """ 11 Returns the filename of the new .blend file to load. 12 13 @rtype: string 14 """
15 - def setFile(filename):
16 """ 17 Sets the new .blend file to load. 18 19 @param filename: The file name this actuator will load. 20 @type filename: string 21 """
22