Downgrade the warning about using the game viewport client

This commit is contained in:
Steve Streeting 2023-10-06 15:10:23 +01:00
parent dbea147110
commit 91e428a7d6

View File

@ -144,7 +144,7 @@ void UStevesGameSubsystem::OnInputDetectorModeChanged(int PlayerIndex, EInputMod
auto GI = GetGameInstance(); auto GI = GetGameInstance();
auto VC = Cast<UStevesGameViewportClientBase>(GI->GetGameViewportClient()); auto VC = Cast<UStevesGameViewportClientBase>(GI->GetGameViewportClient());
if (!VC) if (!VC)
UE_LOG(LogStevesUEHelpers, Warning, TEXT("Your GameViewportClient needs to be set to a subclass of UStevesGameViewportClientBase if you want full functionality!")) UE_LOG(LogStevesUEHelpers, Log, TEXT("Consider using UStevesGameViewportClientBase for your GameViewportClient"))
bCheckedViewportClient = true; bCheckedViewportClient = true;