Practice free →
Home › Per Godot docs, the per-frame UPDATE callback is…

Per Godot docs, the per-frame UPDATE callback is `_process(delta)` and the per-physics-tick callback is which?

A_physics_process(delta)
B_input(event) callback
C_ready() one-time setup
D_draw() canvas method
Answer & Solution
Correct answer: A. _physics_process(delta)
Godot docs (Idle vs Physics): _process runs each frame; _physics_process runs at the fixed physics tick (default 60 Hz). Use the latter for forces.
Solve this in the app — Practice practice & 24k+ MCQs →
Related questions