Advertisement
kasru

Teleport

Jan 10th, 2013
12,106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //****** Donations are greatly appreciated.  ******
  2. //****** You can donate directly to Jesse through paypal at  https://www.paypal.me/JEtzler   ******
  3.  
  4. var target : Transform;
  5.  
  6. function Update () {
  7.  
  8. }
  9.  
  10. function OnTriggerEnter (col : Collider) {
  11.  
  12.     if(col.gameObject.tag == "teleport") {
  13.         this.transform.position = target.position;
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement