From a9a2e30afd6f74516f43d982cd312393bd1128c8 Mon Sep 17 00:00:00 2001 From: Lab1 <account@vr.rwth-aachen.de> Date: Sun, 22 Jan 2023 21:07:37 +0100 Subject: [PATCH] improve some default values --- Source/VAPlugin/Public/VAReceiverActor.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/VAPlugin/Public/VAReceiverActor.h b/Source/VAPlugin/Public/VAReceiverActor.h index 4fea712..ee7b7d5 100644 --- a/Source/VAPlugin/Public/VAReceiverActor.h +++ b/Source/VAPlugin/Public/VAReceiverActor.h @@ -44,7 +44,7 @@ protected: // Check if should ask for debug Mode? UPROPERTY(EditAnywhere, meta = (DisplayName = "Ask for Debug mode?", Category = "General Settings")) - bool bAskForDebugMode = true; + bool bAskForDebugMode = false; // Check if should try to use Python Automatic Remote star UPROPERTY(EditAnywhere, meta = (DisplayName = "Use Automatic Remote VA Start via Python?", Category = "General Settings")) @@ -65,11 +65,11 @@ protected: // Port for manual input UPROPERTY(EditAnywhere, meta = (Category = "Connection", DisplayName = "Always reconnect to VAServer when this level is started?")) - bool bReconnecToVAServer = false; + bool bReconnecToVAServer = true; // Read in File? UPROPERTY(EditAnywhere, meta = (DisplayName = "Read an initial mapping file?", Category = "Directivity Manager")) - bool bReadInitialMappingFile = true; + bool bReadInitialMappingFile = false; // File name of the Directivity mapping file (e.g., for chaning directivities dynamically based on phonemes) // if not specified it will be ignored. -- GitLab