Unity Cheat Sheet: #1
Abhishek Smith
Building Outscal | Land Jobs in the gaming industry | EA, Epic Games, TCS, | CMU, IIT K
Initialization & Lifecycle
Awake()
: First! Before ANY Start()OnEnable()
: Object/Component activationStart()
: Before first frame, after ALL Awake()OnDisable()
: Component deactivationOnDestroy()
: Final cleanupShow More