using UnityEngine;
using System.Collections;
public class NewBehaviourScript : MonoBehaviour {
float cnt=0;
void Reset(){
Debug.Log("Reset");
}
void Awake(){
Debug.Log("Awake");
}
void OnEnable(){
Debug.Log("OnEnable");
}
void Start(){
Debug.Log("start");
}
void FixedUpdate(){
Debug.Log("FixedUpdate");
}
void Update (){
Debug.Log("Update");
if ((cnt+=Time.deltaTime) >1.0f) Destroy(this.gameObject);
}
void LateUpdate(){
Debug.Log("LastUpdate");
}
void OnWillRenderObject(){
Debug.Log("OnWillRenderObject");
}
void OnGUI(){
Debug.Log("OnGUI");
}
void OnDisable(){
Debug.Log("OnDisable");
}
void OnDestroy(){
Debug.Log("OnDestroy");
}
}
1초 동안 함수를 호출 했을때 띄워지는 호출 순서
[Unity] 자주쓰는 함수_(3) GUI, OnGUI, 3D Text (0) | 2023.07.19 |
---|---|
[Unity] 자주쓰는 함수_(2) 충돌 (0) | 2023.07.19 |
[Unity] 자주쓰는 함수_(1) Player 움직임 (0) | 2023.07.19 |
[Unity] Unity 3D 최적화 하기 (0) | 2023.07.19 |
[Unity] 유니티 게임엔진의 탄생 (0) | 2023.07.19 |