mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-04-28 14:25:07 -06:00
Update unit strip indices for art2432
This commit is contained in:
parent
dfc9e088f8
commit
3f83856115
@ -11,9 +11,9 @@ char *AndyGob::GetName()
|
||||
}
|
||||
#endif
|
||||
|
||||
static int s_anFiringStripIndices[8] = { 1, 2, 3, 4, 5, 6, 7, 8 };
|
||||
static int s_anMovingStripIndices[8] = { 17, 18, 19, 20, 21, 22, 23, 24 };
|
||||
static int s_anIdleStripIndices[8] = { 9, 10, 11, 12, 13, 14, 15, 16 };
|
||||
static int s_anFiringStripIndices[16] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16};
|
||||
static int s_anMovingStripIndices[16] = { 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48 };
|
||||
static int s_anIdleStripIndices[16] = { 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 };
|
||||
|
||||
bool AndyGob::InitClass(IniReader *pini)
|
||||
{
|
||||
|
||||
@ -11,8 +11,8 @@ char *ArtilleryGob::GetName()
|
||||
}
|
||||
#endif
|
||||
|
||||
static int s_anFiringStripIndices[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
|
||||
static int s_anMovingStripIndices[8] = { 8, 9, 10, 11, 12, 13, 14, 15 };
|
||||
static int s_anFiringStripIndices[16] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
|
||||
static int s_anMovingStripIndices[16] = { 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31 };
|
||||
|
||||
bool ArtilleryGob::InitClass(IniReader *pini)
|
||||
{
|
||||
|
||||
@ -11,9 +11,9 @@ char *LRInfantryGob::GetName()
|
||||
}
|
||||
#endif
|
||||
|
||||
static int s_anFiringStripIndices[8] = { 1, 2, 3, 4, 5, 6, 7, 8 };
|
||||
static int s_anMovingStripIndices[8] = { 17, 18, 19, 20, 21, 22, 23, 24 };
|
||||
static int s_anIdleStripIndices[8] = { 9, 10, 11, 12, 13, 14, 15, 16 };
|
||||
static int s_anFiringStripIndices[16] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 };
|
||||
static int s_anMovingStripIndices[16] = { 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48 };
|
||||
static int s_anIdleStripIndices[16] = { 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 };
|
||||
|
||||
bool LRInfantryGob::InitClass(IniReader *pini)
|
||||
{
|
||||
|
||||
@ -13,7 +13,7 @@ char *MinerGob::GetName()
|
||||
}
|
||||
#endif
|
||||
|
||||
static int s_anMovingStripIndices[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
|
||||
static int s_anMovingStripIndices[16] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
|
||||
|
||||
bool MinerGob::InitClass(IniReader *pini)
|
||||
{
|
||||
|
||||
@ -11,7 +11,7 @@ char *MobileHqGob::GetName()
|
||||
}
|
||||
#endif
|
||||
|
||||
static int s_anMovingStripIndices[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
|
||||
static int s_anMovingStripIndices[16] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
|
||||
|
||||
bool MobileHqGob::InitClass(IniReader *pini)
|
||||
{
|
||||
|
||||
@ -11,9 +11,9 @@ char *SRInfantryGob::GetName()
|
||||
}
|
||||
#endif
|
||||
|
||||
static int s_anFiringStripIndices[8] = { 1, 2, 3, 4, 5, 6, 7, 8 };
|
||||
static int s_anMovingStripIndices[8] = { 17, 18, 19, 20, 21, 22, 23, 24 };
|
||||
static int s_anIdleStripIndices[8] = { 9, 10, 11, 12, 13, 14, 15, 16 };
|
||||
static int s_anFiringStripIndices[16] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 };
|
||||
static int s_anMovingStripIndices[16] = { 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48 };
|
||||
static int s_anIdleStripIndices[16] = { 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 };
|
||||
|
||||
bool SRInfantryGob::InitClass(IniReader *pini)
|
||||
{
|
||||
|
||||
@ -11,8 +11,8 @@ char *SpInfantryGob::GetName()
|
||||
}
|
||||
#endif
|
||||
|
||||
static int s_anIdleStripIndices[8] = { 1, 2, 3, 4, 5, 6, 7, 8 };
|
||||
static int s_anMovingStripIndices[8] = { 9, 10, 11, 12, 13, 14, 15, 16 };
|
||||
static int s_anIdleStripIndices[16] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 };
|
||||
static int s_anMovingStripIndices[16] = { 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 };
|
||||
|
||||
bool SpInfantryGob::InitClass(IniReader *pini)
|
||||
{
|
||||
|
||||
@ -255,9 +255,9 @@ char *LTankGob::GetName()
|
||||
}
|
||||
#endif
|
||||
|
||||
static int s_anTurretStripIndices[16] = { 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23 };
|
||||
static int s_anBaseStripIndices[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
|
||||
static int s_anIdleStripIndices[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
|
||||
static int s_anTurretStripIndices[16] = { 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31 };
|
||||
static int s_anBaseStripIndices[16] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
|
||||
static int s_anIdleStripIndices[16] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
|
||||
|
||||
bool LTankGob::InitClass(IniReader *pini)
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user