diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-11-21 17:04:58 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-11-21 17:04:58 +0100 |
commit | ea95685b4dd2adf09a9be4e2dd9233d0cf98b1ef (patch) | |
tree | 2877243b80b0c026db7a2a618a15677156f41a56 /src/crepe/api/Transform.h | |
parent | adbd81d3937a1363af312202c7e4b5ec0bf3458d (diff) |
Minor changes due to templating of Vector2
Diffstat (limited to 'src/crepe/api/Transform.h')
-rw-r--r-- | src/crepe/api/Transform.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/crepe/api/Transform.h b/src/crepe/api/Transform.h index 18aa293..b0488f5 100644 --- a/src/crepe/api/Transform.h +++ b/src/crepe/api/Transform.h @@ -15,7 +15,7 @@ namespace crepe { class Transform : public Component { public: //! Translation (shift) - Vector2 position = {0, 0}; + Vector2<double> position = {0, 0}; //! Rotation, in degrees double rotation = 0; //! Multiplication factor @@ -28,7 +28,8 @@ protected: * \param rotation The rotation of the GameObject * \param scale The scale of the GameObject */ - Transform(game_object_id_t id, const Vector2 & point, double rotation, double scale); + Transform(game_object_id_t id, const Vector2<double> & point, double rotation, + double scale); /** * There is always exactly one transform component per entity * \return 1 |