- added UDMF_fields for sector plane reflectiveness.

This commit is contained in:
Christoph Oelckers 2016-12-28 01:09:42 +01:00
commit 6322c81719
4 changed files with 23 additions and 0 deletions

View file

@ -1563,6 +1563,14 @@ public:
sec->terrainnum[sector_t::ceiling] = P_FindTerrain(CheckString(key));
break;
case NAME_floor_reflect:
sec->reflect[sector_t::floor] = (float)CheckFloat(key);
break;
case NAME_ceiling_reflect:
sec->reflect[sector_t::ceiling] = (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.