Changeset 10616 for code/branches
- Timestamp:
- Oct 4, 2015, 12:20:35 PM (9 years ago)
- Location:
- code/branches/presentationFS15merge
- Files:
-
- 7 edited
- 10 copied
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentationFS15merge
- Property svn:mergeinfo changed
/code/branches/weaponFS15 (added) merged: 10302,10326,10336,10341,10369,10391,10409,10435-10436,10438,10455,10502-10503,10601-10602,10604
- Property svn:mergeinfo changed
-
code/branches/presentationFS15merge/src/modules/objects/ForceField.h
r9939 r10616 160 160 const std::string& getMode(void); //!< Get the mode of the ForceField. 161 161 162 private:163 162 //! Strings to represent the modes. 164 163 static const std::string modeTube_s; … … 166 165 static const std::string modeInvertedSphere_s; 167 166 static const std::string modeNewtonianGravity_s; 168 169 167 static const std::string modeHomogen_s; 170 168 169 private: 171 170 float velocity_; //!< The velocity of the ForceField. 172 171 float radius_; //!< The radius of the ForceField. -
code/branches/presentationFS15merge/src/modules/weapons/WeaponsPrereqs.h
r10613 r10616 75 75 class ReplenishingMunition; 76 76 class RocketMunition; 77 class GravityBombMuntion; 77 78 78 79 // projectiles … … 84 85 class RocketOld; 85 86 class SimpleRocket; 87 class GravityBomb; 86 88 87 89 // weaponmodes … … 94 96 class RocketFireOld; 95 97 class SimpleRocketFire; 98 class GravityBombFire; 96 99 } 97 100 -
code/branches/presentationFS15merge/src/modules/weapons/munitions/CMakeLists.txt
r7846 r10616 4 4 FusionMunition.cc 5 5 RocketMunition.cc 6 GravityBombMunition.cc 6 7 ) -
code/branches/presentationFS15merge/src/modules/weapons/projectiles/CMakeLists.txt
r10613 r10616 8 8 RocketOld.cc 9 9 SimpleRocket.cc 10 GravityBomb.cc 11 GravityBombField.cc 10 12 ) -
code/branches/presentationFS15merge/src/modules/weapons/projectiles/LightningGunProjectile.cc
r9667 r10616 47 47 48 48 this->textureIndex_ = 1; 49 this->setMass(2); 50 this->setCollisionType(Dynamic); 49 51 this->maxTextureIndex_ = 8; 50 52 this->textureTimer_.setTimer(0.01f, true, createExecutor(createFunctor(&LightningGunProjectile::changeTexture, this))); -
code/branches/presentationFS15merge/src/modules/weapons/weaponmodes/CMakeLists.txt
r10613 r10616 8 8 RocketFireOld.cc 9 9 SimpleRocketFire.cc 10 GravityBombFire.cc 10 11 )
Note: See TracChangeset
for help on using the changeset viewer.