diff options
| author | djevangelia <263709373+djevangelia@users.noreply.github.com> | 2026-08-28 13:39:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-28 07:39:11 -0400 |
| commit | 31b5e861b2f83cea4e16753eb946b28100ff3375 (patch) | |
| tree | b79223ff239bf804fbcab20889d829e2baf731a1 /include | |
| parent | 7ddfb60b04a081efdca747d0394eee1d14926c34 (diff) | |
z_player `Player_Action_DismountLadder` (#1883)
* Player_Action_DismountLadder
* actionVar2 naming in setup
* Player_Action_DismountLadder format
---------
Co-authored-by: djevangelia <djevangelia>
Co-authored-by: Anghelo Carvajal <angheloalf95@gmail.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/z64player.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/z64player.h b/include/z64player.h index d0bd2b83c..2b1d68d08 100644 --- a/include/z64player.h +++ b/include/z64player.h @@ -636,8 +636,8 @@ typedef struct PlayerAgeProperties { /* 0xB0 */ PlayerAnimationHeader* unk_B0; /* 0xB4 */ PlayerAnimationHeader* unk_B4[4]; /* 0xC4 */ PlayerAnimationHeader* unk_C4[2]; - /* 0xCC */ PlayerAnimationHeader* unk_CC[2]; - /* 0xD4 */ PlayerAnimationHeader* unk_D4[2]; + /* 0xCC */ PlayerAnimationHeader* dismountLadderDownAnim[2]; + /* 0xD4 */ PlayerAnimationHeader* dismountLadderUpAnim[2]; } PlayerAgeProperties; // size = 0xDC typedef struct { @@ -1279,6 +1279,7 @@ typedef struct Player { s16 animDelayTimer; // Player_Action_TimeTravelEnd: Delays playing animation until finished counting down s16 csDelayTimer; // Player_Action_WaitForCutscene: Number of frames to wait before responding to a cutscene s16 playedLandingSfx; // Player_Action_BlueWarpArrive: Played sfx when landing on the ground + s16 dismountDown; // Player_Action_DismountLadder: True if player is dismounting the ladder downwards } av2; // "Action Variable 2": context dependent variable that has different meanings depending on what action is currently running /* 0xAEC */ f32 unk_AEC; /* 0xAF0 */ union { |
