Page 1 of 1

Is it just me or...

Posted: Mon Mar 06, 2006 23:37
by Nash
Does GZDoom support glowing textures?

I was playing this and noticed the water is glowing blue.

Posted: Mon Mar 06, 2006 23:42
by Enjay
Right conclusion: wrong reason.

GZdoom does support glowing textures (kind of) it's an in development feature. It looks really cool unless you have a sloped wall that is affected by the glow then it messes up. A real shame because it looks great.

However (and I thought the same thing until I checked) this wad uses dynamic lights to create the effect.

Oh, and I know you're bound to want to know, so here's what Graf said about Glowing flats some time ago:
Regarding the glowing flats effect.

yes, that effect is supported. Just add a GLOWDEFS lump which lists all the flats that are supposed to be glowing. Please note that this doesn't work properly with slopes yet! Plus I'd like to improve it so you can explicitly set the color per flat as opposed to using the normalized average.

Code:

Flats
{
LAVA1
LAVA2
LAVA3
LAVA4
NUKAGE1
NUKAGE2
NUKAGE3
BLOOD1
BLOOD2
BLOOD3
}

You have to specify it in MAPINFO. I didn't want to make it global for all maps. Please note that currently it doesn't work for sectors with slopes which is why I haven't officially documented it. It's really just some unfinished development garbage from an attempt to get the Doom64TC levels to work.

If you don't mind creating an incompatibility with ZDoom just add

GLOWDEFS "GLOWDEFS" to the defaultmap section.

Posted: Tue Mar 07, 2006 0:03
by Nash
Thanks...

Posted: Tue Mar 07, 2006 0:17
by Nash
Can't get it to work. :/ Help, please.

MAPINFO:

Code: Select all

defaultmap
GLOWDEFS "GLOWDEFS"
GLOWDEFS:

Code: Select all

Flats 
{ 
LAVA1 
LAVA2 
LAVA3 
LAVA4 
NUKAGE1 
NUKAGE2 
NUKAGE3 
BLOOD1 
BLOOD2 
BLOOD3 
}

Posted: Tue Mar 07, 2006 0:18
by Graf Zahl
And in case someone wonders why there's some strance HOM effect, that's because this WAD uses stacked sectors improperly.

Posted: Tue Mar 07, 2006 0:20
by justin023
Glowing Flats? I have to use this. Something GZDoom really needs is dynamic lights attached to textures. Doomsday already has this and it looks sweet.

Posted: Tue Mar 07, 2006 0:21
by Graf Zahl
[quote="Nash"]Can't get it to work. :/ Help, please.

MAPINFO:

Code: Select all

defaultmap
GLOWDEFS "GLOWDEFS"

defaultmap only affects levels coming after the definition. It won't affect any of the default map definitions.

Posted: Tue Mar 07, 2006 0:25
by Nash
I copy and pasted the entire DOOM II MAPINFO after my defaultmap section.

Still doesn't work.

EDIT: Oh, I was constantly checking MAP02 for the effect. Water isn't supposed to glow though. Yeah it works for the other flats; thanks.