Game Python Reference Manual.
This manual lists all the Python classes and modules for Game Objects, Sensor bricks, Controllers etc. Missing: Actuator & Controller reference.
This commit is contained in:
27
source/gameengine/PyDoc/SCA_RandomSensor.py
Normal file
27
source/gameengine/PyDoc/SCA_RandomSensor.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Documentation for SCA_RandomSensor
|
||||
from SCA_ISensor import *
|
||||
|
||||
class SCA_RandomSensor(SCA_ISensor):
|
||||
"""
|
||||
This sensor activates randomly.
|
||||
"""
|
||||
|
||||
def setSeed(seed):
|
||||
"""
|
||||
Sets the seed of the random number generator.
|
||||
|
||||
If the seed is 0, the generator will produce the same value on every call.
|
||||
|
||||
@type seed: integer.
|
||||
"""
|
||||
def getSeed():
|
||||
"""
|
||||
Returns the initial seed of the generator. Equal seeds produce equal random
|
||||
series.
|
||||
|
||||
@rtype: integer
|
||||
"""
|
||||
def getLastDraw():
|
||||
"""
|
||||
Returns the last random number generated.
|
||||
"""
|
||||
Reference in New Issue
Block a user