when using a fixed update, does on_input
fire on update
or on fixed_update
time intervals?
Have a look at this manual section and see if it answers your question:
If I understand it correctly the answer is “neither”, it happens before update.
Correct. Input is a separate part of the engine main loop and doesn’t really have anything to do with the fixed update.
1 Like
this manual section
i checked before making the post, and that part of the manual didn’t have much information on fixed update besides a single box of text, unlike the diagrams the rest of the functions get
it happens before update.
i meant it for update frequency purposes.