View Single Post
  #5  
Old 02-28-2017, 12:09 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
It looks like the transport object can't be sent using the network command and causes the cPickle error. Try sending the position and orientation of the transport every frame to all clients. On the receiving end, set the position and orientation of the transport:

Code:
transport.setPosition(pos)
transport.setEuler(euler)
Reply With Quote