diff --git a/CHANGELOG.md b/CHANGELOG.md index df3b009..13c4fc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,8 @@ * export COLLADA (non-Blender), IRR, IRRMESH, OBJ, STL * show dialog box if operation can't be performed - improve error reporting in called methods -* add irr mimetype (Irrlicht Scene, including animations) +* add irr mimetype (Irrlicht Scene, mesh file references and settings + only) * add irrlicht mimetype (static/non-animated Irrlicht mesh) ## [git] - 2019-04-19 diff --git a/README.md b/README.md index 817f1e6..cbb469c 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,9 @@ Website: [poikilos.org](https://poikilos.org) * hotkeys to cycle through textures and reload model OR texture (see [Usage](#Usage) below). * see also CHANGELOG.md -* export feature: COLLADA (non-Blender), IRR (Irrlicht Scene including - animations), IRRMESH (Static Irrlicht Mesh), OBJ (Wavefront), STL - (stereolithography) +* export feature: COLLADA (non-Blender), IRR (Irrlicht Scene settings + and mesh file paths only), IRRMESH (Static Irrlicht Mesh), OBJ + (Wavefront), STL (stereolithography) ## Compile (the original version of this section is from diff --git a/UserInterface.cpp b/UserInterface.cpp index 9caa1f7..ac30c80 100644 --- a/UserInterface.cpp +++ b/UserInterface.cpp @@ -40,7 +40,7 @@ void UserInterface::setupUserInterface() fileMenu->addItem(L"Previous Texture Shift F3", UIC_FILE_PREVIOUS_TEXTURE); fileMenu->addItem(L"Next Texture F3", UIC_FILE_NEXT_TEXTURE); fileMenu->addItem(L"Export DAE (non-Blender COLLADA)", UIC_FILE_EXPORT_DAE); - fileMenu->addItem(L"Export IRR (Irrlicht Scene)", UIC_FILE_EXPORT_IRR); + fileMenu->addItem(L"Export IRR (Irrlicht Scene settings and mesh paths only)", UIC_FILE_EXPORT_IRR); fileMenu->addItem(L"Export IRRMESH (Static Irrlicht Mesh)", UIC_FILE_EXPORT_IRRMESH); fileMenu->addItem(L"Export OBJ (Wavefront)", UIC_FILE_EXPORT_OBJ); fileMenu->addItem(L"Export STL (stereolithography)", UIC_FILE_EXPORT_STL);