Advertisement
kasru

Player Fire Attack

Jan 30th, 2013
2,562
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 fireAttackSpeed : float = 1.0;
  5.  
  6. function Update () {
  7.  
  8.     //this.transform.position.x -= fireAttackSpeed;
  9.     this.transform.Translate(Vector3.forward * fireAttackSpeed);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement