From 96c75f1d10af6906d472252fe020b1c842015e28 Mon Sep 17 00:00:00 2001 From: Marcel Admiraal Date: Sat, 16 Jul 2022 16:07:03 +0100 Subject: Set initial SceneTree processes times to 0.0 --- scene/main/scene_tree.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scene/main/scene_tree.h b/scene/main/scene_tree.h index a34aa8e2cd..a512feacc8 100644 --- a/scene/main/scene_tree.h +++ b/scene/main/scene_tree.h @@ -90,8 +90,8 @@ private: Window *root = nullptr; uint64_t tree_version = 1; - double physics_process_time = 1.0; - double process_time = 1.0; + double physics_process_time = 0.0; + double process_time = 0.0; bool accept_quit = true; bool quit_on_go_back = true; -- cgit v1.2.3