diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2025-01-10 11:04:56 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2025-01-10 11:04:56 +0100 |
commit | 8d46ad5a20d1aa5b784291ae323e38d1e0d59351 (patch) | |
tree | 32a54bc4469cb894aa009736e070bdc382e48e76 /game/Config.h | |
parent | 64a0cf67d6c299a099b48ce083b1f3a688787cb3 (diff) | |
parent | d20b25828b53af170a6534263e8de114e7fac121 (diff) |
Merge branch 'master' of github.com:lonkaars/crepe into jaro/game
Diffstat (limited to 'game/Config.h')
-rw-r--r-- | game/Config.h | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/game/Config.h b/game/Config.h index 391fd76..fc1a561 100644 --- a/game/Config.h +++ b/game/Config.h @@ -1,16 +1,6 @@ #pragma once -#include "types.h" - -#include <crepe/api/Config.h> -static const crepe::Config ENGINE_CONFIG { - .log { - .level = crepe::Log::Level::DEBUG, - }, - .window_settings { - .window_title = "Jetpack joyride clone", - }, -}; +#include "types.h" static constexpr int SORT_IN_LAY_BACK_BACKGROUND = 3; // For all scenes static constexpr int SORT_IN_LAY_BACKGROUND = 4; // For all scenes @@ -59,7 +49,9 @@ static constexpr const char * DISTANCE_RUN = "distance_run"; // Player config static constexpr const char * PLAYER_NAME = "player"; static constexpr int PLAYER_SPEED = 7500; // In game units -static constexpr int PLAYER_GRAVITY_SCALE = 60; // In game units +static constexpr float PLAYER_GRAVITY_SCALE = 3; // factor +static constexpr float PLAYER_HELP_KICK_SCALE = 0.2; // factor +static constexpr float PLAYER_HELP_KICK_MAX = 0.3; // factor static constexpr const char * CAMERA_NAME = "camera"; // Jetpack particles |