From 9cd8eb01dbeb04433b6aa3dff85f7c625955cc92 Mon Sep 17 00:00:00 2001 From: Adam Graham Date: Wed, 8 Dec 2021 01:48:34 -0600 Subject: [PATCH] Set target frame rate to 60 --- Assets/Scripts/Board.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Assets/Scripts/Board.cs b/Assets/Scripts/Board.cs index 65f039a..84a6350 100644 --- a/Assets/Scripts/Board.cs +++ b/Assets/Scripts/Board.cs @@ -20,6 +20,8 @@ public RectInt Bounds { private void Awake() { + Application.targetFrameRate = 60; + this.tilemap = GetComponentInChildren(); this.activePiece = GetComponentInChildren();