Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 22, 2008, 12:06:55 AM (16 years ago)
Author:
rgrieder
Message:
  • added blankString to String so you can return ""; even if it's a const std::string&
  • fixed several bugs with aspect correct and margin alignment
  • added console commands for OrxonoxOverlays and OverlayGroups for rotate, scale and scroll (you can access the by name (from name=.. in xml file), e.g. "OrxonoxOverlay rotateOverlay SpeedBar 90)
  • converted everything in overlays/ to 4 spaces/tab ;)
  • removed all using namespace Ogre;
  • added background_ Panel to OrxonoxOverlay, since most of the derived classes can use that
  • should work now, but I'll have to test on a tardis box first
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/hud/src/orxonox/overlays/hud/HUDSpeedBar.h

    r1614 r1615  
    3737namespace orxonox
    3838{
    39   class _OrxonoxExport HUDSpeedBar : public HUDBar, public Tickable
    40   {
     39    class _OrxonoxExport HUDSpeedBar : public HUDBar, public Tickable
     40    {
    4141    public:
    42       HUDSpeedBar();
    43       virtual ~HUDSpeedBar();
    44 
    45       //virtual void XMLPort(Element& xmlElement, XMLPort::Mode mode);
    46 
    47       virtual void tick(float dt);
     42        HUDSpeedBar();
     43        ~HUDSpeedBar();
    4844
    4945    private:
    50 
     46        void tick(float dt);
    5147    };
    5248}
Note: See TracChangeset for help on using the changeset viewer.