diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2024-11-14 23:32:55 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-14 23:32:55 -0700 |
| commit | 475f167bb2803999c5116bc285601d1f9a05d7de (patch) | |
| tree | 859fec292c5c9807cc9690ebf4f0600f558b6063 /src/engine/Matrix.h | |
| parent | 4fbb031dd95f2a84e73fbca269f517e98808d293 (diff) | |
[modding] Big Update PR (#118)
* Implement kart vehicle
* Fix menu CC
* Actors
* variable framerate
* Implement Actors vector
* Fix water & scrolling textures
* Finish ACoin
* Refactor finishline
* Refactor mtx to vector
* Fix refactored screen code bugs
* Fix playlist bug
* Switching courses working now
* Fix podium ceremony
* Mostly Fix Demo and Credits
* Credits Load Actors and Textures
* Fix credits
* Formatting
* Update lus and torch
* Fix water features
* Fix crabs
* Combine function
* Fix wheels
* Add Moon Jump Cheat
* Wheel Change
* Fix smoke due to wheel change
* Fix screens for wheels
* Fix transparency
* Fix staff ghost
* Fix lakitu transition widescreen
* Rename and export credits text
* Fixes
---------
Co-authored-by: MegaMech <7255464+MegaMech@users.noreply.github.com>
Diffstat (limited to 'src/engine/Matrix.h')
| -rw-r--r-- | src/engine/Matrix.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/engine/Matrix.h b/src/engine/Matrix.h new file mode 100644 index 000000000..b0be2bf87 --- /dev/null +++ b/src/engine/Matrix.h @@ -0,0 +1,27 @@ +#ifndef _MATRIX_HEADER_ +#define _MATRIX_HEADER_ + +#include <libultraship.h> + +#include "common_structs.h" + +#ifdef __cplusplus +extern "C" { +#endif +void ClearMatrixPools(void); +void AddHudMatrix(Mat4 mtx, s32 flags); +void AddObjectMatrix(Mat4 mtx, s32 flags); +void AddEffectMatrix(Mat4 mtx, s32 flags); +void AddEffectMatrixOrtho(void); +void AddEffectMatrixFixed(s32 flags); +void SetTextMatrix(f32 arg1, f32 arg2, f32 arg3, f32 arg4); +Mtx* GetEffectMatrix(void); +void ClearHudMatrixPool(void); +void ClearEffectsMatrixPool(void); +void ClearObjectsMatrixPool(void); + +#ifdef __cplusplus +} +#endif + +#endif // _MATRIX_HEADER_
\ No newline at end of file |
