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: 17d22fa5f83502ac4d8fe0dc850e0a3704f5b6ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# $Id$
# Documentation for KX_VisibilityActuator
from SCA_IActuator import *

class KX_VisibilityActuator(SCA_IActuator):
	"""
	Visibility Actuator.
    @ivar visibility: whether the actuator makes its parent object visible or invisible
    @type visibility: boolean
    @ivar recursion: whether the visibility/invisibility should be propagated to all children of the object
    @type recursion: boolean
	"""
	def set(visible):
		"""
        DEPRECATED: Use the visibility property instead.
		Sets whether the actuator makes its parent object visible or invisible.
		
		@param visible: - True: Makes its parent visible.
		                - False: Makes its parent invisible.
		"""