We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63aec50 commit 3262dc5Copy full SHA for 3262dc5
PlayState.h
@@ -19,7 +19,7 @@ class PlayState : public GameState
19
GameStateManager& m_GameStateManager;
20
int m_CanvasWidth{};
21
int m_CanvasHeight{};
22
- Witch witch{ m_CanvasHeight, 0.5f, 0.6f };
+ Witch witch{ m_CanvasHeight, 0.45f, 0.6f };
23
Bat bat{ *witch.getPosition() };
24
25
std::unique_ptr<BackgroundLayer> backgroundLayers[6]{
Witch.h
@@ -28,7 +28,7 @@ class Witch
28
Vector2 position{ 10, 0 };
29
int velocity{};
30
int gravity{ 400 };
31
- int jumpForce{ -180 };
+ int jumpForce{ -175 };
32
33
bool dead{ false };
34
};
0 commit comments