Welcome to mirror list, hosted at ThFree Co, Russian Federation.

KX_VisibilityActuator.py « PyDoc « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22499f25d8100d4bd5c6a2811bb539696681c6d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# $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.
		"""