forked from bartvdbraak/blender
976e3a1824
Added Actuator documentation.
17 lines
371 B
Python
17 lines
371 B
Python
# $Id$
|
|
# Documentation for KX_VisibilityActuator
|
|
from SCA_IActuator import *
|
|
|
|
class KX_VisibilityActuator(SCA_IActuator):
|
|
"""
|
|
Visibility Actuator.
|
|
"""
|
|
def set(visible):
|
|
"""
|
|
Sets whether the actuator makes its parent object visible or invisible.
|
|
|
|
@param visible: - True: Makes its parent visible.
|
|
- False: Makes its parent invisible.
|
|
"""
|
|
|
|
|