mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-27 03:24:15 +01:00
use SetOrientation
This commit is contained in:
parent
8a0a29c64e
commit
024f0a5027
@ -54,10 +54,7 @@ CStinger::Init(CPed *pPed)
|
||||
m_fMax_Z = Atan2(-pPed->GetForward().x, pPed->GetForward().y) + HALFPI;
|
||||
|
||||
for (i = 0; i < NUM_STINGER_SEGMENTS; i++) {
|
||||
// shouldn't this be some inlined method? guh...
|
||||
CVector pos = pSpikes[i]->GetPosition();
|
||||
pSpikes[i]->GetMatrix().SetRotate(0.0f, 0.0f, Atan2(-pPed->GetForward().x, pPed->GetForward().y));
|
||||
pSpikes[i]->GetMatrix().Translate(pos);
|
||||
pSpikes[i]->SetOrientation(0.0f, 0.0f, Atan2(-pPed->GetForward().x, pPed->GetForward().y));
|
||||
pSpikes[i]->SetPosition(m_vPos);
|
||||
}
|
||||
|
||||
@ -216,15 +213,11 @@ CStinger::Process()
|
||||
pos2d = CVector2D(0.0f, 0.0f);
|
||||
|
||||
if (spike % 2 == 0) {
|
||||
CVector pos = pSpikes[spike]->GetPosition();
|
||||
pSpikes[spike]->GetMatrix().SetRotate(0.0f, 0.0f, angle1);
|
||||
pSpikes[spike]->GetMatrix().Translate(pos);
|
||||
pSpikes[spike]->SetOrientation(0.0f, 0.0f, angle1);
|
||||
pos3d.x += pos2d.x;
|
||||
pos3d.y += pos2d.y;
|
||||
} else {
|
||||
CVector pos = pSpikes[spike]->GetPosition();
|
||||
pSpikes[spike]->GetMatrix().SetRotate(0.0f, 0.0f, angle2);
|
||||
pSpikes[spike]->GetMatrix().Translate(pos);
|
||||
pSpikes[spike]->SetOrientation(0.0f, 0.0f, angle2);
|
||||
}
|
||||
pSpikes[spike]->SetPosition(pos3d);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user