Files
Gnome-s-Bounty/Assets/Scripts/BoxesController.cs
T
2023-06-20 19:28:02 +03:00

15 lines
290 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BoxesController : MonoBehaviour
{
private void OnTriggerEnter2D(Collider2D collision)
{
if (collision.tag == "Player")
{
Destroy(gameObject);
}
}
}