void Start()
{
Invoke("Action", 5f);
}
void Action()
{
Debug.Log("5초가 지났습니다");
}
5초 뒤에 Action()이 활성화 된다.
if(ExampleEvent != null)
{
ExampleEvent();
}
// 아래와 동일
ExampleEvent?.Invoke();
유니티 color script로 변경 노트 (0) | 2020.12.20 |
---|---|
유니티 Singleton 싱글톤 노트 (0) | 2020.12.15 |
유니티 LayerMask 노트 (0) | 2020.10.24 |
유니티 Loading 노트 (0) | 2020.10.15 |
유니티 Mathf 함수 노트 (0) | 2020.10.05 |
댓글 영역