mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-19 11:09:22 +00:00
Fix aiming with minigun and flamethrower with PC controls
This commit is contained in:
parent
5e34b1efcf
commit
aec797671e
2 changed files with 9 additions and 1 deletions
|
@ -352,6 +352,14 @@ CPed::SetAttack(CEntity *victim)
|
|||
SetAimFlag(m_fRotationCur);
|
||||
}
|
||||
}
|
||||
#ifdef FIX_BUGS
|
||||
// fix aiming for flamethrower and minigun while using PC controls
|
||||
else if (curWeapon->m_AnimToPlay == ASSOCGRP_FLAMETHROWER && TheCamera.Cams[0].Using3rdPersonMouseCam() && this == FindPlayerPed())
|
||||
{
|
||||
SetAimFlag(m_fRotationCur);
|
||||
((CPlayerPed*)this)->m_fFPSMoveHeading = TheCamera.Find3rdPersonQuickAimPitch();
|
||||
}
|
||||
#endif
|
||||
if (m_nPedState == PED_ATTACK) {
|
||||
bIsAttacking = true;
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue