유니티 생명 주기 Life Cycle 간단 설명


유니티 생명 주기 Life Cycle 간단 설명

using UnityEngine; public class UnityLiftCycle : MonoBehaviour { void Awake() { Debug.Log("1"); } void OnEnable() { Debug.Log("2"); } void Start() { Debug.Log("3"); } void FixedUpdate() { Debug.Log("4"); } void OnTriggerEnter(Collider other) { Debug.Log("5"); } void OnCollisionEnter(Collision other) { Debug.Log("6"); } void Update() { Debug.Log("7"); } void LateUpdate() { Debug.Log("8"); } void ..


원문링크 : 유니티 생명 주기 Life Cycle 간단 설명