diff --git a/Content/Pawn/BP_RWTHVRPawn_Default.uasset b/Content/Pawn/BP_RWTHVRPawn_Default.uasset index 6171681e8ed6e3a4eae1879d475dac62e33c4c99..cb05e67f79561281c52e04b21e9bd67726871dbb 100644 Binary files a/Content/Pawn/BP_RWTHVRPawn_Default.uasset and b/Content/Pawn/BP_RWTHVRPawn_Default.uasset differ diff --git a/Source/RWTHVRToolkit/Private/Pawn/RWTHVRPawn.cpp b/Source/RWTHVRToolkit/Private/Pawn/RWTHVRPawn.cpp index 9801f83893cb31dec6b04d71c4f26e3696c2234b..1de02ebfbce5e4710d9500f43616bbcf0c5ac4d1 100644 --- a/Source/RWTHVRToolkit/Private/Pawn/RWTHVRPawn.cpp +++ b/Source/RWTHVRToolkit/Private/Pawn/RWTHVRPawn.cpp @@ -79,6 +79,10 @@ void ARWTHVRPawn::NotifyControllerChanged() { Super::NotifyControllerChanged(); + + UE_LOG(Toolkit, Display, TEXT("ARWTHVRPawn: Player Controller has changed, trying to change DCRA attachment if possible...")); + + // Only do this for all local controlled pawns if (IsLocallyControlled()) { diff --git a/Source/RWTHVRToolkitEditor/Private/Interaction/IntenSelectableCylinderScoringVisualizer.cpp b/Source/RWTHVRToolkitEditor/Private/Interaction/IntenSelectableCylinderScoringVisualizer.cpp index 076cf8e42e290a4bfb229c3b19c029f664ecdde8..e9988eaea601d071c86f2b6409f96fa7417ef894 100644 --- a/Source/RWTHVRToolkitEditor/Private/Interaction/IntenSelectableCylinderScoringVisualizer.cpp +++ b/Source/RWTHVRToolkitEditor/Private/Interaction/IntenSelectableCylinderScoringVisualizer.cpp @@ -1,6 +1,8 @@ #include "Interaction/IntenSelectableCylinderScoringVisualizer.h" #include "ActorEditorUtils.h" #include "SceneManagement.h" +#include "Editor.h" + IMPLEMENT_HIT_PROXY(FCylinderPointProxy, HComponentVisProxy);