Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#pragma strict var explosionPrefab : Transform; function Start () { } function FixedUpdate() { for(var ourTouch : Touch in Input.touches){ if (ourTouch.phase == TouchPhase.

Began){ rigidbody.velocity =Vector3(0,0,40); } } } function OnCollisionEnter(collision : Collision) { Destroy (explosionPrefab); }

You might also like