Changeset 11099 for code/trunk/src/orxonox/items
- Timestamp:
- Jan 27, 2016, 6:50:51 PM (9 years ago)
- Location:
- code/trunk/src/orxonox/items
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/items/Engine.h
r11071 r11099 45 45 There are many parameters that can be specified: 46 46 - The <b>relativePosition</b>, specifies the position relative to the center of the SpaceShip the Engine is mounted on. 47 - The <b>maximal speed</b>, there are four maximal speeds that can be specified: The <b>speedfront</b>, the maximal forward speed. The <b>speedback >, the maximal backward speed. The <b>speedleftright</b>, the maximal speed in y-direction of the SpaceShip coordinate frame. The <b>speedupdown</b>, the maximal speed in z-direction of the SpaceShip coordinate frame. All maximal speeds (naturally) have to be non-negative.47 - The <b>maximal speed</b>, there are four maximal speeds that can be specified: The <b>speedfront</b>, the maximal forward speed. The <b>speedback</b>, the maximal backward speed. The <b>speedleftright</b>, the maximal speed in y-direction of the SpaceShip coordinate frame. The <b>speedupdown</b>, the maximal speed in z-direction of the SpaceShip coordinate frame. All maximal speeds (naturally) have to be non-negative. 48 48 - The <b>acceleration</b>, there are five types of acceleration that can be specified: The <b>accelerationfront</b>, the forward acceleration. The <b>accelerationbrake</b>, the braking acceleration. The <b>accelerationback</b>, the backward acceleration. The <b>accelerationleftright</b>, the acceleration in y-direction. The <b>accelerationupdown</b>, the acceleration in z-direction. All accelerations have to be non-negative. 49 49 - The <b>boostfactor</b>, specifies the factor by which boosting increases the speed. This has to be non-negative, as well. Beware that maximal speeds can be overcome through boosting. … … 213 213 /** 214 214 @brief Add to the additional forward speed factor. 215 @param factorThe speed that is added to the additional forward speed. Must be non-negative.215 @param speed The speed that is added to the additional forward speed. Must be non-negative. 216 216 */ 217 217 inline void addSpeedAdd(float speed) -
code/trunk/src/orxonox/items/PartDestructionEvent.cc
r11071 r11099 164 164 @brief 165 165 Set type of the target 166 @param param166 @param type 167 167 The desired target-type as string. Valid target-types: ship engine weapon 168 168 */ … … 197 197 Set the operation to be applied. 198 198 @param param 199 The desired parameter as string. Valid parameters: c.f. @ref orxnox::PartDestructionEvent::TargetParam199 The desired parameter as string. Valid parameters: c.f. @ref TargetParam 200 200 */ 201 201 void PartDestructionEvent::setTargetParam(std::string param) -
code/trunk/src/orxonox/items/PartDestructionEvent.h
r11071 r11099 81 81 @brief 82 82 List of all allowed parameters. 83 83 */ 84 84 enum class TargetParam 85 85 { -
code/trunk/src/orxonox/items/ShipPart.cc
r11071 r11099 116 116 @brief 117 117 Add a StaticEntity to the ShipPart. 118 @param en gine118 @param entity 119 119 A pointer to the StaticEntity to be added. 120 120 */ … … 158 158 @brief 159 159 Add a PartDestructionEvent to the ShipPart. 160 @param e ngine160 @param event 161 161 A pointer to the PartDestructionEvent to be added. 162 162 */
Note: See TracChangeset
for help on using the changeset viewer.