mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 04:12:12 +00:00
29 lines
582 B
INI
29 lines
582 B
INI
|
|
||
|
// How to display the nodebuilder name
|
||
|
title = "glBSP";
|
||
|
|
||
|
// Parameter placeholders:
|
||
|
// %F is the WAD file where the nodebuilder must read from
|
||
|
// %T is the WAD file to which the nodebuilde writes its output (optional)
|
||
|
|
||
|
// Settings used when saving a map
|
||
|
savemap
|
||
|
{
|
||
|
compiler = "glBSP.exe";
|
||
|
parameters = "%F -o %T";
|
||
|
}
|
||
|
|
||
|
// Settings used when testing a map
|
||
|
testmap
|
||
|
{
|
||
|
compiler = "glBSP.exe";
|
||
|
parameters = "%F -o %T";
|
||
|
}
|
||
|
|
||
|
// Settings used when using 3D mode
|
||
|
mode3dbuild
|
||
|
{
|
||
|
compiler = "glBSP.exe";
|
||
|
parameters = "-normal -noreject -v5 -factor 1 %F -o %T";
|
||
|
}
|