View Single Post
  #2  
Old 05-02-2013, 09:06 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
You can link an object to the tracker:
Code:
viz.link(body1,newhedra)
Or you can update it manually each frame:
Code:
def updateHedra():
	marker = body1.getMarker(x)
	position = marker.getPosition() 
	newhedra.setPosition(position)
	
vizact.onupdate(0,updateHedra)
Reply With Quote