- Timestamp:
- Feb 20, 2011, 12:33:06 AM (14 years ago)
- Location:
- code/branches/hudimprovements
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/hudimprovements/data/overlays/HUDTemplates3.oxo
r7679 r7920 35 35 background = "Orxonox/HealthBarBackground" 36 36 size = "0.35, 0.0875" 37 position = "0.0 , 0.9 5"37 position = "0.0 , 0.9 " 38 38 pickpoint = "0, 1" 39 39 bartexture = "healthbar_bar.png" … … 56 56 background = "Orxonox/BarBackground" 57 57 size = "0.35, 0.05" 58 position = "0.0 , 1.0"58 position = "0.0 , 0.95 " 59 59 pickpoint = "0, 1" 60 60 correctaspect = false … … 64 64 <BarColour position = 1.0 colour = "0.7,0.2,0.2" /> 65 65 </HUDSpeedBar> 66 67 <HUDBoostBar 68 name = "BoostBar1" 69 background = "Orxonox/BarBackground" 70 size = "0.35, 0.05" 71 position = "0.0 , 1.0 " 72 pickpoint = "0, 1" 73 correctaspect = false 74 > 75 <BarColour position = 0.0 colour = "0.7,0.2,0.2" /> 76 <BarColour position = 0.5 colour = "0.7,0.7,0.2" /> 77 <BarColour position = 1.0 colour = "0.2,0.7,0.2" /> 78 </HUDBoostBar> 66 79 67 80 <HUDNavigation -
code/branches/hudimprovements/src/modules/overlays/OverlaysPrereqs.h
r7655 r7920 86 86 class HUDRadar; 87 87 class HUDSpeedBar; 88 class HUDBoostBar; 88 89 class HUDTimer; 89 90 class KillMessage; -
code/branches/hudimprovements/src/modules/overlays/hud/CMakeLists.txt
r7655 r7920 4 4 HUDRadar.cc 5 5 HUDSpeedBar.cc 6 HUDBoostBar.cc 6 7 HUDHealthBar.cc 7 8 HUDTimer.cc -
code/branches/hudimprovements/src/orxonox/worldentities/pawns/SpaceShip.h
r7801 r7920 74 74 { return this->bBoost_; } 75 75 76 inline float getBoostPower() 77 { return this->boostPower_; } 78 inline float getInitialBoostPower() 79 { return this->initialBoostPower_; } 80 76 81 inline void setEngineTemplate(const std::string& temp) 77 82 { this->enginetemplate_ = temp; this->loadEngineTemplate(); } … … 108 113 109 114 void loadEngineTemplate(); 110 115 111 116 void boostCooledDown(void); 112 117
Note: See TracChangeset
for help on using the changeset viewer.