From d0c248c548a1efd0df21df032139ab9dd06ff9a0 Mon Sep 17 00:00:00 2001 From: David Gilbert <gilbert@vr.rwth-aachen.de> Date: Wed, 19 Jun 2024 15:08:45 +0200 Subject: [PATCH] fix(interaction): Downgrades intenselect error to a warning. --- Source/RWTHVRToolkit/Private/Pawn/IntenSelectComponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/RWTHVRToolkit/Private/Pawn/IntenSelectComponent.cpp b/Source/RWTHVRToolkit/Private/Pawn/IntenSelectComponent.cpp index 385e2b2e..7df50eca 100644 --- a/Source/RWTHVRToolkit/Private/Pawn/IntenSelectComponent.cpp +++ b/Source/RWTHVRToolkit/Private/Pawn/IntenSelectComponent.cpp @@ -93,7 +93,7 @@ void UIntenSelectComponent::InitInputBindings() if (!EI) { const FString Message = "Could not get PlayerInputComponent for IntenSelect Input Assignment!"; - UE_LOG(LogTemp, Error, TEXT("%s"), *Message) + UE_LOG(LogTemp, Warning, TEXT("%s"), *Message) return; } -- GitLab