I know that the Node._process()
method runs whenever possible, while the Node._physics_process()
method runs at regular intervals.
Suppose we are in the following scenario (where the red lines indicate when Node._process()
is executed and the blue lines when Node._physics_process()
is executed):
https://imgur.com/2xM1Tc6
My question is: if at time t1
user input arrives, when is Node._input()
executed? at time t1
? at time t2
or maybe at time t3
?