- integrated Yacobys landscape. First commit.

git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@112 ea6a568a-9f4f-0410-981a-c910a81bb256
This commit is contained in:
nkorslund 2009-05-15 07:04:50 +00:00
parent ea486dd770
commit a46804dae3
32 changed files with 3976 additions and 212 deletions

View file

@ -450,6 +450,12 @@ extern "C" void gui_toggleGui()
extern "C" int32_t* gui_getGuiModePtr() { return &guiMode; }
extern "C" void gui_showHUD()
{
if(hud)
hud->setVisible(true);
}
extern "C" void gui_setupGUI(int32_t debugOut)
{
ResourceGroupManager::getSingleton().
@ -480,7 +486,6 @@ extern "C" void gui_setupGUI(int32_t debugOut)
state.X.abs = mWidth / 2;
state.Y.abs = mHeight / 2;
//*
// Set up the HUD
hud = new HUD();
@ -494,7 +499,8 @@ extern "C" void gui_setupGUI(int32_t debugOut)
hud->setSpellStatus(65, 100);
hud->setEffect("icons\\s\\tx_s_chameleon.dds");
//*/
hud->setVisible(false);
//new MainMenu();
}