You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the updater-refactoring, several framework-internal things have changed. Among others, imgui_manager's internal structure has changed and some code got moved from its render() to its update().
With the varying_update_timer, the order of update/render-invocations is well defined and has always a 1:1 ratio:
With fixed_update_timer, there is no fixed order or relation between the two. update() can be configured to run e.g. 60 times a second (i.e. fixed update rate of 60Hz), and render() is invoked as often as possible. E.g. like follows:
During the updater-refactoring, several framework-internal things have changed. Among others,
imgui_manager
's internal structure has changed and some code got moved from itsrender()
to itsupdate()
.With the
varying_update_timer
, the order ofupdate
/render
-invocations is well defined and has always a 1:1 ratio:With
fixed_update_timer
, there is no fixed order or relation between the two.update()
can be configured to run e.g. 60 times a second (i.e. fixed update rate of 60Hz), andrender()
is invoked as often as possible. E.g. like follows:The text was updated successfully, but these errors were encountered: