- Edited
If physics process is fixed 60 fps, can I use an integer variable being increased 1 by 1 to measure at what part of the 60 frames we are. If _physics_process is fixed 60 fps can I do something like this.
var time=0
_physics_process(_delta):
time+=1
if(time==60):
print("1 second elapsed")
time=0