Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 25, 2009, 11:16:27 PM (16 years ago)
Author:
landauf
Message:

Added Attacher - a class which attaches itself to an object with a given name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/objects/worldentities/WorldEntity.h

    r2851 r3077  
    173173            void detachFromNode(Ogre::SceneNode* node);
    174174
     175            inline void setDeleteWithParent(bool value)
     176                { this->bDeleteWithParent_ = value; }
     177            inline bool getDeleteWithParent() const
     178                { return this->bDeleteWithParent_; }
     179
    175180            void notifyChildPropsChanged();
    176181
     
    200205            unsigned int parentID_;
    201206            std::set<WorldEntity*> children_;
     207            bool bDeleteWithParent_;
    202208
    203209
Note: See TracChangeset for help on using the changeset viewer.