Changeset 1459 for code/branches
- Timestamp:
- May 28, 2008, 7:35:31 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/network/src/orxonox/hud/Navigation.cc
r1458 r1459 197 197 navMarker_->setMaterialName("Orxonox/NavTDC"); 198 198 navMarker_->setDimensions(24,24); 199 navMarker_->setUV(0.0, 0.0,1.0,1.0);199 navMarker_->setUV(0.0, 0.0, 1.0, 1.0); 200 200 navMarker_->setPosition(xPos-navMarker_->getWidth()/2, yPos-navMarker_->getHeight()/2); 201 201 navText_->setPosition(xPos+navMarker_->getWidth()/2, yPos+navMarker_->getHeight()/2); … … 205 205 void Navigation::cycleFocus(){ 206 206 if(focus_ == NULL){ 207 COUT(3) << "focus = null\n"; 207 208 it_ = HUD::getSingleton().roSet.begin(); 208 209 focus_ = *it_; 210 ++it_; 209 211 } 210 212 else{ 213 COUT(3) << "focus = " << focus_ << std::endl; 211 214 focus_->resetColour(); 212 215 if(it_ != HUD::getSingleton().roSet.end()){
Note: See TracChangeset
for help on using the changeset viewer.