forked from bartvdbraak/blender
874c29cea8
Notes: * blenderbuttons and ICON_SNAP_PEEL_OBJECT were not merged.
48 lines
848 B
Python
48 lines
848 B
Python
class KX_PhysicsObjectWrapper: # (PyObjectPlus)
|
|
"""
|
|
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
|
|
"""
|