diff options
author | heavydemon21 <48092678+heavydemon21@users.noreply.github.com> | 2025-01-03 19:41:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-03 19:41:41 +0100 |
commit | cf6ca6be5a9deac4de921f50d0aedf6a6156e0f4 (patch) | |
tree | e7b18df0361af1b081168569568d408cfd4b6538 /src/crepe/system/InputSystem.cpp | |
parent | 61148c757a1f742ff09e40e5347e74e638c7371c (diff) | |
parent | 4526efe1b6dd63aaa177f8f35194989d3910d571 (diff) |
Merge pull request #96 from lonkaars/niels/UI
rendering text world space fix
Diffstat (limited to 'src/crepe/system/InputSystem.cpp')
-rw-r--r-- | src/crepe/system/InputSystem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/system/InputSystem.cpp b/src/crepe/system/InputSystem.cpp index b4a0633..91c9c64 100644 --- a/src/crepe/system/InputSystem.cpp +++ b/src/crepe/system/InputSystem.cpp @@ -1,8 +1,8 @@ #include "../api/Button.h" +#include "../api/Config.h" #include "../facade/SDLContext.h" #include "../manager/ComponentManager.h" #include "../manager/EventManager.h" -#include "util/Log.h" #include "InputSystem.h" @@ -213,7 +213,7 @@ bool InputSystem::is_mouse_inside_button( const Transform & cam_transform ) { vec2 actual_pos = transform.position + button.offset; - if (!button.world_space) { + if (!button.data.world_space) { actual_pos += cam_transform.position; } vec2 half_dimensions = button.dimensions / 2; |