- Added a few things from Gez's experimental build:
* Beta Lost Soul (added DoomEdNum 9037 to it) * A_Mushroom extensions * Vavoom compatible MAPINFO keynames. * Vavoom's Sector_SetContents fixes to inactive 3D floor code. SVN r1818 (trunk)
This commit is contained in:
parent
980b68af17
commit
914d993aa1
11 changed files with 122 additions and 31 deletions
|
|
@ -947,6 +947,12 @@ DEFINE_MAP_OPTION(secretnext, true)
|
|||
parse.ParseNextMap(info->secretmap);
|
||||
}
|
||||
|
||||
DEFINE_MAP_OPTION(secret, true) // Just an alias for secretnext, for Vavoom compatibility
|
||||
{
|
||||
parse.ParseAssign();
|
||||
parse.ParseNextMap(info->secretmap);
|
||||
}
|
||||
|
||||
DEFINE_MAP_OPTION(cluster, true)
|
||||
{
|
||||
parse.ParseAssign();
|
||||
|
|
@ -998,6 +1004,14 @@ DEFINE_MAP_OPTION(sky2, true)
|
|||
}
|
||||
}
|
||||
|
||||
// Vavoom compatibility
|
||||
DEFINE_MAP_OPTION(skybox, true)
|
||||
{
|
||||
parse.ParseAssign();
|
||||
parse.ParseLumpOrTextureName(info->skypic1);
|
||||
info->skyspeed1 = 0;
|
||||
}
|
||||
|
||||
DEFINE_MAP_OPTION(fade, true)
|
||||
{
|
||||
parse.ParseAssign();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue