Changeset 3300 for code/trunk/src/orxonox/objects/worldentities
- Timestamp:
- Jul 17, 2009, 11:53:35 PM (16 years ago)
- Location:
- code/trunk/src/orxonox/objects/worldentities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/objects/worldentities/ParticleEmitter.h
r3280 r3300 64 64 protected: 65 65 inline void setLODxml(unsigned int level) 66 { this->LOD_ = (LODParticle::Value)level; this->LODchanged(); }66 { this->LOD_ = static_cast<LODParticle::Value>(level); this->LODchanged(); } 67 67 inline unsigned int getLODxml() const 68 68 { return (unsigned int)this->LOD_; } -
code/trunk/src/orxonox/objects/worldentities/pawns/Pawn.cc
r3280 r3300 281 281 else 282 282 { 283 callMemberNetworkFunction(Pawn, doFire, this->getObjectID(), 0, ((uint8_t)firemode));283 callMemberNetworkFunction(Pawn, doFire, this->getObjectID(), 0, firemode); 284 284 if (this->weaponSystem_) 285 285 this->weaponSystem_->fire(firemode);
Note: See TracChangeset
for help on using the changeset viewer.