Changeset 3192 for code/branches/pch/src/orxonox/overlays/hud
- Timestamp:
- Jun 18, 2009, 10:00:15 AM (16 years ago)
- Location:
- code/branches/pch/src/orxonox/overlays/hud
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/orxonox/overlays/hud/HUDBar.cc
r3144 r3192 78 78 this->textureUnitState_->setTextureName("bar2.tga"); 79 79 // use the default colour 80 this->textureUnitState_->setColourOperationEx(Ogre::LBX_MODULATE, Ogre::LBS_MANUAL, Ogre::LBS_CURRENT, ColourValue(0.2 , 0.7, 0.2));80 this->textureUnitState_->setColourOperationEx(Ogre::LBX_MODULATE, Ogre::LBS_MANUAL, Ogre::LBS_CURRENT, ColourValue(0.2f, 0.7f, 0.2f)); 81 81 82 82 this->bar_ = static_cast<Ogre::PanelOverlayElement*>(Ogre::OverlayManager::getSingleton() -
code/branches/pch/src/orxonox/overlays/hud/HUDBar.h
r3144 r3192 36 36 #include <map> 37 37 #include <vector> 38 #include <OgrePrerequisites.h>39 38 40 39 #include "util/Math.h" 40 #include "util/OgreForwardRefs.h" 41 41 #include "core/BaseObject.h" 42 42 #include "overlays/OrxonoxOverlay.h" -
code/branches/pch/src/orxonox/overlays/hud/HUDNavigation.h
r3177 r3192 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include <OgrePrerequisites.h>34 #include "util/OgreForwardRefs.h" 35 35 #include "interfaces/Tickable.h" 36 36 #include "overlays/OrxonoxOverlay.h" -
code/branches/pch/src/orxonox/overlays/hud/HUDRadar.h
r3177 r3192 35 35 #include <map> 36 36 #include <vector> 37 #include <OgrePrerequisites.h>38 37 38 #include "util/OgreForwardRefs.h" 39 39 #include "interfaces/RadarListener.h" 40 40 #include "interfaces/RadarViewable.h" -
code/branches/pch/src/orxonox/overlays/hud/UnderAttackHealthBar.cc
r3110 r3192 47 47 this->text_ = new OverlayText(this); 48 48 this->text_->setFont("Monofur"); 49 this->text_->setTextSize(0.04 );49 this->text_->setTextSize(0.04f); 50 50 this->text_->setAlignmentString("center"); 51 51 this->text_->setColour(ColourValue::White);
Note: See TracChangeset
for help on using the changeset viewer.