pixelpicnic 0 Posted June 15, 2018 Hello Hive Mind, Long time reader, first time poster.... I was wondering if anyone knows a pythonic way of creating a reference copy of a node? More or less the equivalent of hscript opcp -c. It's a little more complicated than a copy and iterate over parms, since certain parm types need different copy/reference methods. Thanks in advance! Share this post Link to post Share on other sites
toadstorm 299 Posted June 15, 2018 I believe hou.Node.copyItems(items, channel_reference_originals=True) is what you're looking for. This won't reference any nested operators in a subnetwork, though. 1 Share this post Link to post Share on other sites
pixelpicnic 0 Posted June 16, 2018 2 hours ago, toadstorm said: I believe hou.Node.copyItems(items, channel_reference_originals=True) is what you're looking for. This won't reference any nested operators in a subnetwork, though. That's the ticket! Cheers! Share this post Link to post Share on other sites