ReplaceTextures
From ZDoom Wiki
void ReplaceTextures (str oldtexturename, str newtexturename [, int flags])
Usage
Replaces all occurences of oldtexturename with newtexturename.
Flags
The following flags are supported for this function and can be combined using the logical or operator | :
- NOT_BOTTOM: Do not change any bottom textures on walls.
- NOT_MIDDLE: Do not change any middle textures on walls.
- NOT_TOP: Do not change any top textures on walls.
- NOT_FLOOR: Do not change any floor textures.
- NOT_CEILING: Do not change any ceiling textures.
Examples
The following script changes the generic floor into blood after 60 tics:
script 1 OPEN
{
Delay(60);
ChangeTexture("FLOOR0_1","BLOOD1");
}
If used in a correct way, this feature can be used to scare the player (eg. if the walls turn into a mess of gore after pressing a certain switch).