MuLLeR
02-10-2008 10:59:32
Everything is compiled fine, the samples work fine.
But when i try using it in my app, no GUI is shown (no pointer, no button)
before writing this code, i've looked into http://www.ogre3d.org/wiki/index.php/MyGUI_quickstart
the logs are totaly clead, everything is found, loaded and initialized, so i dunno what might be the problem.
But when i try using it in my app, no GUI is shown (no pointer, no button)
this->m_Gui = new MyGUI::Gui();
this->m_Gui->initialise(GraphicsManager::getSingleton().getRenderWindow());
MyGUI::ButtonPtr button = GuiManager::getSingleton().getGui()->createWidget<MyGUI::Button>("Button",
10, 10, 300, 26, MyGUI::ALIGN_DEFAULT, "Main");
button->setCaption("exit");
before writing this code, i've looked into http://www.ogre3d.org/wiki/index.php/MyGUI_quickstart
the logs are totaly clead, everything is found, loaded and initialized, so i dunno what might be the problem.