phrase world pixel-size in terms of fractions of 1080p

GitOrigin-RevId: d2a9cb18d1153a85081ac57b4dd2ddb2ab31822a
This commit is contained in:
Colin McMillen 2019-12-09 17:26:33 -05:00
parent df6cee8df1
commit fbbbdd14ee

View File

@ -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;
}
}