diff options
| author | sitton76 <58642183+sitton76@users.noreply.github.com> | 2025-05-20 22:35:45 -0500 |
|---|---|---|
| committer | sitton76 <58642183+sitton76@users.noreply.github.com> | 2025-05-20 22:35:45 -0500 |
| commit | c97a211a91bff70905e5525fefc5dfa669fca984 (patch) | |
| tree | a92f06215fadd4296d3f305173f0a54e362c9dc7 | |
| parent | 05d78da59ec838de4616083e7aa1c8c7a77cf59e (diff) | |
Tagged star particles in the ending scene
| -rw-r--r-- | src/engine/particles/StarEmitter.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/engine/particles/StarEmitter.cpp b/src/engine/particles/StarEmitter.cpp index 242e1a75a..7cb9d9979 100644 --- a/src/engine/particles/StarEmitter.cpp +++ b/src/engine/particles/StarEmitter.cpp @@ -1,6 +1,7 @@ #include "StarEmitter.h" +#include "port/interpolation/FrameInterpolation.h" extern "C" { #include "render_objects.h" @@ -107,9 +108,13 @@ void StarEmitter::Draw(s32 cameraId) { // func_80054BE8 D_80183E80[0] = 0; for (var_s0 = 0; var_s0 < gObjectParticle3_SIZE; var_s0++) { temp_a0 = ObjectIndex[var_s0]; + // @port: Tag the transform. + FrameInterpolation_RecordOpenChild("Ceremony Stars", (uintptr_t) &ObjectIndex[var_s0]); if ((temp_a0 != -1) && (gObjectList[temp_a0].state >= 2)) { StarEmitter::func_80054AFC(temp_a0, camera->pos); } + // @port Pop the transform id. + FrameInterpolation_RecordCloseChild(); } } |
