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/core/re3.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 'src/core/re3.cpp')
-rw-r--r-- | src/core/re3.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp index 5ef3c036..e6409523 100644 --- a/src/core/re3.cpp +++ b/src/core/re3.cpp @@ -116,11 +116,11 @@ SpawnCar(int id) DebugMenuEntrySetAddress(carCol2, &v->m_currentColour2); if(CModelInfo::IsBoatModel(id)) - v->GetPosition() = TheCamera.GetPosition() + TheCamera.GetForward()*15.0f; + v->SetPosition(TheCamera.GetPosition() + TheCamera.GetForward()*15.0f); else - v->GetPosition() = ThePaths.m_pathNodes[node].pos; + v->SetPosition(ThePaths.m_pathNodes[node].pos); - v->GetPosition().z += 4.0f; + v->GetMatrix().GetPosition().z += 4.0f; v->SetOrientation(0.0f, 0.0f, 3.49f); v->SetStatus(STATUS_ABANDONED); v->m_nDoorLock = CARLOCK_UNLOCKED; |