View Single Post
  #5  
Old 05-17-2011, 04:10 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Sorry about that, there was missing code in the documentation. If you add the following to the client script does it work for you?
Code:
def sendUpdate(): 
    ori= viz.MainView.getEuler()
    pos = viz.MainView.getPosition()
    viznet.client.sendAll(UPDATE,client=viz.getComputerName(),object=obj_choice,pos=pos,ori=ori)
vizact.ontimer(.05,sendUpdate)
Reply With Quote