View Single Post
  #2  
Old 04-15-2016, 06:10 AM
Erikvdb Erikvdb is offline
Member
 
Join Date: May 2013
Posts: 63
Linking should be done in the right order, so: viz.link(parent, child). In your sample, you've linked the arrow to the viewport instead of the other way around.
Also if you don't need actually need the arrow, just replace it with an empty node like so:
Code:
viewNode = viz.addGroup()
viewLink = viz.link(viewNode, viz.MainView)
Reply With Quote