Add handling for drawfullheight flag

Parse drawfullheight flag in UDMF
Draw full height for walls if the linedef has this flag
This commit is contained in:
Kevin Caccamo 2020-01-10 18:08:01 -05:00 committed by Christoph Oelckers
commit 7ca6e7e5c1
4 changed files with 19 additions and 7 deletions

View file

@ -1078,6 +1078,10 @@ public:
Flag(ld->flags, ML_NOSKYWALLS, key);
continue;
case NAME_DrawFullHeight:
Flag(ld->flags, ML_DRAWFULLHEIGHT, key);
continue;
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.