diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-12-11 15:47:49 +0100 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-12-11 15:47:49 +0100 |
commit | 9b337ae01e4f3efc6ad3be5af33e3df8e9224d71 (patch) | |
tree | 55cffb789f00b55799074ed0a76ef20e599c9d3b /src/example/rendering_particle.cpp | |
parent | 045c263f5bc432ff0758dd0928e4a0f5e5eed85d (diff) |
make format
Diffstat (limited to 'src/example/rendering_particle.cpp')
-rw-r--r-- | src/example/rendering_particle.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/example/rendering_particle.cpp b/src/example/rendering_particle.cpp index b57ba04..48e02ba 100644 --- a/src/example/rendering_particle.cpp +++ b/src/example/rendering_particle.cpp @@ -71,21 +71,21 @@ public: anim.set_anim(2); anim.pause(); - auto & cam = game_object.add_component<Camera>(ivec2{1280, 720}, vec2{400, 400}, + auto & cam = game_object.add_component<Camera>(ivec2{720, 1280}, vec2{400, 400}, Camera::Data{ .bg_color = Color::WHITE, }); - function<void()> on_click = [&](){ cout << "button clicked" << std::endl; }; - function<void()> on_enter = [&](){ cout << "enter" << std::endl; }; - function<void()> on_exit = [&](){ cout << "exit" << std::endl; }; + function<void()> on_click = [&]() { cout << "button clicked" << std::endl; }; + function<void()> on_enter = [&]() { cout << "enter" << std::endl; }; + function<void()> on_exit = [&]() { cout << "exit" << std::endl; }; - auto & button = game_object.add_component<Button>(vec2{200,200}, vec2{0,0}, on_click, false); + auto & button + = game_object.add_component<Button>(vec2{200, 200}, vec2{0, 0}, on_click, false); button.on_mouse_enter = on_enter; button.on_mouse_exit = on_exit; button.is_toggle = true; button.active = true; - } string get_name() const { return "TestScene"; }; |