Updated bge_api_validate_py.txt to check for undocumented attributes

All types methods and attributes are now documented (except for some types have no epydoc .py files for at all)
This commit is contained in:
2009-04-07 11:45:48 +00:00
parent 5d64dd019e
commit 1534eca60f
5 changed files with 62 additions and 5 deletions

View File

@@ -5,6 +5,11 @@ from SCA_ISensor import *
class SCA_RandomSensor(SCA_ISensor):
"""
This sensor activates randomly.
@ivar lastDraw: The seed of the random number generator.
@type lastDraw: int
@ivar seed: The seed of the random number generator.
@type seed: int
"""
def setSeed(seed):
@@ -25,4 +30,6 @@ class SCA_RandomSensor(SCA_ISensor):
def getLastDraw():
"""
Returns the last random number generated.
@rtype: integer
"""