mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-21 14:31:17 +00:00
Player Docs: public facing csAction things (#1561)
* name public csAction functions * format * adjust function comment * format
This commit is contained in:
parent
3475651701
commit
4908b8b37c
64 changed files with 359 additions and 317 deletions
|
@ -1074,7 +1074,7 @@ void EnSkj_SetupMaskTrade(EnSkj* this) {
|
|||
void EnSkj_StartMaskTrade(EnSkj* this, PlayState* play) {
|
||||
u8 sp1F = Message_GetState(&play->msgCtx);
|
||||
|
||||
func_8002DF54(play, &this->actor, PLAYER_CSACTION_1);
|
||||
Player_SetCsActionWithHaltedActors(play, &this->actor, PLAYER_CSACTION_1);
|
||||
if ((sp1F == TEXT_STATE_DONE) && Message_ShouldAdvance(play)) {
|
||||
EnSkj_JumpFromStump(this);
|
||||
}
|
||||
|
@ -1172,7 +1172,7 @@ void EnSkj_SetupWaitForMaskTextClear(EnSkj* this) {
|
|||
|
||||
void EnSkj_WaitForMaskTextClear(EnSkj* this, PlayState* play) {
|
||||
if ((Message_GetState(&play->msgCtx) == TEXT_STATE_DONE) && Message_ShouldAdvance(play)) {
|
||||
func_8002DF54(play, &this->actor, PLAYER_CSACTION_7);
|
||||
Player_SetCsActionWithHaltedActors(play, &this->actor, PLAYER_CSACTION_7);
|
||||
this->backflipFlag = 1;
|
||||
EnSkj_Backflip(this);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue