mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Add slope linedefs to UDMF ZB config
This commit is contained in:
parent
3615031636
commit
2f80899db9
2 changed files with 122 additions and 7 deletions
|
|
@ -2483,4 +2483,119 @@ udmf
|
||||||
prefix = "(0)";
|
prefix = "(0)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
slope
|
||||||
|
{
|
||||||
|
title = "Slope";
|
||||||
|
|
||||||
|
700
|
||||||
|
{
|
||||||
|
title = "Create Sector-Based Slope";
|
||||||
|
prefix = "(700)";
|
||||||
|
id = "plane_align";
|
||||||
|
slope = "regular";
|
||||||
|
arg0
|
||||||
|
{
|
||||||
|
title = "Floor";
|
||||||
|
type = 11;
|
||||||
|
enum = "frontback";
|
||||||
|
}
|
||||||
|
arg1
|
||||||
|
{
|
||||||
|
title = "Ceiling";
|
||||||
|
type = 11;
|
||||||
|
enum = "frontback";
|
||||||
|
}
|
||||||
|
arg2
|
||||||
|
{
|
||||||
|
title = "Flags";
|
||||||
|
type = 12;
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
1 = "No physics";
|
||||||
|
2 = "Dynamic";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
704
|
||||||
|
{
|
||||||
|
title = "Create Vertex-Based Slope";
|
||||||
|
prefix = "(704)";
|
||||||
|
slope = "vertex";
|
||||||
|
arg0
|
||||||
|
{
|
||||||
|
title = "Plane";
|
||||||
|
type = 11;
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
0 = "Front floor";
|
||||||
|
1 = "Front ceiling";
|
||||||
|
2 = "Back floor";
|
||||||
|
3 = "Back ceiling";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
arg1
|
||||||
|
{
|
||||||
|
title = "Vertex 1 tag";
|
||||||
|
}
|
||||||
|
arg2
|
||||||
|
{
|
||||||
|
title = "Vertex 2 tag";
|
||||||
|
}
|
||||||
|
arg3
|
||||||
|
{
|
||||||
|
title = "Vertex 3 tag";
|
||||||
|
}
|
||||||
|
arg4
|
||||||
|
{
|
||||||
|
title = "Flags";
|
||||||
|
type = 12;
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
1 = "No physics";
|
||||||
|
2 = "Dynamic";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
720
|
||||||
|
{
|
||||||
|
title = "Copy Slope";
|
||||||
|
prefix = "(720)";
|
||||||
|
slope = "copy";
|
||||||
|
arg0
|
||||||
|
{
|
||||||
|
title = "Front floor tag";
|
||||||
|
type = 13;
|
||||||
|
}
|
||||||
|
arg1
|
||||||
|
{
|
||||||
|
title = "Front ceiling tag";
|
||||||
|
type = 13;
|
||||||
|
}
|
||||||
|
arg2
|
||||||
|
{
|
||||||
|
title = "Back floor tag";
|
||||||
|
type = 13;
|
||||||
|
}
|
||||||
|
arg3
|
||||||
|
{
|
||||||
|
title = "Back ceiling tag";
|
||||||
|
type = 13;
|
||||||
|
}
|
||||||
|
arg4
|
||||||
|
{
|
||||||
|
title = "Share slope";
|
||||||
|
type = 12;
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
1 = "Front floor to back sector";
|
||||||
|
2 = "Back floor to front sector";
|
||||||
|
4 = "Front ceiling to back sector";
|
||||||
|
8 = "Back ceiling to front sector";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -63,19 +63,19 @@ linedefflags_udmf
|
||||||
midpeg = "Peg Midtexture";
|
midpeg = "Peg Midtexture";
|
||||||
midsolid = "Solid Midtexture";
|
midsolid = "Solid Midtexture";
|
||||||
wrapmidtex = "Repeat Midtexture";
|
wrapmidtex = "Repeat Midtexture";
|
||||||
// netonly = "Netgame-Only special";
|
// netonly = "Netgame Only";
|
||||||
// nonet = "No netgame special";
|
// nonet = "No Netgame";
|
||||||
// effect6 = "Effect 6";
|
effect6 = "Effect 6";
|
||||||
bouncy = "Bouncy Wall";
|
bouncy = "Bouncy Wall";
|
||||||
// transfer = "Transfer Line";
|
transfer = "Transfer Line";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
linedefactivations_udmf
|
linedefactivations_udmf
|
||||||
{
|
{
|
||||||
notriggerorder = "Out of Order";
|
// notriggerorder = "Out of Order";
|
||||||
netonly = "Netgame-Only";
|
netonly = "Netgame Only";
|
||||||
nonet = "No netgame";
|
nonet = "No Netgame";
|
||||||
}
|
}
|
||||||
|
|
||||||
sidedefflags
|
sidedefflags
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue