0
Any one can say difference between update() fn and Lateupdate ()
this code is used in game development using unity software
5 Respuestas
+ 1
Update runs once per frame. FixedUpdate can run once, zero, or several times per frame, depending on how many physics frames per second are set in the time settings, and how fast/slow the framerate is.
+ 1
LateUpdate is called after all Update functions have been called. This is useful to order script execution. For example a follow camera should always be implemented in LateUpdate because it tracks objects that might have moved inside Update.
0
you can search about these two functions in unity3d.com
0
Please mark as 👍🏼 if I helped and answered your question correctly.
0
thank u