mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 05:39:01 +00:00
fix garages
This commit is contained in:
parent
fab453efde
commit
1afe36d0d0
1 changed files with 1 additions and 1 deletions
|
@ -1471,7 +1471,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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue