diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-06 19:26:27 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-06 19:26:27 +0100 |
commit | e8d9e38b4c265e0efde32c38d01b511cb572a34d (patch) | |
tree | 0af9b8f5e7c9e59de2e3c9ebc175ce31e9a86c20 /src/crepe/api/Transform.h | |
parent | cfd578dd0b7d5894ff0b0a0796d85cd5e9ae6e56 (diff) | |
parent | f3adf300c5ba9b382f74e5b704501fd047399062 (diff) |
Merge branch 'niels/decoupling_pixel_and_pos' of github.com:lonkaars/crepe
Diffstat (limited to 'src/crepe/api/Transform.h')
-rw-r--r-- | src/crepe/api/Transform.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crepe/api/Transform.h b/src/crepe/api/Transform.h index 6243a93..3ef0fb5 100644 --- a/src/crepe/api/Transform.h +++ b/src/crepe/api/Transform.h @@ -15,10 +15,10 @@ class Transform : public Component { public: //! Translation (shift) vec2 position = {0, 0}; - //! Rotation, in degrees - double rotation = 0; + //! Rotation, in degrees clockwise + float rotation = 0; //! Multiplication factor - double scale = 0; + float scale = 0; protected: /** |