1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-09-28 22:36:19 +00:00

fix garages

This commit is contained in:
Nikolay Korolev 2020-05-12 14:08:42 +03:00 committed by GitHub
parent 30b3f34d91
commit 4b566c26a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1423,7 +1423,7 @@ void CGarage::UpdateDoorsHeight()
void CGarage::BuildRotatedDoorMatrix(CEntity * pDoor, float fPosition)
{
float fAngle = -fPosition * HALFPI;
CVector up(-Sin(fAngle) * pDoor->GetForward().y, Sin(fAngle) * pDoor->GetForward().z, Cos(fAngle));
CVector up(-Sin(fAngle) * pDoor->GetForward().y, Sin(fAngle) * pDoor->GetForward().x, Cos(fAngle));
pDoor->GetRight() = CrossProduct(up, pDoor->GetForward());
pDoor->GetUp() = up;
}