correction to irr description

master
poikilos 2019-05-17 08:07:39 -04:00
parent 36a1399cb5
commit 44a842e79d
3 changed files with 6 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -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);