Changeset 11840 for code/branches/RacingBots_FS18/src/orxonox/worldentities
- Timestamp:
- Mar 29, 2018, 3:57:54 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/RacingBots_FS18/src/orxonox/worldentities/pawns/SpaceShip.h
r11052 r11840 103 103 */ 104 104 virtual void moveFrontBack(const Vector2& value) 105 { this->steering_.z -= value.x; }105 { this->steering_.z -= (0.8)*value.x; } 106 106 /** 107 107 @brief Move right or left. … … 109 109 */ 110 110 virtual void moveRightLeft(const Vector2& value) 111 { this->steering_.x += value.x; }111 { this->steering_.x += (0.6)*value.x; } 112 112 /** 113 113 @brief Move up or down. … … 115 115 */ 116 116 virtual void moveUpDown(const Vector2& value) 117 { this->steering_.y += value.x; }117 { this->steering_.y += (0.6)*value.x; } 118 118 119 119 virtual void rotateYaw(const Vector2& value); // Rotate in yaw direction.
Note: See TracChangeset
for help on using the changeset viewer.