Nekomaru
19-10-2010 12:28:22
Hello there. I try to create a window with MuGUI. There is a MyGUI code in my application :
But get an runtime error and record in log:
What should i do?
using namespace MyGUI;
OgrePlatform *ogrePlatform = new OgrePlatform();
ogrePlatform->initialise(window, sManager);
Gui *gui = new Gui();
gui->initialise();
LayerManager::getInstance().load("core.xml");
SkinManager::getInstance().load("core_skin.xml");
Window *wnd = gui->createWidget<Window>("Window", 10, 10, 300, 26, Align::Default, "Main");
But get an runtime error and record in log:
17:55:51 | Core | Error | SkinManager : 'core_skin.xml', type 'Skin' not found | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 210
What should i do?