Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 13, 2009, 11:31:30 AM (14 years ago)
Author:
rgrieder
Message:

Moved an inline function to the source in OrxonoxOverlay.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/overlays/OrxonoxOverlay.cc

    r5980 r6057  
    359359            (*it).second->rotate(angle);
    360360    }
     361
     362    void OrxonoxOverlay::setOverlayGroup(OverlayGroup* group)
     363    {
     364        if (group != this->group_)
     365        {
     366            if (this->group_)
     367                this->group_->removeElement(this);
     368            this->group_ = group;
     369            this->changedOverlayGroup();
     370        }
     371    }
    361372}
Note: See TracChangeset for help on using the changeset viewer.