Files
UltimateFishing2020/Assets/Scripts/Assembly-CSharp/TutorialTrigger.cs
2026-03-04 10:03:45 +08:00

23 lines
360 B
C#

using UnityEngine;
public class TutorialTrigger : MonoBehaviour
{
private void Start()
{
}
private void Update()
{
}
public void OnTriggerEnter(Collider other)
{
Debug.Log(other.tag);
if ((bool)TutorialManager.Instance && other.tag == "Player")
{
Debug.Log("COLIDER SOBIE IDZIE ");
TutorialManager.Instance.CheckLessonPopUp(0);
}
}
}