Changeset 10721 for code/branches/fabienHS15/src/orxonox
- Timestamp:
- Oct 29, 2015, 11:27:32 PM (9 years ago)
- Location:
- code/branches/fabienHS15/src/orxonox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/fabienHS15/src/orxonox/overlays/OrxonoxOverlay.h
r9667 r10721 65 65 only for displaying a picture). 66 66 - Reacts to changes of the window aspect 67 - Last but not least: On demand you can tell the overlay to automatically res ale to correct for67 - Last but not least: On demand you can tell the overlay to automatically rescale to correct for 68 68 aspect distortion. E.g. if you play 1024x768 you wouldn't want a round object to be oval. 69 69 Remark: This can (due to the Ogre::Overlay transformation order) only work for angle that are -
code/branches/fabienHS15/src/orxonox/weaponsystem/Munition.cc
r10714 r10721 302 302 } 303 303 304 // If we reached the limit, redu ze both magazines and munition to the maximum304 // If we reached the limit, reduce both magazines and munition to the maximum 305 305 if (this->magazines_ >= this->maxMagazines_) 306 306 { 307 this->magazines_ = this->maxMagazines_ - 1;307 this->magazines_ = this->maxMagazines_; 308 308 magazine->munition_ = this->maxMunitionPerMagazine_; 309 309 }
Note: See TracChangeset
for help on using the changeset viewer.