Provides the selected subselection objects.
Provides an interface of the selection of node subselections. These subselections are represented by OMC::NodeSubselection* objects, and allow for the specific subselection of the node's selectable interfaces.
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"]
subselections.add( curveNode.subselections[4] )
actions.perform( "onActionExecuteScript(QString)", "scriptResponder", ["showSelectedDeformers in deformationToolbar.js"] )
|
OMC::NodeSubselection * | operator[] (int idx) const |
| Provides the selected subselection at the given index. More...
|
|
bool | contains (OMC::NodeSubselection *) const |
| Identifies if the list contains the node subselection.
|
|
virtual std::vector< OMC::NodeSubselection * > | list () const override |
| Converts the dynamic list into a concrete list of node subselection objects.
|
|
virtual OMC::node * | operator() (const QString &searchString) const |
| Search for an node subselection in the node with a specialized search string. Search string formatting to be discussed. More...
|
|
virtual void | add (const QVariant &node) |
| Add a node to the selection. More...
|
|
virtual void | remove (const QVariant &node) |
| Remove a node from the selection. More...
|
|
void | select_none () |
| Removes all node subselections from the current selection.
|
|