Changeset 8733 for code/branches/ai2/src/orxonox/worldentities
- Timestamp:
- Jul 5, 2011, 11:59:37 PM (13 years ago)
- Location:
- code/branches/ai2/src/orxonox/worldentities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ai2/src/orxonox/worldentities/ControllableEntity.cc
r8706 r8733 74 74 this->bMouseLook_ = false; 75 75 this->mouseLookSpeed_ = 200; 76 this->bIsRocket_ = false; 76 77 77 78 this->server_position_ = Vector3::ZERO; -
code/branches/ai2/src/orxonox/worldentities/ControllableEntity.h
r8723 r8733 164 164 void setTargetInternal( uint32_t targetID ); 165 165 inline bool getRocket() const 166 { return this-> bIsRocket ; }166 { return this-> bIsRocket_; } 167 167 168 168 protected: … … 183 183 184 184 Ogre::SceneNode* cameraPositionRootNode_; 185 bool bIsRocket ; //Workaround to see, if the controllable entity is a Rocket.185 bool bIsRocket_; //Workaround to see, if the controllable entity is a Rocket. 186 186 187 187 private:
Note: See TracChangeset
for help on using the changeset viewer.