Represents and provides the methods for a cable connecting nodes in the node view.
The cable is the representation of a connection between Ports on a Node, and is useful for tracing the connection between nodes.
Follow a Cable
from ToonBoom import harmony
sess = harmony.session()
proj = sess.project
scene = proj.scene
peg = scene.nodes["Top/Peg"]
def recursive_cable_follower( node ):
print( "Following : %s "%(node.path) )
try:
port = node.ports_out[0]
cable = port.cables[0]
next_node = cable.destination_node
recursive_cable_follower( next_node )
except:
print( "Failed to continue -- is there any valid connection?" )
recursive_cable_follower( peg )