
Originally Posted by
steventhedon187
in WarZ.sln
HUD_TPSGame.cpp
Search for:
PHP Code:
if(pl->m_isFinishedAiming && !pl->m_isInScope)
{
if(Keyboard->WasPressed(kbsLeftShift))
{
R3D_SWAP(g_CameraLeftSideSource, g_CameraLeftSideTarget);
g_CameraLeftSideLerp = 0.0f;
}
}
change to:
PHP Code:
//if(pl->m_isFinishedAiming && !pl->m_isInScope)
//{
if(Keyboard->WasPressed(kbsLeftAlt)) //Here you put the key you want
{
R3D_SWAP(g_CameraLeftSideSource, g_CameraLeftSideTarget);
g_CameraLeftSideLerp = 0.0f;
}
//}
hope this gonna help you to get it work