zdray/README.md

38 lines
1.1 KiB
Markdown
Raw Normal View History

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:17:03 +00:00
<pre>
linedef
{
2018-10-30 18:24:45 +00:00
lightcolor = &lt;int&gt; (color, default: white)
lightintensity = &lt;float&gt; (default: 1)
lightdistance = &lt;float&gt; (default: 0, no light)
}
thing
{
2018-10-30 18:24:45 +00:00
lightcolor = &lt;int&gt; (color)
lightintensity = &lt;float&gt; (default: 1)
lightdistance = &lt;float&gt; (default: 0, no light)
2018-10-31 19:37:26 +00:00
lightinnerangle = &lt;float&gt; (default: 180)
lightouterangle = &lt;float&gt; (default: 180)
}
sector
{
2018-10-30 18:24:45 +00:00
lightcolorfloor = &lt;int&gt; (color, default: white)
lightintensityfloor = &lt;float&gt; (default: 1)
lightdistancefloor = &lt;float&gt; (default: 0, no light)
2018-10-30 18:24:45 +00:00
lightcolorceiling = &lt;int&gt; (color, default: white)
lightintensityceiling = &lt;float&gt; (default: 1)
lightdistanceceiling = &lt;float&gt; (default: 0, no light)
}
2018-10-30 18:17:03 +00:00
</pre>