Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1459


Ignore:
Timestamp:
May 28, 2008, 7:35:31 PM (16 years ago)
Author:
FelixSchulthess
Message:

fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/network/src/orxonox/hud/Navigation.cc

    r1458 r1459  
    197197            navMarker_->setMaterialName("Orxonox/NavTDC");
    198198            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);
    200200            navMarker_->setPosition(xPos-navMarker_->getWidth()/2, yPos-navMarker_->getHeight()/2);
    201201            navText_->setPosition(xPos+navMarker_->getWidth()/2, yPos+navMarker_->getHeight()/2);
     
    205205    void Navigation::cycleFocus(){
    206206        if(focus_ == NULL){
     207        COUT(3) << "focus = null\n";
    207208            it_ = HUD::getSingleton().roSet.begin();
    208209            focus_ = *it_;
     210            ++it_;
    209211        }
    210212        else{
     213        COUT(3) << "focus = " << focus_ << std::endl;
    211214            focus_->resetColour();
    212215            if(it_ != HUD::getSingleton().roSet.end()){
Note: See TracChangeset for help on using the changeset viewer.