aboutsummaryrefslogtreecommitdiff
path: root/src/example
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-11 18:51:58 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-11 18:51:58 +0100
commit313da47b72aafa0b40ac2cd2b586d525ed17fbd4 (patch)
tree428ec8c384b2ec8039013cbb540378a292bce128 /src/example
parenta2b67f879e2073c5b094c9a480bf637c98703001 (diff)
more WIP
Diffstat (limited to 'src/example')
-rw-r--r--src/example/replay.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/example/replay.cpp b/src/example/replay.cpp
index 67acbd8..2f9c63e 100644
--- a/src/example/replay.cpp
+++ b/src/example/replay.cpp
@@ -2,6 +2,7 @@
#include <crepe/api/BoxCollider.h>
#include <crepe/api/Camera.h>
#include <crepe/api/Color.h>
+#include <crepe/api/Config.h>
#include <crepe/api/Event.h>
#include <crepe/api/GameObject.h>
#include <crepe/api/LoopManager.h>
@@ -45,22 +46,17 @@ public:
default: break;
case 10:
mgr.record_start();
- Log::logf("start");
break;
case 60:
this->recording = mgr.record_end();
- Log::logf("stop");
break;
case 70:
mgr.play(this->recording);
- Log::logf("play");
break;
case 71:
mgr.release(this->recording);
- Log::logf("end");
break;
case 72:
- Log::logf("exit");
throw;
break;
};
@@ -97,6 +93,8 @@ public:
};
int main(int argc, char * argv[]) {
+ Config & cfg = Config::get_instance();
+ cfg.log.level = Log::Level::DEBUG;
LoopManager gameloop;
gameloop.add_scene<TestScene>();