Pracownia-Programowania-Pro.../Assets/Scripts/DungeonGen/DeleteRooms.cs
Polarjad 68f6116689 Added map gen
Added enemy spawn, door spawn and despawn
2021-01-18 16:04:50 +01:00

15 lines
285 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DeleteRooms : MonoBehaviour
{
void OnTriggerEnter2D(Collider2D other)
{
if (other.CompareTag("Obstacle"))
{
Destroy(other.gameObject);
}
}
}