68f6116689
Added enemy spawn, door spawn and despawn
15 lines
285 B
C#
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);
|
|
}
|
|
}
|
|
}
|