Skip to content

Select all nodes in Node Graph

fabiof17 edited this page Jun 17, 2019 · 6 revisions
from NatronGui import *
import NatronEngine


allNodes = app.selectAllNodes(app)
currentNode = app.getSelectedNodes()

for node in currentNode:
	do your stuff...

Clone this wiki locally