2009-04-28 13:02:49 +00:00
|
|
|
from PyObjectPlus import *
|
|
|
|
|
|
|
|
|
|
class KX_PhysicsObjectWrapper(PyObjectPlus):
|
2009-04-07 17:54:56 +00:00
|
|
|
"""
|
|
|
|
|
KX_PhysicsObjectWrapper
|
|
|
|
|
|
|
|
|
|
All placeholders have a __ prefix
|
|
|
|
|
"""
|
|
|
|
|
def __setActive(val):
|
|
|
|
|
"""
|
|
|
|
|
TODO - Description
|
|
|
|
|
|
|
|
|
|
@param val: the starting frame of the animation
|
|
|
|
|
@type val: float
|
|
|
|
|
|
|
|
|
|
@rtype: integer
|
|
|
|
|
@return: TODO Description
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def __setAngularVelocity(val):
|
|
|
|
|
"""
|
|
|
|
|
TODO - Description
|
|
|
|
|
|
|
|
|
|
@param val: the starting frame of the animation
|
|
|
|
|
@type val: float
|
|
|
|
|
|
|
|
|
|
@rtype: integer
|
|
|
|
|
@return: TODO Description
|
|
|
|
|
"""
|
|
|
|
|
def __setLinearVelocity(val):
|
|
|
|
|
"""
|
|
|
|
|
TODO - Description
|
|
|
|
|
|
|
|
|
|
@param val: the starting frame of the animation
|
|
|
|
|
@type val: float
|
|
|
|
|
|
|
|
|
|
@rtype: integer
|
|
|
|
|
@return: TODO Description
|
|
|
|
|
"""
|
|
|
|
|
def __setPosition(val):
|
|
|
|
|
"""
|
|
|
|
|
TODO - Description
|
|
|
|
|
|
|
|
|
|
@param val: the starting frame of the animation
|
|
|
|
|
@type val: float
|
|
|
|
|
|
|
|
|
|
@rtype: integer
|
|
|
|
|
@return: TODO Description
|
|
|
|
|
"""
|