2022-05-13 23:01:23 -04:00

24 lines
476 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Projectile : MonoBehaviour
{
[SerializeField]private float lifeTime = 1f;
private float timer;
// Start is called before the first frame update
void Start()
{
timer = 0;
}
// Update is called once per frame
void Update()
{
timer += Time.deltaTime;
if(timer >= lifeTime){
Destroy(gameObject);
}
}
}