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

hierdummy.py « utils « mcf « modules « python « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cf86e9e0c08fded0f56cab5389e7da840da6985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'''
Hierarchic 'Dummy' objects
'''

import hierobj, dummy

class HierobjDummy(hierobj.Hierobj,dummy.Dummy):
	'''
	An Hierarchic Dummy object, which provides direct access to its
	children through object[x] interfaces, allows "index" "count"
	etceteras by returning the corresponding attributes of the _base.
	'''
	def __init__(self, parent=None, childlist=None):
		hierobj.Hierobj.__init__(self, parent, childlist)
		self._base = self.__childlist__ #set by init function above