mirror of https://github.com/Nofated095/re-GTA.git
shoreside garage fix
This commit is contained in:
parent
bd0cd13be1
commit
30b8d7300b
|
@ -1464,8 +1464,9 @@ void CGarage::UpdateDoorsHeight()
|
||||||
void CGarage::BuildRotatedDoorMatrix(CEntity * pDoor, float fPosition)
|
void CGarage::BuildRotatedDoorMatrix(CEntity * pDoor, float fPosition)
|
||||||
{
|
{
|
||||||
float fAngle = -fPosition * HALFPI;
|
float fAngle = -fPosition * HALFPI;
|
||||||
CVector r(-Sin(fAngle) * pDoor->GetForward().x, Sin(fAngle) * pDoor->GetForward().y, Cos(fAngle) * pDoor->GetForward().z);
|
CVector up(-Sin(fAngle) * pDoor->GetForward().y, Sin(fAngle) * pDoor->GetForward().z, Cos(fAngle));
|
||||||
pDoor->GetRight() = CrossProduct(r, pDoor->GetForward());
|
pDoor->GetRight() = CrossProduct(up, pDoor->GetForward());
|
||||||
|
pDoor->GetUp() = up;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CGarage::UpdateCrusherAngle()
|
void CGarage::UpdateCrusherAngle()
|
||||||
|
|
Loading…
Reference in New Issue