17 lines
319 B
C#
17 lines
319 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
public class SpawnTrigger : MonoBehaviour
|
|||
|
{
|
|||
|
public bool playerTrigger = false;
|
|||
|
|
|||
|
void OnTriggerEnter2D(Collider2D other)
|
|||
|
{
|
|||
|
if (other.CompareTag("Player"))
|
|||
|
{
|
|||
|
playerTrigger = true;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|