Is there any reason why not to use nuke.createNode() ? As it will do what you want (put the node where you expect it) If you really need nuke.nodes, you could grab the position of the selected node and then use .setXYposition()
x = nuke.selectedNode().xpos() y = nuke.selectedNode().ypos() grade = nuke.nodes.Grade() grade.setXYpos(x,y+50) On Mon, Nov 12, 2012, at 17:13, brandon harris wrote: > Also, this is using nuke.nodes to create my nodes. I have wrapper > utilities to create the nodes and I don't use nuke.createNode. > > Brandon L. Harris > ________________________________________ > From: [email protected] > [[email protected]] on behalf of brandon > harris [[email protected]] > Sent: Monday, November 12, 2012 4:07 PM > To: [email protected] > Subject: [Nuke-python] Very Newbish Question > > I can't seem to find any information to help me work this problem out. I > have tools to generate nodes for artists, but I always just generate the > nodes at 0, 0 which can be a little flow breaking since the artist has to > zoom out and pan over to get them. In really large scripts this can be > especially annoying. > > Is there a way to find coordinates that exist in the artists current node > graph position? I can pull in pan, but setting the nodes x and y to > those values doesn't work. Anyway to accomplish this? > > Brandon L. Harris > _______________________________________________ > Nuke-python mailing list > [email protected], http://forums.thefoundry.co.uk/ > http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-python > _______________________________________________ > Nuke-python mailing list > [email protected], http://forums.thefoundry.co.uk/ > http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-python -- Hugo Léveillé TD Compositing, Vision Globale [email protected] _______________________________________________ Nuke-python mailing list [email protected], http://forums.thefoundry.co.uk/ http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-python
