mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-11 07:41:36 +00:00
Crawlas now use only one state for looking each
This commit is contained in:
parent
7964f3b044
commit
965bd2f694
3 changed files with 2 additions and 8 deletions
|
@ -3811,7 +3811,6 @@ static const char *const STATE_LIST[] = { // array length left dynamic for sanit
|
||||||
|
|
||||||
// Blue Crawla
|
// Blue Crawla
|
||||||
"S_POSS_STND",
|
"S_POSS_STND",
|
||||||
"S_POSS_STND2",
|
|
||||||
"S_POSS_RUN1",
|
"S_POSS_RUN1",
|
||||||
"S_POSS_RUN2",
|
"S_POSS_RUN2",
|
||||||
"S_POSS_RUN3",
|
"S_POSS_RUN3",
|
||||||
|
@ -3821,7 +3820,6 @@ static const char *const STATE_LIST[] = { // array length left dynamic for sanit
|
||||||
|
|
||||||
// Red Crawla
|
// Red Crawla
|
||||||
"S_SPOS_STND",
|
"S_SPOS_STND",
|
||||||
"S_SPOS_STND2",
|
|
||||||
"S_SPOS_RUN1",
|
"S_SPOS_RUN1",
|
||||||
"S_SPOS_RUN2",
|
"S_SPOS_RUN2",
|
||||||
"S_SPOS_RUN3",
|
"S_SPOS_RUN3",
|
||||||
|
|
|
@ -150,8 +150,7 @@ state_t states[NUMSTATES] =
|
||||||
{SPR_PLAY, 34, 1, {NULL}, 0, 24, S_PLAY_SIGN}, // S_PLAY_SIGN
|
{SPR_PLAY, 34, 1, {NULL}, 0, 24, S_PLAY_SIGN}, // S_PLAY_SIGN
|
||||||
|
|
||||||
// Blue Crawla
|
// Blue Crawla
|
||||||
{SPR_POSS, 0, 5, {A_Look}, 0, 0, S_POSS_STND2}, // S_POSS_STND
|
{SPR_POSS, 0, 5, {A_Look}, 0, 0, S_POSS_STND}, // S_POSS_STND
|
||||||
{SPR_POSS, 0, 5, {A_Look}, 0, 0, S_POSS_STND}, // S_POSS_STND2
|
|
||||||
{SPR_POSS, 0, 3, {A_Chase}, 0, 0, S_POSS_RUN2}, // S_POSS_RUN1
|
{SPR_POSS, 0, 3, {A_Chase}, 0, 0, S_POSS_RUN2}, // S_POSS_RUN1
|
||||||
{SPR_POSS, 1, 3, {A_Chase}, 0, 0, S_POSS_RUN3}, // S_POSS_RUN2
|
{SPR_POSS, 1, 3, {A_Chase}, 0, 0, S_POSS_RUN3}, // S_POSS_RUN2
|
||||||
{SPR_POSS, 2, 3, {A_Chase}, 0, 0, S_POSS_RUN4}, // S_POSS_RUN3
|
{SPR_POSS, 2, 3, {A_Chase}, 0, 0, S_POSS_RUN4}, // S_POSS_RUN3
|
||||||
|
@ -160,8 +159,7 @@ state_t states[NUMSTATES] =
|
||||||
{SPR_POSS, 5, 3, {A_Chase}, 0, 0, S_POSS_RUN1}, // S_POSS_RUN6
|
{SPR_POSS, 5, 3, {A_Chase}, 0, 0, S_POSS_RUN1}, // S_POSS_RUN6
|
||||||
|
|
||||||
// Red Crawla
|
// Red Crawla
|
||||||
{SPR_SPOS, 0, 5, {A_Look}, 0, 0, S_SPOS_STND2}, // S_SPOS_STND
|
{SPR_SPOS, 0, 5, {A_Look}, 0, 0, S_SPOS_STND}, // S_SPOS_STND
|
||||||
{SPR_SPOS, 0, 5, {A_Look}, 0, 0, S_SPOS_STND}, // S_SPOS_STND2
|
|
||||||
{SPR_SPOS, 0, 1, {A_Chase}, 0, 0, S_SPOS_RUN2}, // S_SPOS_RUN1
|
{SPR_SPOS, 0, 1, {A_Chase}, 0, 0, S_SPOS_RUN2}, // S_SPOS_RUN1
|
||||||
{SPR_SPOS, 1, 1, {A_Chase}, 0, 0, S_SPOS_RUN3}, // S_SPOS_RUN2
|
{SPR_SPOS, 1, 1, {A_Chase}, 0, 0, S_SPOS_RUN3}, // S_SPOS_RUN2
|
||||||
{SPR_SPOS, 2, 1, {A_Chase}, 0, 0, S_SPOS_RUN4}, // S_SPOS_RUN3
|
{SPR_SPOS, 2, 1, {A_Chase}, 0, 0, S_SPOS_RUN4}, // S_SPOS_RUN3
|
||||||
|
|
|
@ -663,7 +663,6 @@ typedef enum state
|
||||||
|
|
||||||
// Blue Crawla
|
// Blue Crawla
|
||||||
S_POSS_STND,
|
S_POSS_STND,
|
||||||
S_POSS_STND2,
|
|
||||||
S_POSS_RUN1,
|
S_POSS_RUN1,
|
||||||
S_POSS_RUN2,
|
S_POSS_RUN2,
|
||||||
S_POSS_RUN3,
|
S_POSS_RUN3,
|
||||||
|
@ -673,7 +672,6 @@ typedef enum state
|
||||||
|
|
||||||
// Red Crawla
|
// Red Crawla
|
||||||
S_SPOS_STND,
|
S_SPOS_STND,
|
||||||
S_SPOS_STND2,
|
|
||||||
S_SPOS_RUN1,
|
S_SPOS_RUN1,
|
||||||
S_SPOS_RUN2,
|
S_SPOS_RUN2,
|
||||||
S_SPOS_RUN3,
|
S_SPOS_RUN3,
|
||||||
|
|
Loading…
Reference in a new issue