View Single Post
  #2  
Old 02-26-2009, 12:02 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
You will need to apply a scale factor to the incoming position values of the PPT within your client application. For example if you wanted to increase the movement by a factor of 5 you would use the following psuedo-code:
Code:
x,y,z = GetPPTPosition();
SetObjectPosition(x*5,y*5,z*5);
Reply With Quote