View Single Post
  #2  
Old 01-22-2015, 04:39 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
I don't understand the issue. An action is applied to both the ground object and the viewpoint. Is that what you want? The shape is not being moved. You can check the shape position by adding the following code:

Code:
def printShapePosition():
	print h.getPosition(viz.ABS_GLOBAL)
	
vizact.ontimer(1,printShapePosition)
Reply With Quote