[g4.15pre-487-gf30fc8dd0] Missing graphic for a decal?
Moderator: GZDoom Developers
Forum rules
Please construct and post a simple demo whenever possible for all bug reports. Please provide links to everything.
If you can include a wad demonstrating the problem, please do so. Bug reports that include fully-constructed demos have a much better chance of being investigated in a timely manner than those that don't.
Please make a new topic for every bug. Don't combine multiple bugs into a single topic. Thanks!
Please construct and post a simple demo whenever possible for all bug reports. Please provide links to everything.
If you can include a wad demonstrating the problem, please do so. Bug reports that include fully-constructed demos have a much better chance of being investigated in a timely manner than those that don't.
Please make a new topic for every bug. Don't combine multiple bugs into a single topic. Thanks!
[g4.15pre-487-gf30fc8dd0] Missing graphic for a decal?
The decal Demon2Scorch calls for the graphic BLAST02, which isn't present in the main pk3.
Re: [g4.15pre-487-gf30fc8dd0] Missing graphic for a decal?
CentaurScorch too:
These are allocated to actors:
I also had a quick check in the textures.txt lump to see if it was defined there (nope).
Looking back at old files, it does seem to have been missing for a long time (maybe forever).
Code: Select all
/***** Centaur Scorches ****************************************************/
decal CentaurScorch
{
pic BLAST02
shade "00 00 00"
x-scale 0.7
y-scale 0.7
randomflipx
randomflipy
}
/***** Demon2 Scorch *******************************************************/
decal Demon2Scorch
{
pic BLAST02
shade "00 00 00"
x-scale 0.65
y-scale 0.65
randomflipx
randomflipy
}
Code: Select all
generator Demon2FX1 Demon2Scorch
generator WraithFX1 Demon2Scorch
Code: Select all
generator CentaurFX CentaurScorch
I also had a quick check in the textures.txt lump to see if it was defined there (nope).
Looking back at old files, it does seem to have been missing for a long time (maybe forever).