본문 바로가기
Unity/Activities

[유니티] 업데이트 순서

by 김 원 2024. 4. 8.

# 업데이트 순서

https://docs.unity3d.com/kr/current/Manual/ExecutionOrder.html


# Awake() / Start() 차이점

- 공통으로 Initalization 구역으로 스크립트의 초기화에 이용된다.

- 호출의 순서는 Awake() -> Start()로 호출된다.

 


참고 자료 : https://docs.unity3d.com/kr/current/Manual/ExecutionOrder.html

참고 자료 : https://stickode.tistory.com/567

'Unity > Activities' 카테고리의 다른 글

[유니티] 데칼  (0) 2024.04.08
[유니티] 오브젝트 생성 원점 설정  (0) 2024.04.08
[유니티] parent 대입 경고  (0) 2024.04.08
[유니티] UI/ IPointer  (0) 2024.04.08
[유니티] 싱글톤  (0) 2024.04.08