Synopsis


setMaskedOutlinerNodesVisible(bool)


This command reveals or conceals nodes in outliner designed to be out of sight for a regular user, intended for a cleaner visualization. This includes nodes created by Temp Controls.


It's important to note that animBot will always create DAG nodes parented to the main animBot node, so by deleting the main animBot node, all nodes will be removed, including masked nodes. 


Flags


Argument typesDescription
boolIf True, will reveal masked nodes. If False, will conceal/hide masked nodes.

Examples


This will reveal all animBot masked nodes in outliner:

from animBot import OpenAnimBot as OA

OA.setMaskedOutlinerNodesVisible(True)

Python



This will reveal all animBot masked nodes in outliner:

from animBot import OpenAnimBot as OA

OA.setMaskedOutlinerNodesVisible(False)

Python