aboutsummaryrefslogtreecommitdiff
path: root/src/example/rendering.cpp
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-11-05 13:20:44 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-11-05 13:20:44 +0100
commitb3e991afa5c3c362317616aad68e30889cf3ef40 (patch)
treee811ca01986c21e4ad3a94f858f5d493faa3ff47 /src/example/rendering.cpp
parent6aa2084b52e632447267bdff5342aa7af224f1d4 (diff)
Changed examples a bit to work with new GameObject class
Diffstat (limited to 'src/example/rendering.cpp')
-rw-r--r--src/example/rendering.cpp21
1 files changed, 3 insertions, 18 deletions
diff --git a/src/example/rendering.cpp b/src/example/rendering.cpp
index 1bf448c..9624093 100644
--- a/src/example/rendering.cpp
+++ b/src/example/rendering.cpp
@@ -23,19 +23,14 @@ int main() {
dbg_trace();
- auto obj = GameObject(0, "name", "tag", 0);
- auto obj1 = GameObject(1, "name", "tag", 0);
- auto obj2 = GameObject(2, "name", "tag", 0);
+ auto obj = GameObject(0, "name", "tag", Point{0, 0}, 1, 1);
+ auto obj1 = GameObject(1, "name", "tag", Point{500, 0}, 1, 0.1);
+ auto obj2 = GameObject(2, "name", "tag", Point{800, 0}, 1, 0.1);
auto & mgr = AssetManager::get_instance();
// Normal adding components
{
Color color(0, 0, 0, 0);
- Point point = {
- .x = 0,
- .y = 0,
- };
- obj.add_component<Transform>(point, 1, 1);
obj.add_component<Sprite>(
make_shared<Texture>("../asset/texture/img.png"), color,
FlipSettings{true, true});
@@ -43,22 +38,12 @@ int main() {
{
Color color(0, 0, 0, 0);
- Point point = {
- .x = 500,
- .y = 0,
- };
- obj1.add_component<Transform>(point, 0, 0.1);
auto img = mgr.cache<Texture>("../asset/texture/second.png");
obj1.add_component<Sprite>(img, color, FlipSettings{true, true});
}
{
Color color(0, 0, 0, 0);
- Point point = {
- .x = 800,
- .y = 0,
- };
- //obj.add_component<Transform>(point, 0, 0.1);
auto img = mgr.cache<Texture>("../asset/texture/second.png");
obj2.add_component<Sprite>(img, color, FlipSettings{true, true});
}