mirror of
https://github.com/ZDoom/ZDRay.git
synced 2025-02-03 13:11:04 +00:00
- updated readme
This commit is contained in:
parent
96080982e4
commit
ca2f4df032
1 changed files with 20 additions and 13 deletions
33
README.md
33
README.md
|
@ -1,28 +1,35 @@
|
||||||
# ZDRay UDMF properties
|
|
||||||
|
# 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
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
linedef
|
linedef
|
||||||
{
|
{
|
||||||
lightcolor = >int< (color, default: white)
|
lightcolor = <int> (color, default: white)
|
||||||
lightintensity = >float< (default: 1)
|
lightintensity = <float> (default: 1)
|
||||||
lightdistance = >float< (default: 0, no light)
|
lightdistance = <float> (default: 0, no light)
|
||||||
}
|
}
|
||||||
|
|
||||||
thing
|
thing
|
||||||
{
|
{
|
||||||
lightcolor = >int< (color)
|
lightcolor = <int> (color)
|
||||||
lightintensity = >float< (default: 1)
|
lightintensity = <float> (default: 1)
|
||||||
lightdistance = >float< (default: 0, no light)
|
lightdistance = <float> (default: 0, no light)
|
||||||
}
|
}
|
||||||
|
|
||||||
sector
|
sector
|
||||||
{
|
{
|
||||||
lightcolorfloor = >int< (color, default: white)
|
lightcolorfloor = <int> (color, default: white)
|
||||||
lightintensityfloor = >float< (default: 1)
|
lightintensityfloor = <float> (default: 1)
|
||||||
lightdistancefloor = >float< (default: 0, no light)
|
lightdistancefloor = <float> (default: 0, no light)
|
||||||
|
|
||||||
lightcolorceiling = >int< (color, default: white)
|
lightcolorceiling = <int> (color, default: white)
|
||||||
lightintensityceiling = >float< (default: 1)
|
lightintensityceiling = <float> (default: 1)
|
||||||
lightdistanceceiling = >float< (default: 0, no light)
|
lightdistanceceiling = <float> (default: 0, no light)
|
||||||
}
|
}
|
||||||
</pre>
|
</pre>
|
||||||
|
|
Loading…
Reference in a new issue