- Updated ZDBSP nodebuilder version 1.12

- Re-enabled UDMF comments for element indices (should work with ZDBSP now)
@ Added test case for triangulation
This commit is contained in:
codeimp 2009-06-23 16:35:13 +00:00
parent 052e0a1d63
commit 1a2d335e4d
4 changed files with 30 additions and 4 deletions

View file

@ -677,15 +677,11 @@ namespace CodeImp.DoomBuilder.IO
// Output recursive structure
if(whitespace) { db.Append(leveltabs); db.Append(newline); }
db.Append(leveltabs); db.Append(de.Current.Key);
/*
* Disabled writing comments to UDMF TEXTMAP, because ZDBSP can't handle this properly yet.
*
if(!string.IsNullOrEmpty(c.Comment))
{
if(whitespace) db.Append("\t");
db.Append("// " + c.Comment);
}
*/
db.Append(newline);
db.Append(leveltabs); db.Append("{"); db.Append(newline);
db.Append(OutputStructure(c, level + 1, newline, whitespace));

View file

@ -0,0 +1,30 @@
type = "Doom Builder Map Settings Configuration";
gameconfig = "ZDoom_DoomHexen.cfg";
strictpatches = 0;
maps
{
SAD01
{
grid
{
backoffsety = 0;
backoffsetx = 0;
backscalex = 100;
gridsize = 32;
background = "";
backsource = 0;
backscaley = 100;
}
resources
{
}
}
}

Binary file not shown.