Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
fx_api.c File Reference

Go to the source code of this file.

Functions

void show_start_recovery_shimmer (f32 x, f32 y, f32 z, s32 amt)
 
void show_recovery_shimmer (f32 x, f32 y, f32 z, s32 amt)
 

Variables

EvtScript EVS_UpdateMotionBlurParams
 

Function Documentation

◆ show_start_recovery_shimmer()

void show_start_recovery_shimmer ( f32 x,
f32 y,
f32 z,
s32 amt )

Definition at line 4 of file fx_api.c.

4 {
5 fx_stars_shimmer(1, x, y, z, amt + 30, amt + 30, (amt / 2) + 10, 30);
6}

◆ show_recovery_shimmer()

void show_recovery_shimmer ( f32 x,
f32 y,
f32 z,
s32 amt )

Definition at line 8 of file fx_api.c.

8 {
9 fx_stars_shimmer(2, x, y, z, amt + 30, amt + 30, (amt / 2) + 10, 30);
10}

Variable Documentation

◆ EVS_UpdateMotionBlurParams

EvtScript EVS_UpdateMotionBlurParams
Initial value:
= {
}
ApiStatus InterpMotionBlurParams(Evt *script, b32 isInitialCall)
#define End
Signals the end of EVT script data. A script missing this will likely crash on load.
Definition macros.h:213
#define Call(FUNC, ARGS...)
Calls a given C EVT API function with any number of arguments.
Definition macros.h:576
#define Return
Kills the current EVT thread.
Definition macros.h:217

Definition at line 183 of file fx_api.c.

183 {
185 Return
186 End
187};