diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-11-25 19:39:11 +0100 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-11-25 19:39:11 +0100 |
commit | 9aca3626e31a7549f8c436672d4f479bd64c0057 (patch) | |
tree | 9255aa25ceea4d50cc50474bc27a50a007ce008d /src/crepe/api/Camera.h | |
parent | b570225f5166b18fdd881fc53cd7013669067ca1 (diff) |
fixed a rezing and camera origin is now middlepoint
Diffstat (limited to 'src/crepe/api/Camera.h')
-rw-r--r-- | src/crepe/api/Camera.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/crepe/api/Camera.h b/src/crepe/api/Camera.h index 083dc19..137c8ed 100644 --- a/src/crepe/api/Camera.h +++ b/src/crepe/api/Camera.h @@ -32,14 +32,16 @@ public: Vector2 pos = {0, 0}; //! screen the display size in pixels ( output resolution ) + //Vector2 screen = {720, 480}; Vector2 screen = {1080, 720}; //! viewport is the area of the world visible through the camera (in world units) + //Vector2 viewport = {720, 480}; Vector2 viewport = {2000, 1000}; //! scale scaling factor from world units to pixel coordinates //! Zoom level of the camera view. - double zoom = 1.5f; + double zoom = 1.0f; public: /** |