aboutsummaryrefslogtreecommitdiff
path: root/src/example/rendering.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/example/rendering.cpp')
-rw-r--r--src/example/rendering.cpp17
1 files changed, 9 insertions, 8 deletions
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 <crepe/ComponentManager.h>
-#include <crepe/GameObject.h>
+#include <crepe/api/GameObject.h>
#include <crepe/RenderSystem.h>
#include <crepe/util/log.h>
@@ -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<Texture>("../asset/texture/img.png"), color,
flip_settings{true, true});
}
+
+
{
Color color(0, 0, 0, 0);
Point point = {
.x = 500,
.y = 0,
};
- obj.add_component<Transform>(point, 0, 0.1);
+ obj1.add_component<Transform>(point, 0, 0.1);
auto img = mgr.cache<Texture>("../asset/texture/second.png");
- obj.add_component<Sprite>(img, color,
+ obj1.add_component<Sprite>(img, color,
flip_settings{true, true});
}
+
{
Color color(0, 0, 0, 0);
Point point = {
@@ -59,13 +62,11 @@ int main() {
};
//obj.add_component<Transform>(point, 0, 0.1);
auto img = mgr.cache<Texture>("../asset/texture/second.png");
- obj.add_component<Sprite>(img, color,
+ obj2.add_component<Sprite>(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)) {