From cbce1550ff8f30750b31be767d8fb354d338ad85 Mon Sep 17 00:00:00 2001 From: PouleyKetchoupp Date: Thu, 26 Aug 2021 10:49:12 -0700 Subject: [PATCH] Fix delta passed in _physics_process Regression due to typo in recent GDVIRTUAL_CALL change. --- scene/main/node.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/main/node.cpp b/scene/main/node.cpp index 9fce00be60b..8e173a9e2d1 100644 --- a/scene/main/node.cpp +++ b/scene/main/node.cpp @@ -58,7 +58,7 @@ void Node::_notification(int p_notification) { } break; case NOTIFICATION_PHYSICS_PROCESS: { - GDVIRTUAL_CALL(_physics_process, get_process_delta_time()); + GDVIRTUAL_CALL(_physics_process, get_physics_process_delta_time()); } break; case NOTIFICATION_ENTER_TREE: {