Different Update()s and why.

PHOTO EMBED

Sun Aug 08 2021 20:51:51 GMT+0000 (Coordinated Universal Time)

Saved by @thepapayaki #c#

// Regular
void Update(){}

//When calculating physics
void FixedUpdate(){}

// When re-positioning camera
void LateUpdate(){}
content_copyCOPY