testing
This commit is contained in:
reedgamingstudio
2014-12-16 00:23:12 -06:00
parent c0c0755cc6
commit 5b8ebb7a35
1697 changed files with 1115979 additions and 0 deletions
@@ -0,0 +1,17 @@
using UnityEngine;
using System.Collections;
public class Rocket : MonoBehaviour {
public float timeOut = 4.0f;
// Use this for initialization
void Start () {
Destroy (gameObject, timeOut);
}
// Update is called once per frame
void Update () {
transform.Translate(new Vector3(0,0,1) * Time.deltaTime*150);
}
}