diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2024-10-15 13:09:43 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-15 13:09:43 -0600 |
| commit | a0862b6a159373f2e1554e489ecb5bb08d89654e (patch) | |
| tree | b5c33fc7f65b438ee74898dd9ed7ba25b0fa108a /src/engine/courses/Course.cpp | |
| parent | 58d56fcba848e8545052c1d85ef27d0b02841538 (diff) | |
[modding] Implement Vehicles & Fix Animations (#109)
* Train works
* Fix minimap
* Fix highway
* Fix
* Refactor train and boat
* Update
* Implement Trucks
* Fix tanker
* Finish implementing vehicles
* Fix animations
* Fix spawn players
* Fix spawn players
* Fix loading custom data
---------
Co-authored-by: MegaMech <7255464+MegaMech@users.noreply.github.com>
Diffstat (limited to 'src/engine/courses/Course.cpp')
| -rw-r--r-- | src/engine/courses/Course.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/engine/courses/Course.cpp b/src/engine/courses/Course.cpp index b3f9248bb..8c6301dc1 100644 --- a/src/engine/courses/Course.cpp +++ b/src/engine/courses/Course.cpp @@ -147,6 +147,7 @@ void Course::UpdateClouds(s32 arg0, Camera* camera) { } } +// Adjusts player speed on steep hills void Course::SomeCollisionThing(Player *player, Vec3f arg1, Vec3f arg2, Vec3f arg3, f32* arg4, f32* arg5, f32* arg6, f32* arg7) { func_8003E048(player, arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -197,12 +198,6 @@ void Course::SetStaffGhost() { } void Course::SpawnBombKarts() { -// GetWorld()->SpawnBombKarts(); -} - -World* Course::GetWorld() { - return nullptr; - //&gWorldInstance; } void Course::Waypoints(Player* player, int8_t playerId) { |
