summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamille Mohr-Daurat <pouleyKetchoup@gmail.com>2021-08-26 11:27:38 -0700
committerGitHub <noreply@github.com>2021-08-26 11:27:38 -0700
commitadafc509f33f83928881903f9fcba0eb6540fa96 (patch)
tree4d15aa73771584f7a38d96dcf5067d97923b9ec6
parent98d55ba66f16ce5b5a5340c62a65865a45337aed (diff)
parentcbce1550ff8f30750b31be767d8fb354d338ad85 (diff)
Merge pull request #52132 from nekomatata/fix-physics-process-delta
Fix delta passed in _physics_process
-rw-r--r--scene/main/node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp
index 6ef2cdb175..cafa4fa2d2 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: {