mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-10 15:21:43 +00:00
Mantis 0000870:
o Changed b_infportal.mdl and b_infportalt.mdl to reflect the new IP o Added animation references to correctly reflect the new IP o Made the health circle around the new IP smaller than the previous one git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@67 67975925-1194-0748-b3d5-c16f83f1a3a1
This commit is contained in:
parent
4e5afd8d88
commit
20bc86ffa6
5 changed files with 16 additions and 1 deletions
Binary file not shown.
Binary file not shown.
|
@ -1839,6 +1839,18 @@ int AvHInfantryPortal::GetIdle2Animation() const
|
|||
return 2;
|
||||
}
|
||||
|
||||
// tankefugl:
|
||||
int AvHInfantryPortal::GetDeployAnimation() const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int AvHInfantryPortal::GetSpawnAnimation() const
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
// :tankefugl
|
||||
|
||||
const int kCommandStationExitAnimation = 12;
|
||||
|
||||
AvHCommandStation::AvHCommandStation() : AvHMarineBaseBuildable(TECH_COMMAND_CENTER, BUILD_COMMANDSTATION, kwsTeamCommand, AVH_USER3_COMMANDER_STATION)
|
||||
|
|
|
@ -309,6 +309,9 @@ public:
|
|||
virtual int GetIdle1Animation() const;
|
||||
virtual int GetIdle2Animation() const;
|
||||
|
||||
virtual int GetDeployAnimation() const;
|
||||
virtual int GetSpawnAnimation() const;
|
||||
|
||||
protected:
|
||||
|
||||
virtual void ResetReinforcingPlayer(bool inSuccess);
|
||||
|
|
|
@ -560,7 +560,7 @@ bool AvHSHUGetDrawRingsForUser3(AvHUser3 inUser3, float& outScalar)
|
|||
break;
|
||||
|
||||
case AVH_USER3_INFANTRYPORTAL:
|
||||
theScalar = 1.3f;
|
||||
theScalar = 1.0f;
|
||||
theDrawRings = true;
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue