diff options
author | Treeki <treeki@gmail.com> | 2011-05-07 03:50:42 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2011-05-07 03:50:42 +0200 |
commit | b726fbe95fa850f1e51dbc6a4a76f701dbb1db6b (patch) | |
tree | dbeda734bb92f8e062bb44a1dc04763537a49c99 /ConsoleApp/Main.cs | |
parent | 30a400a14b2cda40bd87234b284d692dbe540736 (diff) | |
download | nw4rtools-b726fbe95fa850f1e51dbc6a4a76f701dbb1db6b.tar.gz nw4rtools-b726fbe95fa850f1e51dbc6a4a76f701dbb1db6b.zip |
added render-model command to ConsoleApp
Diffstat (limited to 'ConsoleApp/Main.cs')
-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"); |