mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 13:11:33 +00:00
- added new linedef properties to UDMF spec
https://forum.zdoom.org/viewtopic.php?t=59808
This commit is contained in:
parent
526711f5d8
commit
ad31da20e5
1 changed files with 19 additions and 1 deletions
|
@ -122,7 +122,24 @@ Note: All <bool> fields default to false unless mentioned otherwise.
|
||||||
arg0str = <string>; // Alternate string-based version of arg0
|
arg0str = <string>; // Alternate string-based version of arg0
|
||||||
moreids = <string>; // Additional line IDs, specified as a space separated list of numbers (e.g. "2 666 1003 4505")
|
moreids = <string>; // Additional line IDs, specified as a space separated list of numbers (e.g. "2 666 1003 4505")
|
||||||
|
|
||||||
transparent = <bool>; // true = line is a Strife transparent line (alpha 0.25)
|
transparent = <bool>; // true = line is a Strife transparent line (alpha 0.25)
|
||||||
|
|
||||||
|
automapstyle = <integer>; // Explicit automap style. Possible values can be
|
||||||
|
// 0: Automap style is based on line properties (default).
|
||||||
|
// 1: One-sided wall.
|
||||||
|
// 2: Two-sided wall.
|
||||||
|
// 3: Floor levels of front and back sectors are different.
|
||||||
|
// 4: Ceiling levels of front and back sectors are different.
|
||||||
|
// 5: 3D floor border.
|
||||||
|
// 6: Wall with special non-door action.
|
||||||
|
// 7: Secret door.
|
||||||
|
// 8: Wall not seen yet.
|
||||||
|
// 9: Locked door.
|
||||||
|
// 10: Intra-level teleporter.
|
||||||
|
// 11: Inter-level or game-ending teleporter.
|
||||||
|
// 12: Unexplored secret wall.
|
||||||
|
// 13: Portal line.
|
||||||
|
revealed = <bool>; // true = line is initially visible on automap.
|
||||||
|
|
||||||
* Note about arg0str
|
* Note about arg0str
|
||||||
|
|
||||||
|
@ -431,6 +448,7 @@ sector material colors.
|
||||||
arg0str in dynamic lights.
|
arg0str in dynamic lights.
|
||||||
|
|
||||||
1.30 20.05.2018
|
1.30 20.05.2018
|
||||||
|
Added automapstyle and revealed linedef properties.
|
||||||
Replaced tabs with spaces.
|
Replaced tabs with spaces.
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
|
|
Loading…
Reference in a new issue