- gave all textures that were accessed with their "#0xxxx" name a descriptive names.

Only the fallback fonts were intentionally excluded because these are supposed to get the ART file content.
This commit is contained in:
Christoph Oelckers 2022-12-07 17:10:27 +01:00
parent 58db09969c
commit 281b102fac
7 changed files with 13 additions and 4 deletions

View file

@ -193,3 +193,9 @@ x(SBarWaponNum0, 2248)
x(SBarWaponNum0, 2249)
x(MIRRORTILE, 504)
x(ICONFLAREGUN, 524)
x(ICONSHOTGUN, 559)
x(ICONTOMMY, 558)
x(ICONTESLA, 539)
x(ICONLEECH, 800)

View file

@ -941,6 +941,7 @@ y(RRTILE3115, 3115)
y(RRTILE3116, 3116)
y(RRTILE3117, 3117)
x(CHICKENLOAF, 3120)
x(CHICKENLOAF1, 3121)
x(CHICKENNUGGET, 3122)
x(ROASTEDCHICKEN, 3123)
x(BONELESSCHICKEN, 3124)

View file

@ -300,3 +300,4 @@ x(COMPASS_MID_TIC2, 2391)
x(FAF_PORTAL, 341)
x(FAF_PORTAL2, 342)
x(SYBEXSCREEN, 5261)

View file

@ -75,7 +75,8 @@ map { 2, 3 }
{
interbackground = "BONUSPIC10"
rr_startsound = 177
PrecacheTextures = "#03190","#03191","#03192","#03144","#03139","#03132","#03120","#03121","#03122","#03123","#03124"
// todo: attach these to the spawner objects.
PrecacheTextures = "CHICKENA","CHICKENB","CHICKENC","RRTILE3144","RRTILE3139","CHICKENHEAD","CHICKENLOAF","CHICKENLOAF1","CHICKENNUGGET","ROASTEDCHICKEN","BONELESSCHICKEN"
}
map { 2, 4 }

View file

@ -38,7 +38,7 @@ map { 1, 5 }
{
interbackground = "LEVELMAP05"
rr_startsound = 102
PrecacheTextures = "#02577"
PrecacheTextures = "RRTHUNDERSKY"
}
map { 1, 6 }

View file

@ -807,7 +807,7 @@ class BloodStatusBar : RazeStatusBar
}
// only show those weapons which are not their same ammo.
static const String weaponIcons[] = { "", "" /* pitchfork */, "#00524", "#00559", "#00558", "", "", "#00539", "#00800", "", "", "" };
static const String weaponIcons[] = { "", "" /* pitchfork */, "ICONFLAREGUN", "ICONSHOTGUN", "ICONTOMMY", "", "", "ICONTESLA", "ICONLEECH", "", "", "" };
for(int i = 0; i < 11; i++)
{

View file

@ -459,7 +459,7 @@ class SWCutscenes ui
static void BuildSybexScreen(ScreenJobRunner runner)
{
if (Raze.isShareware() && !netgame)
runner.Append(ImageScreen.CreateNamed("#05261", TexMan.Type_Any));
runner.Append(ImageScreen.CreateNamed("SYBEXSCREEN", TexMan.Type_Any));
}
//---------------------------------------------------------------------------