diff --git a/Content/Measurements.txt b/Content/Measurements.txt
index eacd9d2dfbca4a45802128b5608f7b07ea78431c..856df62bd6bd81195327a106bca8ecf0937e8c70 100644
--- a/Content/Measurements.txt
+++ b/Content/Measurements.txt
@@ -12,7 +12,7 @@ LowerArm = 26.0
//D - Distance from floor to hip
HipHeight = 102.0
-//E - Height from Hipbones to top of shoulders
+//E - Height from hipbones to top of shoulders
NeckToHip = 50.5
//F - Height from top of shoulders to slidely under the mouth
diff --git a/Source/MoCapPlugin/Private/MCPawn.cpp b/Source/MoCapPlugin/Private/MCPawn.cpp
index 24220330dee29b7ecc8316f17912134daaf42f9a..0931b168e96bc39ea431c9a6ff5cdd864c84dbb7 100644
--- a/Source/MoCapPlugin/Private/MCPawn.cpp
+++ b/Source/MoCapPlugin/Private/MCPawn.cpp
@@ -82,8 +82,7 @@ AMCPawn::AMCPawn(const FObjectInitializer& ObjectInitializer)
void AMCPawn::BeginPlay() {
Super::BeginPlay();
- bool show = true;
- if (show) {
+ if (ShowDeviceModels) {
SensorSetup.HandL.ControllerComponent->SetShowDeviceModel(true);
SensorSetup.HandR.ControllerComponent->SetShowDeviceModel(true);
for (FSensor& Tracker : SensorSetup.Trackers) {
diff --git a/Source/MoCapPlugin/Public/MCPawn.h b/Source/MoCapPlugin/Public/MCPawn.h
index 61f0944bc1c1a21db9291fc5185d8f720173fd92..066628396718347b4e57d28c726df8a68595da8f 100644
--- a/Source/MoCapPlugin/Public/MCPawn.h
+++ b/Source/MoCapPlugin/Public/MCPawn.h
@@ -28,6 +28,8 @@ public:
bool UseKneeAsFoot;
+ bool ShowDeviceModels = true;
+
UPROPERTY(BlueprintReadOnly)
FSensorSetup SensorSetup;