Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 14, 2008, 6:37:12 PM (16 years ago)
Author:
rgrieder
Message:
  • new folder structure for overlays:

orxonox/


overlays/

console/
hud/

  • Navigation —> HUDNavigation
  • HUD —> OverlayGroup (not yet begun with that except renaming and getHUD() instead of getSingleton())
  • moved HUD.oxo (file ending should stand for orxonox overlay) to media repository in overlay folder
  • fixed a bug with console noiseSize_ config value (was inverted..)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/hud/src/orxonox/objects/SpaceShip.cc

    r1590 r1601  
    4949#include "core/ConsoleCommand.h"
    5050#include "network/Client.h"
    51 #include "hud/HUD.h"
     51#include "overlays/OverlayGroup.h"
    5252
    5353namespace orxonox
     
    152152
    153153            if (!this->myShip_)
    154                 HUD::getSingleton().removeRadarObject(this);
     154                OverlayGroup::getHUD().removeRadarObject(this);
    155155        }
    156156    }
     
    161161          myShip_=true;
    162162        else
    163           HUD::getSingleton().addRadarObject(this, this->getProjectileColour());
     163          OverlayGroup::getHUD().addRadarObject(this, this->getProjectileColour());
    164164      }
    165165      if(Model::create())
Note: See TracChangeset for help on using the changeset viewer.