mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- re-added the glow properties for UDMF which somehow got lost.
This commit is contained in:
parent
66cc68606f
commit
5de3d662cb
1 changed files with 16 additions and 0 deletions
|
@ -1576,6 +1576,22 @@ public:
|
|||
sec->reflect[sector_t::ceiling] = (float)CheckFloat(key);
|
||||
break;
|
||||
|
||||
case NAME_floorglowcolor:
|
||||
sec->planes[sector_t::floor].GlowColor = CheckInt(key);
|
||||
break;
|
||||
|
||||
case NAME_floorglowheight:
|
||||
sec->planes[sector_t::floor].GlowHeight = (float)CheckFloat(key);
|
||||
break;
|
||||
|
||||
case NAME_ceilingglowcolor:
|
||||
sec->planes[sector_t::ceiling].GlowColor = CheckInt(key);
|
||||
break;
|
||||
|
||||
case NAME_ceilingglowheight:
|
||||
sec->planes[sector_t::ceiling].GlowHeight = (float)CheckFloat(key);
|
||||
break;
|
||||
|
||||
case NAME_MoreIds:
|
||||
// delay parsing of the tag string until parsing of the sector is complete
|
||||
// This ensures that the ID is always the first tag in the list.
|
||||
|
|
Loading…
Reference in a new issue