summaryrefslogtreecommitdiffstats
path: root/scene/main/node.cpp
diff options
context:
space:
mode:
authorRicardo Buring <ricardo.buring@gmail.com>2024-04-05 10:18:00 +0200
committerRicardo Buring <ricardo.buring@gmail.com>2024-04-05 10:30:19 +0200
commite6b91612461f1e481b35349d8301339e2791af48 (patch)
tree4044dc01d8d3873c1efb3e5665263fd528c8a9fc /scene/main/node.cpp
parent79de2eaae7fb3bb8f13031ac2ec9b19128b6f471 (diff)
downloadredot-engine-e6b91612461f1e481b35349d8301339e2791af48.tar.gz
Fix per-node physics interpolation setting
The per-node default should be ON.
Diffstat (limited to 'scene/main/node.cpp')
-rw-r--r--scene/main/node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp
index 11c200064e..beb2583b61 100644
--- a/scene/main/node.cpp
+++ b/scene/main/node.cpp
@@ -3780,7 +3780,7 @@ void Node::_bind_methods() {
ADD_PROPERTY(PropertyInfo(Variant::INT, "process_thread_messages", PROPERTY_HINT_FLAGS, "Process,Physics Process"), "set_process_thread_messages", "get_process_thread_messages");
ADD_GROUP("Physics Interpolation", "physics_interpolation_");
- ADD_PROPERTY(PropertyInfo(Variant::INT, "physics_interpolation_mode", PROPERTY_HINT_ENUM, "Inherit,Off,On"), "set_physics_interpolation_mode", "get_physics_interpolation_mode");
+ ADD_PROPERTY(PropertyInfo(Variant::INT, "physics_interpolation_mode", PROPERTY_HINT_ENUM, "Inherit,On,Off"), "set_physics_interpolation_mode", "get_physics_interpolation_mode");
ADD_GROUP("Auto Translate", "auto_translate_");
ADD_PROPERTY(PropertyInfo(Variant::INT, "auto_translate_mode", PROPERTY_HINT_ENUM, "Inherit,Always,Disabled"), "set_auto_translate_mode", "get_auto_translate_mode");
@@ -3833,7 +3833,7 @@ Node::Node() {
data.unhandled_input = false;
data.unhandled_key_input = false;
- data.physics_interpolated = false;
+ data.physics_interpolated = true;
data.parent_owned = false;
data.in_constructor = true;