diff --git a/README.md b/README.md index a5bd706..8267bc4 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,28 @@ # ZDRay UDMF properties +
linedef { - lightcolor =(color, default: white) - lightintensity = (default: 1) - lightdistance = (default: 0, no light) + lightcolor = >int< (color, default: white) + lightintensity = >float< (default: 1) + lightdistance = >float< (default: 0, no light) } thing { - lightcolor = (color) - lightintensity = (default: 1) - lightdistance = (default: 0, no light) + lightcolor = >int< (color) + lightintensity = >float< (default: 1) + lightdistance = >float< (default: 0, no light) } sector { - lightcolorfloor = (color, default: white) - lightintensityfloor = (default: 1) - lightdistancefloor = (default: 0, no light) + lightcolorfloor = >int< (color, default: white) + lightintensityfloor = >float< (default: 1) + lightdistancefloor = >float< (default: 0, no light) - lightcolorceiling = (color, default: white) - lightintensityceiling = (default: 1) - lightdistanceceiling = (default: 0, no light) + lightcolorceiling = >int< (color, default: white) + lightintensityceiling = >float< (default: 1) + lightdistanceceiling = >float< (default: 0, no light) } +