Skip to content
Snippets Groups Projects
Commit 05538d27 authored by Ali Can Demiralp's avatar Ali Can Demiralp
Browse files

Merge branch 'develop'

parents 74c9972c 986c727e
No related branches found
No related tags found
No related merge requests found
......@@ -5,12 +5,12 @@
void ADisplayClusterPawnCAVE::BeginPlay()
{
Flystick = IDisplayCluster::Get().GetGameMgr()->GetNodeById("flystick_tracked");
Flystick = IDisplayCluster::Get().GetGameMgr()->GetNodeById("flystick");
}
void ADisplayClusterPawnCAVE::MoveForward(float value)
{
if (!Flystick)
Flystick = IDisplayCluster::Get().GetGameMgr()->GetNodeById("flystick_tracked");
Flystick = IDisplayCluster::Get().GetGameMgr()->GetNodeById("flystick");
if (!Flystick || value == 0.0f)
return;
AddMovementInput(Flystick->GetForwardVector(), value);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment