Changeset 9016 for code/trunk/src/orxonox/worldentities/pawns
- Timestamp:
- Feb 15, 2012, 11:51:58 PM (13 years ago)
- Location:
- code/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/worldentities/pawns/FpsPlayer.cc
r8858 r9016 270 270 } 271 271 272 void FpsPlayer::boost( ) //acctually jump272 void FpsPlayer::boost(bool bBoost) //acctually jump 273 273 { 274 274 if (this->isFloor_) -
code/trunk/src/orxonox/worldentities/pawns/FpsPlayer.h
r7163 r9016 65 65 { return this->meshSrc_; } 66 66 67 void boost( ); //acctually jump67 void boost(bool bBoost); //acctually jump 68 68 69 69 virtual void fire(); -
code/trunk/src/orxonox/worldentities/pawns/Pawn.cc
r8891 r9016 129 129 XMLPortParam(Pawn, "reloadrate", setReloadRate, getReloadRate, xmlelement, mode).defaultValues(0); 130 130 XMLPortParam(Pawn, "reloadwaittime", setReloadWaitTime, getReloadWaitTime, xmlelement, mode).defaultValues(1.0f); 131 132 XMLPortParam ( RadarViewable, "RVName", setRVName, getRVName, xmlelement, mode ); 131 133 } 132 134 … … 455 457 SUPER(Pawn, changedActivity); 456 458 457 this->setRadarVisibility(this->is Active());459 this->setRadarVisibility(this->isVisible()); 458 460 } 459 461 -
code/trunk/src/orxonox/worldentities/pawns/Pawn.h
r8891 r9016 53 53 inline bool isAlive() const 54 54 { return this->bAlive_; } 55 55 56 56 57 virtual void setHealth(float health); … … 194 195 { return NULL; } 195 196 197 196 198 float health_; 197 199 float maxHealth_;
Note: See TracChangeset
for help on using the changeset viewer.