- fix readme formatting

This commit is contained in:
Magnus Norddahl 2018-10-30 19:17:03 +01:00
parent b0f846e200
commit 96080982e4

View file

@ -1,26 +1,28 @@
# ZDRay UDMF properties # ZDRay UDMF properties
<pre>
linedef linedef
{ {
lightcolor = <int> (color, default: white) lightcolor = &gt;int&lt; (color, default: white)
lightintensity = <float> (default: 1) lightintensity = &gt;float&lt; (default: 1)
lightdistance = <float> (default: 0, no light) lightdistance = &gt;float&lt; (default: 0, no light)
} }
thing thing
{ {
lightcolor = <int> (color) lightcolor = &gt;int&lt; (color)
lightintensity = <float> (default: 1) lightintensity = &gt;float&lt; (default: 1)
lightdistance = <float> (default: 0, no light) lightdistance = &gt;float&lt; (default: 0, no light)
} }
sector sector
{ {
lightcolorfloor = <int> (color, default: white) lightcolorfloor = &gt;int&lt; (color, default: white)
lightintensityfloor = <float> (default: 1) lightintensityfloor = &gt;float&lt; (default: 1)
lightdistancefloor = <float> (default: 0, no light) lightdistancefloor = &gt;float&lt; (default: 0, no light)
lightcolorceiling = <int> (color, default: white) lightcolorceiling = &gt;int&lt; (color, default: white)
lightintensityceiling = <float> (default: 1) lightintensityceiling = &gt;float&lt; (default: 1)
lightdistanceceiling = <float> (default: 0, no light) lightdistanceceiling = &gt;float&lt; (default: 0, no light)
} }
</pre>