From c9246515fe785563411e9170aedd0231165ab988 Mon Sep 17 00:00:00 2001 From: heavydemon21 Date: Wed, 23 Oct 2024 19:56:28 +0200 Subject: rendering and assetmanager --- src/example/CMakeLists.txt | 2 -- src/example/rendering.cpp | 17 +++++++++-------- 2 files changed, 9 insertions(+), 10 deletions(-) (limited to 'src/example') diff --git a/src/example/CMakeLists.txt b/src/example/CMakeLists.txt index 368aa2e..4295d19 100644 --- a/src/example/CMakeLists.txt +++ b/src/example/CMakeLists.txt @@ -23,5 +23,3 @@ add_example(rendering) add_example(asset_manager) add_example(particle) add_example(Physics) -add_example(particle) -add_example(Physics) diff --git a/src/example/rendering.cpp b/src/example/rendering.cpp index 34d9f66..1d83004 100644 --- a/src/example/rendering.cpp +++ b/src/example/rendering.cpp @@ -1,7 +1,7 @@ #include -#include +#include #include #include @@ -24,8 +24,8 @@ int main() { dbg_trace(); auto obj = GameObject(0, "name", "tag", 0); - auto obj1= GameObject(0, "name", "tag", 0); - auto obj2 = GameObject(0, "name", "tag", 0); + auto obj1= GameObject(1, "name", "tag", 0); + auto obj2 = GameObject(2, "name", "tag", 0); auto& mgr = AssetManager::get_instance(); // Normal adding components @@ -40,17 +40,20 @@ int main() { make_shared("../asset/texture/img.png"), color, flip_settings{true, true}); } + + { Color color(0, 0, 0, 0); Point point = { .x = 500, .y = 0, }; - obj.add_component(point, 0, 0.1); + obj1.add_component(point, 0, 0.1); auto img = mgr.cache("../asset/texture/second.png"); - obj.add_component(img, color, + obj1.add_component(img, color, flip_settings{true, true}); } + { Color color(0, 0, 0, 0); Point point = { @@ -59,13 +62,11 @@ int main() { }; //obj.add_component(point, 0, 0.1); auto img = mgr.cache("../asset/texture/second.png"); - obj.add_component(img, color, + obj2.add_component(img, color, flip_settings{true, true}); } - - auto & sys = crepe::RenderSystem::get_instance(); auto start = std::chrono::steady_clock::now(); while (std::chrono::steady_clock::now() - start < std::chrono::seconds(5)) { -- cgit v1.2.3