게임/Unity3D
[Unity3D] Script 실행 순서
Binceline
2012. 9. 27. 12:33
- All Awake calls
- All Start Calls
- while (stepping towards variable delta time)
- All FixedUpdate functions
- Physics simulation
- OnEnter/Exit/Stay trigger functions
- OnEnter/Exit/Stay collision functions
- Rigidbody interpolation applies transform.position and rotation
- OnMouseDown/OnMouseUp etc. events
- All Update functions
- Animations are advanced, blended and applied to transform
- All LateUpdate functions
- Rendering
반응형