2018-10-30 18:24:45 +00:00
|
|
|
|
|
|
|
# ZDRay baking utility for GZDoom
|
|
|
|
|
|
|
|
ZDRay is a node and lightmap generator. It is based on zdbsp for the node generation and dlight for the lightmap generation.
|
|
|
|
|
|
|
|
Special thanks to Randi Heit, Samuel Villarreal, Christoph Oelckers and anyone else involved in creating or maintaining those tools.
|
|
|
|
|
|
|
|
## ZDRay UDMF properties
|
2018-10-30 18:10:50 +00:00
|
|
|
|
2018-10-30 18:17:03 +00:00
|
|
|
<pre>
|
2018-10-30 18:10:50 +00:00
|
|
|
linedef
|
|
|
|
{
|
2018-10-30 18:24:45 +00:00
|
|
|
lightcolor = <int> (color, default: white)
|
|
|
|
lightintensity = <float> (default: 1)
|
|
|
|
lightdistance = <float> (default: 0, no light)
|
2018-10-30 18:10:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
thing
|
|
|
|
{
|
2018-10-30 18:24:45 +00:00
|
|
|
lightcolor = <int> (color)
|
|
|
|
lightintensity = <float> (default: 1)
|
|
|
|
lightdistance = <float> (default: 0, no light)
|
2018-10-31 19:37:26 +00:00
|
|
|
lightinnerangle = <float> (default: 180)
|
|
|
|
lightouterangle = <float> (default: 180)
|
2018-10-30 18:10:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sector
|
|
|
|
{
|
2018-10-30 18:24:45 +00:00
|
|
|
lightcolorfloor = <int> (color, default: white)
|
|
|
|
lightintensityfloor = <float> (default: 1)
|
|
|
|
lightdistancefloor = <float> (default: 0, no light)
|
2018-10-30 18:10:50 +00:00
|
|
|
|
2018-10-30 18:24:45 +00:00
|
|
|
lightcolorceiling = <int> (color, default: white)
|
|
|
|
lightintensityceiling = <float> (default: 1)
|
|
|
|
lightdistanceceiling = <float> (default: 0, no light)
|
2018-10-30 18:10:50 +00:00
|
|
|
}
|
2018-10-30 18:17:03 +00:00
|
|
|
</pre>
|