Spawning this fella will cause the game to crash when any part of sky is visible.
Supposedly any kind of non-existing texture will do.
Code: Select all
Class SkyChangingZombieman : Zombieman
{
Override Void PostBeginPlay()
{
Super.PostBeginPlay();
Level.ChangeSky(TexMan.CheckForTexture("<FWATER1>",TexMan.Type_Any), TexMan.CheckForTexture("FWATER1",TexMan.Type_Any));
}
}