Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var pos_x = (float)args[1];
  2. var pos_y = (float)args[2];
  3. var pos_z = (float)args[3];
  4. var rot_x = (float)args[4];
  5. var rot_y = (float)args[5];
  6. var rot_z = (float)args[6];
  7.  
  8. Vector3 position = new Vector3(pos_x, pos_y, pos_z);
  9. Vector3 rotation = new Vector3(rot_x, rot_y, rot_z);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement