mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-12-11 12:51:20 +00:00
29 lines
570 B
INI
29 lines
570 B
INI
|
|
||
|
// How to display the nodebuilder name
|
||
|
title = "ZenNode";
|
||
|
|
||
|
// 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 = "ZenNode.exe";
|
||
|
parameters = "%F -o %F";
|
||
|
}
|
||
|
|
||
|
// Settings used when testing a map
|
||
|
testmap
|
||
|
{
|
||
|
compiler = "ZenNode.exe";
|
||
|
parameters = "%F -o %F";
|
||
|
}
|
||
|
|
||
|
// Settings used when using 3D mode
|
||
|
mode3dbuild
|
||
|
{
|
||
|
compiler = "ZenNode.exe";
|
||
|
parameters = "-n3 -nq -rz %F -o %F";
|
||
|
}
|