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/api/Text.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/api/Text.cpp')
-rw-r--r-- | src/crepe/api/Text.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/crepe/api/Text.cpp b/src/crepe/api/Text.cpp index b24f0ac..e5b623d 100644 --- a/src/crepe/api/Text.cpp +++ b/src/crepe/api/Text.cpp @@ -1,10 +1,12 @@ +#include "../types.h" + #include "Text.h" using namespace crepe; Text::Text( - game_object_id_t id, const vec2 & dimensions, const vec2 & offset, - const std::string & font_family, const Data & data, const std::string & text + game_object_id_t id, const vec2 & dimensions, const std::string & font_family, + const Data & data, const vec2 & offset, const std::string & text ) : UIObject(id, dimensions, offset), text(text), |