The node subselection object. Represents a subselection relative to a node.
Different node types can provide subselections in the interface. These subselections often provide controls contextual to that type of node. The subselections are provided via the OMC::NodeSubselectionList* object, and are contextual to the type of node – not all nodes provide a subselection interface.
If a node supports subselection interfaces, its OMC::NodeSubselectionList* will contain an object representing that selectable interface. These interfaces can then be selected with the selection interface in the session.
Provide details of the Subselection - Selects an Interface
from ToonBoom import harmony
sess = harmony.session()
proj = sess.project
scene = proj.scene
top = scene.top
selection = scene.selection
subselections = selection.subselections
curveNode = scene.nodes["Top/Deformation-Drawing/Curve"]
for subsel in curveNode.subselections:
print( "Subselection Interface: %s"%(subsel.name) )
subselections.add( curveNode.subselections[4] )
actions.perform( "onActionExecuteScript(QString)", "scriptResponder", ["showSelectedDeformers in deformationToolbar.js"] )