diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-27 19:22:49 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-27 19:22:49 -0400 |
commit | da4bd0b57b1ce5cdb56e6f8d9870998cbdd176f4 (patch) | |
tree | a901b069cdf8a6cf1beb0245ee02d25b898b25b9 /include | |
parent | 9d53b5e235a991458f9c869fb07cea23ee36a560 (diff) |
gravity?
Diffstat (limited to 'include')
-rw-r--r-- | include/components.hpp | 4 | ||||
-rw-r--r-- | include/player.hpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/components.hpp b/include/components.hpp index fe56a88..20a1419 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -98,7 +98,7 @@ struct Physics : public Component { * Constructor that sets the gravity constant, if not specified it becomes 0. * @param g The non default gravity constant. */ - Physics(float g = 1.0f): g(g) {} + Physics(float g = 0.2f): g(g) {} Physics(XMLElement* imp, XMLElement* def) { fromXML(imp, def); } @@ -108,7 +108,7 @@ struct Physics : public Component { void fromXML(XMLElement* imp, XMLElement* def) final { if (imp->QueryFloatAttribute("gravity", &g) != XML_NO_ERROR) { if (def->QueryFloatAttribute("value", &g) != XML_NO_ERROR) - g = 1.0f; + g = 0.2f; } } }; diff --git a/include/player.hpp b/include/player.hpp index 2c65717..efac984 100644 --- a/include/player.hpp +++ b/include/player.hpp @@ -15,7 +15,7 @@ /** * The constant velocity the player is given when moved with the arrow keys. */ -constexpr const float PLAYER_SPEED_CONSTANT = 0.15f; +constexpr const float PLAYER_SPEED_CONSTANT = 0.03f; /** * @class PlayerSystem |