summaryrefslogtreecommitdiffstats
path: root/scene/main/node.cpp
diff options
context:
space:
mode:
authorRicardo Buring <ricardo.buring@gmail.com>2024-07-07 16:48:17 +0200
committerRicardo Buring <ricardo.buring@gmail.com>2024-07-07 16:48:17 +0200
commitceadbaa29948be354eb20d75cf9dd1ebbda32260 (patch)
treec1b37fd6bd540f6b1bcc001fe4741efc57b7536b /scene/main/node.cpp
parentf3af22b10b1e64146d48be7726f6395c9a4185e9 (diff)
downloadredot-engine-ceadbaa29948be354eb20d75cf9dd1ebbda32260.tar.gz
Fixed Timestep Interpolation: Fix behaviour on pause
Co-authored-by: lawnjelly <lawnjelly@gmail.com>
Diffstat (limited to 'scene/main/node.cpp')
-rw-r--r--scene/main/node.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp
index 5bbf8ebff4..0396f3ab4a 100644
--- a/scene/main/node.cpp
+++ b/scene/main/node.cpp
@@ -177,6 +177,12 @@ void Node::_notification(int p_notification) {
}
} break;
+ case NOTIFICATION_PAUSED: {
+ if (is_physics_interpolated_and_enabled() && is_inside_tree()) {
+ reset_physics_interpolation();
+ }
+ } break;
+
case NOTIFICATION_PATH_RENAMED: {
if (data.path_cache) {
memdelete(data.path_cache);