Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2152


Ignore:
Timestamp:
Nov 6, 2008, 2:59:24 PM (15 years ago)
Author:
bhildebr
Message:

CMakeLists.txt updated, background added

Location:
code/branches/overlay/src/orxonox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/overlay/src/orxonox/CMakeLists.txt

    r2106 r2152  
    3535  overlays/hud/HUDSpeedBar.cc
    3636  overlays/hud/ChatOverlay.cc
     37
     38  overlays/stats/Stats.cc
     39  overlays/stats/StatsTest.cc
    3740
    3841  tools/BillboardSet.cc
  • code/branches/overlay/src/orxonox/overlays/stats/Stats.cc

    r2140 r2152  
    5959
    6060    /**
    61         @brief Sets the config values, describing the size of the stats panel.
     61        @brief Sets the config values, describing the size of the Stats panel.
    6262    */
    6363    void Stats::setConfigValues()
     
    7979        this->statsOverlayBorder_ = static_cast<Ogre::BorderPanelOverlayElement*>(ovMan->createOverlayElement("BorderPanel", "StatsBorderPanel"));
    8080        this->statsOverlayBorder_->setMaterialName("StatsCenter");
    81         this->statsOverlayBorder_->setBorderSize(0.05, 0.05, 0.05, 0.05);
     81        this->statsOverlayBorder_->setBorderSize(0.02, 0.02, 0.02, 0.02);
    8282        this->statsOverlayBorder_->setBorderMaterialName("StatsBorder");
    8383        this->statsOverlayBorder_->setTopBorderUV(0.49, 0.0, 0.51, 0.5);
     
    9494        // create noise
    9595        this->statsOverlayNoise_ = static_cast<Ogre::PanelOverlayElement*>(ovMan->createOverlayElement("Panel", "StatsNoise"));
    96         this->statsOverlayNoise_->setPosition(0.02,0);
     96        this->statsOverlayNoise_->setPosition(0,0);
    9797        this->statsOverlayNoise_->setMaterialName("StatsNoiseSmall");
    9898        // comment following line to disable noise
Note: See TracChangeset for help on using the changeset viewer.