Skip to content

Instantly share code, notes, and snippets.

@atakotestudios
Last active June 27, 2017 01:27
Show Gist options
  • Save atakotestudios/d9a43fe8b6055fc38f36cc8a42636c76 to your computer and use it in GitHub Desktop.
Save atakotestudios/d9a43fe8b6055fc38f36cc8a42636c76 to your computer and use it in GitHub Desktop.
Projectile Script
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Projectile : MonoBehaviour {
// Use this for initialization
void Start () {
Destroy(gameObject, 11f);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment