mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
21 lines
694 B
Python
21 lines
694 B
Python
|
|
||
|
"""
|
||
|
Node-extensions module: contains methods to extend functionality
|
||
|
of the Node class
|
||
|
"""
|
||
|
|
||
|
def isHidden(self):
|
||
|
"""Determine if a node is hidden. Just pick the first parent,
|
||
|
since this is an ambiguous question for instanced nodes"""
|
||
|
import RenderRelation
|
||
|
import PruneTransition
|
||
|
rrClass = RenderRelation.RenderRelation.getClassType()
|
||
|
if self.getNumParents(rrClass) > 0:
|
||
|
arc = self.getParent(rrClass, 0)
|
||
|
if arc.hasTransition(PruneTransition.PruneTransition.getClassType()):
|
||
|
return 1
|
||
|
else:
|
||
|
return arc.getParent().isHidden()
|
||
|
else:
|
||
|
return 0
|