1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

Revert "Add Node processing and physics processing cumulative (as opposed to delta) time"

This commit is contained in:
Juan Linietsky
2021-08-22 08:21:34 -03:00
committed by GitHub
parent 51800eebc6
commit 1990721d1b
5 changed files with 2 additions and 80 deletions

View File

@@ -412,7 +412,6 @@ bool SceneTree::physics_process(double p_time) {
MainLoop::physics_process(p_time);
physics_process_time = p_time;
physics_total_time += p_time;
emit_signal(SNAME("physics_frame"));
@@ -439,7 +438,6 @@ bool SceneTree::process(double p_time) {
MainLoop::process(p_time);
process_time = p_time;
process_total_time += p_time;
if (multiplayer_poll) {
multiplayer->poll();