diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-05-02 14:28:19 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-05-02 14:28:19 +0200 |
commit | 52390062b39a3398379934e59a15faa01613e586 (patch) | |
tree | ba7c8c16921d09a9ec1e2d33323ab142048a3290 /src/vehicles/Boat.cpp | |
parent | SetPosition, part 1 (diff) | |
download | re3-52390062b39a3398379934e59a15faa01613e586.tar re3-52390062b39a3398379934e59a15faa01613e586.tar.gz re3-52390062b39a3398379934e59a15faa01613e586.tar.bz2 re3-52390062b39a3398379934e59a15faa01613e586.tar.lz re3-52390062b39a3398379934e59a15faa01613e586.tar.xz re3-52390062b39a3398379934e59a15faa01613e586.tar.zst re3-52390062b39a3398379934e59a15faa01613e586.zip |
Diffstat (limited to '')
-rw-r--r-- | src/vehicles/Boat.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vehicles/Boat.cpp b/src/vehicles/Boat.cpp index 615511bd..5e75dc21 100644 --- a/src/vehicles/Boat.cpp +++ b/src/vehicles/Boat.cpp @@ -513,7 +513,7 @@ CBoat::ProcessControl(void) // is this some inlined CPlaceable method? CVector pos = GetPosition(); GetMatrix().RotateZ(m_fOrientation - GetForward().Heading()); - GetPosition() = pos; + GetMatrix().GetPosition() = pos; } } @@ -673,7 +673,7 @@ CBoat::BlowUpCar(CEntity *culprit) dist.Normalise(); if(GetUp().z > 0.0f) dist += GetUp(); - obj->GetPosition() += GetUp(); + obj->GetMatrix().GetPosition() += GetUp(); CWorld::Add(obj); @@ -764,7 +764,7 @@ void CBoat::Teleport(CVector v) { CWorld::Remove(this); - GetPosition() = v; + SetPosition(v); SetOrientation(0.0f, 0.0f, 0.0f); SetMoveSpeed(0.0f, 0.0f, 0.0f); SetTurnSpeed(0.0f, 0.0f, 0.0f); |