mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-12-23 16:21:50 +01:00
commit
35a2cc29f7
@ -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
Block a user