Advertisement
Guest User

TestScript

a guest
Feb 4th, 2014
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1. public class TestScript : MonoBehaviour {
  2.    
  3.     public Vector3 syncPosition = Vector3.zero;
  4.     public Quaternion syncRotation = Quaternion.identity;
  5.    
  6.     public Vector3 syncStartPosition = Vector3.zero;
  7.     public Vector3 syncEndPosition = Vector3.zero;
  8.    
  9.     public Quaternion syncEndRotation = Quaternion.identity;
  10.     public Quaternion syncStartRotation = Quaternion.identity;
  11.    
  12.     // Use this for initialization
  13.     void Start () {
  14.    
  15.     }
  16.    
  17.     // Update is called once per frame
  18.     void Update () {
  19.    
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement