From fbbbdd14eebd87c6d18aaed443c96a66b9bd53a2 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 9 Dec 2019 17:26:33 -0500 Subject: [PATCH] phrase world pixel-size in terms of fractions of 1080p GitOrigin-RevId: d2a9cb18d1153a85081ac57b4dd2ddb2ab31822a --- Jumpy.Shared/Camera.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jumpy.Shared/Camera.cs b/Jumpy.Shared/Camera.cs index d584b50..a0e3256 100644 --- a/Jumpy.Shared/Camera.cs +++ b/Jumpy.Shared/Camera.cs @@ -4,7 +4,7 @@ using System.Text; namespace Jumpy { class Camera { - public const int Width = (int) (320 * 1.0); - public const int Height = (int) (180 * 1.0); + public const int Width = 1920 / 4; + public const int Height = 1080 / 4; } }