diff options
Diffstat (limited to '')
-rw-r--r-- | ConsoleApp/Main.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ConsoleApp/Main.cs b/ConsoleApp/Main.cs index 56f2a8d..580d398 100644 --- a/ConsoleApp/Main.cs +++ b/ConsoleApp/Main.cs @@ -16,6 +16,7 @@ namespace ConsoleApp { CommandLookup.Add("export-collada", new ExportColladaCommand()); CommandLookup.Add("export-textures", new ExportTexturesCommand()); CommandLookup.Add("replace-image", new ReplaceImageCommand()); + CommandLookup.Add("render-model", new RenderModelCommand()); } public static void Main(string[] args) { @@ -23,6 +24,8 @@ namespace ConsoleApp { //args = new string[] { "list", "/home/me/Dropbox/NEWERsmbw/bigbrick/big_renga_block.brres" }; //System.IO.Directory.SetCurrentDirectory("/home/me/Games/Newer/CGround"); //args = new string[] { "export-collada", "regular.brres", "large.dae", "circle_ground_L" }; + //System.IO.Directory.SetCurrentDirectory("/home/me/Games/Newer/ModelRev"); + //args = new string[] { "import-obj", "MMFullWorld.brres", "fullworld-Z19nvrc.obj", "WorldBase", "map" }; Console.WriteLine("NW4RTools by Treeki"); |