From 75a3f4a244ae1edcf4eb7dd38419d5278255d192 Mon Sep 17 00:00:00 2001 From: Ricardo Sanchez-Saez Date: Tue, 13 Jan 2026 11:16:37 -0800 Subject: [PATCH] Fix XROrigin3D scale warning --- scene/3d/xr/xr_nodes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/3d/xr/xr_nodes.cpp b/scene/3d/xr/xr_nodes.cpp index 6d58e0374b9..d0da5c9287e 100644 --- a/scene/3d/xr/xr_nodes.cpp +++ b/scene/3d/xr/xr_nodes.cpp @@ -695,7 +695,7 @@ PackedStringArray XROrigin3D::get_configuration_warnings() const { warnings.push_back(RTR("XROrigin3D requires an XRCamera3D child node.")); } - if (get_scale().is_equal_approx(Vector3(1, 1, 1))) { + if (!get_scale().is_equal_approx(Vector3(1, 1, 1))) { warnings.push_back(RTR("Changing the scale on the XROrigin3D node is not supported. Change the World Scale instead.")); } }