(G)ZDoom game configuration: added several missing UDMF fields for linedefs and sectors, so that they show up in the custom tab. Fixes #628

This commit is contained in:
biwa 2021-10-03 21:27:55 +02:00
parent 80e56310a3
commit d2d400164d

View file

@ -302,6 +302,38 @@ universalfields
type = 2;
default = "";
}
health
{
type = 0;
default = 0;
}
healthgroup
{
type = 0;
default = 0;
}
// Should be moved to flags eventually
damagespecial
{
type = 3;
default = false;
}
// Should be moved to flags eventually
deathspecial
{
type = 3;
default = false;
}
automapstyle
{
type = 0;
default = 0;
}
}
sidedef
@ -460,6 +492,42 @@ universalfields
type = 2;
default = "";
}
healthfloor
{
type = 0;
default = 0;
}
healthceiling
{
type = 0;
default = 0;
}
health3d
{
type = 0;
default = 0;
}
healthfloorgroup
{
type = 0;
default = 0;
}
healthceilinggroup
{
type = 0;
default = 0;
}
health3dgroup
{
type = 0;
default = 0;
}
}
}