From 1f5f2d3ce8cc0cdfee55cdbef1397b39ee772d3d Mon Sep 17 00:00:00 2001 From: qarmin Date: Thu, 6 Jun 2019 14:33:04 +0200 Subject: [PATCH] Fix ARVRAnchor and ARVRController error spam (cherry picked from commit 3de3f87657be62965602c83e670c5b589cdfee3c) --- scene/3d/arvr_nodes.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scene/3d/arvr_nodes.cpp b/scene/3d/arvr_nodes.cpp index 17b698c1b87..c72ccf042a8 100644 --- a/scene/3d/arvr_nodes.cpp +++ b/scene/3d/arvr_nodes.cpp @@ -376,7 +376,7 @@ String ARVRController::get_configuration_warning() const { }; ARVRController::ARVRController() { - controller_id = 0; + controller_id = 1; is_active = true; button_states = 0; }; @@ -502,7 +502,7 @@ Plane ARVRAnchor::get_plane() const { }; ARVRAnchor::ARVRAnchor() { - anchor_id = 0; + anchor_id = 1; is_active = true; };