Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 15, 2010, 8:14:03 AM (15 years ago)
Author:
dafrick
Message:

Fixing bug I introduced.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/modules/pickup/items/InvisiblePickup.h

    r7541 r7544  
    6565            InvisiblePickup(BaseObject* creator); //!< Constructor.
    6666            virtual ~InvisiblePickup(); //!< Destructor.
     67           
    6768            virtual void XMLPort(Element& xmlelement, orxonox::XMLPort::Mode mode); //!< Method for creating a HealthPickup object through XML.
    6869            virtual void changedUsed(void); //!< Is called when the pickup has transited from used to unused or the other way around.
     
    7576            inline bool getInvisibility(bool)
    7677                { return this->invisible_; }
    77             inline float getDuration()
     78            /**
     79            @brief Get the time the InvisibilityPickup lasts.
     80            @return Returns the time in seconds the InvisibiltyPickup lasts.
     81            */
     82            inline float getDuration(void)
    7883                { return this->duration_; }
    7984
    8085        protected:
     86            void initializeIdentifier(void);
     87
    8188            bool setInvisible(bool invisibility); //!< Set the Pawn to be invisible or visible again.
    82             void setDuration(float duration);
    83             void initializeIdentifier(void);
    84             void pickupTimerCallback(void); //!< Function that gets called when the timer ends.
     89            void setDuration(float duration); //!< Sets the time the InvisibilityPickup will last.
     90
     91            void pickupTimerCallback(void); //!< Helper method. Is called by the Timer as soon as it expires.
    8592
    8693        private:
Note: See TracChangeset for help on using the changeset viewer.