1
This commit is contained in:
parent
f67ac80f52
commit
4d5cfc4928
@ -56,6 +56,7 @@ enum GasMode_e
|
|||||||
GasInactive = 0,
|
GasInactive = 0,
|
||||||
GasWaiting = 1,
|
GasWaiting = 1,
|
||||||
GasMoving = 2,
|
GasMoving = 2,
|
||||||
|
GasJump = 3
|
||||||
};
|
};
|
||||||
|
|
||||||
enum ActionType_e
|
enum ActionType_e
|
||||||
|
@ -23,6 +23,7 @@ enum HumanStatus
|
|||||||
HS_AlreadyProcNewBieLogic = 6,
|
HS_AlreadyProcNewBieLogic = 6,
|
||||||
HS_LastAndroid = 7,
|
HS_LastAndroid = 7,
|
||||||
HS_DisableAttack = 8,
|
HS_DisableAttack = 8,
|
||||||
|
HS_Fly = 9,
|
||||||
HS_End
|
HS_End
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -991,6 +991,9 @@ void Room::UpdateGas()
|
|||||||
case GasMoving:
|
case GasMoving:
|
||||||
UpdateGasMoving();
|
UpdateGasMoving();
|
||||||
break;
|
break;
|
||||||
|
case GasJump:
|
||||||
|
UpdateGasJump();
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
#if 1
|
#if 1
|
||||||
if (GetRoomMode() == kZombieMode) {
|
if (GetRoomMode() == kZombieMode) {
|
||||||
@ -1146,6 +1149,11 @@ void Room::UpdateGasMoving()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Room::UpdateGasJump()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
bool Room::GenSmallCircle(a8::Vec2 big_circle_pos, float big_circle_rad, float small_circle_rad,
|
bool Room::GenSmallCircle(a8::Vec2 big_circle_pos, float big_circle_rad, float small_circle_rad,
|
||||||
a8::Vec2& out_pos)
|
a8::Vec2& out_pos)
|
||||||
{
|
{
|
||||||
|
@ -161,6 +161,7 @@ private:
|
|||||||
void UpdateGasInactive();
|
void UpdateGasInactive();
|
||||||
void UpdateGasWaiting();
|
void UpdateGasWaiting();
|
||||||
void UpdateGasMoving();
|
void UpdateGasMoving();
|
||||||
|
void UpdateGasJump();
|
||||||
bool GenSmallCircle(a8::Vec2 big_circle_pos, float big_circle_rad, float small_circle_rad,
|
bool GenSmallCircle(a8::Vec2 big_circle_pos, float big_circle_rad, float small_circle_rad,
|
||||||
a8::Vec2& out_pos);
|
a8::Vec2& out_pos);
|
||||||
void MatchTeam(Human* hum);
|
void MatchTeam(Human* hum);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user