State:Closed|TargetRelease:No Target|icon_bug|icon_katana|database:public|Resolution:Not A Bug|BugID:505474|
root = NodegraphAPI.GetRootNode()pos = NodegraphAPI.GetViewPortPosition(root)loc = NodegraphAPI.CreateNode('LocationCreate', root)group = NodegraphAPI.CreateNode('Group', root)merge = NodegraphAPI.CreateNode('Merge', group)count = 1000for idx in range(count): child = NodegraphAPI.CreateNode('TimeOffset', group) NodegraphAPI.SetNodePosition(child, (pos[0][0] + (150 * idx) % 2000, pos[0][1]-(50*(idx//(2000/150))))) param = child.getParameter('inputFrame') param.setExpressionFlag(False) param.setValue(idx, 0) child.getInputPort("input").connect(loc.getOutputPort("out")) merge.addInputPort('i' + str(idx)).connect(child.getOutputPort("output"))rs = NodegraphAPI.CreateNode('RenderSettings', NodegraphAPI.GetRootNode())rs.getInputPort("input").connect(merge.getOutputPort('out'))NodegraphAPI.SetNodePosition(merge, (pos[0][0] + 1000, pos[0][1]-(50*(count//(2000/150))+ 100)))NodegraphAPI.SetNodePosition(loc, (pos[0][0], pos[0][1]+ 50))NodegraphAPI.SetNodePosition(rs, (pos[0][0], pos[0][1]-50)) We're sorry to hear that
Please tell us why