View Single Post
  #2  
Old 04-20-2016, 06:35 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Try placing the print statement after the path is reset:

Code:
pathMaze1.reset()
print view.getPosition(mode = viz.ABS_PARENT)
Also, the view is linked to a viewnode and the viewnode is linked to the path. It seems like you could simplify the code and remove all references to the viewnode here.

Last edited by Jeff; 04-20-2016 at 09:50 PM.
Reply With Quote