ThiefLightmapper/KeepersCompound.Lightmapper/Program.cs

25 lines
699 B
C#
Raw Normal View History

namespace KeepersCompound.Lightmapper;
class Program
{
static void Main(string[] args)
{
2024-09-23 15:57:02 +00:00
Timing.Reset();
// TODO: Read this from args
var installPath = "/stuff/Games/thief/drive_c/GOG Games/TG ND 1.27 (MAPPING)/";
var campaignName = "JAYRUDE_Tests";
var missionName = "lm_test.cow";
// campaignName = "JAYRUDE_1MIL_Mages";
2024-09-29 09:22:43 +00:00
// campaignName = "TDP20AC_a_burrick_in_a_room";
// campaignName = "AtdV";
// missionName = "miss20.mis";
2024-09-29 09:22:43 +00:00
2024-10-28 20:03:20 +00:00
var lightMapper = new LightMapper(installPath, campaignName, missionName);
lightMapper.Light(false);
lightMapper.Save("kc_lit");
2024-09-23 15:57:02 +00:00
Timing.LogAll();
}
}