[개발일지] 나폴리탄스파게티 20230608

2023. 6. 10. 10:192학년 1학기 프로젝트

 


창문 이벤트 구현

(미완성) 05시 ~ 06시 사이 등장 이벤트, 창문을 통해 밖으로 나갈 경우 화면이 하얀색으로 변하며 엔딩

public class WindowEventController : MonoBehaviour
{
    public bool event9 = false; //이벤트를 진행할지 결정할 변수

    public GameObject window;

    void Start()
    {
        window.SetActive(false);
    }

    void Update()
    {
        if(event9 == true)
        {
            window.SetActive(true);
            Debug.Log("Event9");
        }
    }
}

 

public class WindowEvent : MonoBehaviour
{
    // 충돌 체크
    void OnTriggerEnter(Collider collision)
    {
       Debug.Log("Event");
    }
}