Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-07-29 19:36:51 +0000
committerStijn Buys <ingar@osirion.org>2008-07-29 19:36:51 +0000
commitceedc716cb0fe1e0360d2dd9e37a67ff726c4f0b (patch)
treec09228a09ea78a735c13d371659420fb3e51e754 /src/game/shipmodel.cc
parent8b356bcd3cab06db7a47f464bffef7a1b62f2d30 (diff)
first attempt at auto-leveling
Diffstat (limited to 'src/game/shipmodel.cc')
-rw-r--r--src/game/shipmodel.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/shipmodel.cc b/src/game/shipmodel.cc
index 6a226f4..8ff182f 100644
--- a/src/game/shipmodel.cc
+++ b/src/game/shipmodel.cc
@@ -15,9 +15,9 @@ std::map<std::string, ShipModel *> ShipModel::registry;
ShipModel::ShipModel()
{
//default specifications
- shipmodel_acceleration = 1.0f;
- shipmodel_maxspeed = 3.0f;
- shipmodel_turnspeed = 0.1f;
+ shipmodel_acceleration = 1.0f; // thruster acceleration in game untits/second^2
+ shipmodel_maxspeed = 3.0f; // maximum thruster speed in game units/second
+ shipmodel_turnspeed = 45.0f; // 45 degrees per second
shipmodel_jumpdrive = false;
}