Page 1 of 1

Custom Ceiling / Floor Glow

Posted: Tue Jul 26, 2011 14:25
by Hellser
From what I can tell, the floor (and ceiling) glow is a set height. Would it be possible to specify the height of each glow, or maybe even set up the colors for it? It seems that the color of the glow comes from the most bright pixel and the area around it. It will also help mappers and modders to specify how much glow a flat can do.

Maybe it will be harder to parse, or simply impossible. I also understand that GZDooM isn't jDooM. But it wouldn't hurt to have such a setup for those who wishes to fine tune.

Idealy, it could be something similar to this:

Flatname (R,G,B,Height/Size

If the parameters hasn't been set, GZDooM handles it itself. That way, it won't break anything.

An example;

Code: Select all

Glow
{
   Flats
   {
      LAVA1 (1.0,0.7,0.5,24)
      LAVA2 (1.0,0.7,0.5,24)
      LAVA3 (1.0,0.7,0.5,24)
      LAVA4 (1.0,0.7,0.5,24)
    }
}
Just a suggestion!

Re: Custom Ceiling / Floor Glow

Posted: Tue Jul 26, 2011 23:52
by Enjay
Actually, something similar to what you suggest has already been added.

eg

Code: Select all

Texture LAVA1, FF5900, 80, fullbright 

Re: Custom Ceiling / Floor Glow

Posted: Wed Jul 27, 2011 7:03
by Hellser
Enjay wrote:Actually, something similar to what you suggest has already been added.

eg

Code: Select all

Texture LAVA1, FF5900, 80, fullbright 
Really? I didn't know. Thanks for the update, Enjay.