diff --git a/UOP1_Project/Assets/Scripts/UI/UIScaling.cs b/UOP1_Project/Assets/Scripts/UI/UIScaling.cs new file mode 100644 index 0000000000..29e13c8f86 --- /dev/null +++ b/UOP1_Project/Assets/Scripts/UI/UIScaling.cs @@ -0,0 +1,22 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; + +public class UIScaling : MonoBehaviour +{ + // Gets the necessary canvas object + private CanvasScaler scaler; + + // Gets the display's width and height in pixel size + private int width = Screen.width; + private int height = Screen.height; + + private void Start() + { + scaler = GetComponent(); // Gets the necessary component for scaling modification + + scaler.referenceResolution = new Vector2(width, height); // Ensures the UI is sized according to screen pixel data + scaler.screenMatchMode = CanvasScaler.ScreenMatchMode.MatchWidthOrHeight; // Matches the UI to referenced screen size + } +} diff --git a/UOP1_Project/Assets/Scripts/UI/UIScaling.cs.meta b/UOP1_Project/Assets/Scripts/UI/UIScaling.cs.meta new file mode 100644 index 0000000000..43b1c912e0 --- /dev/null +++ b/UOP1_Project/Assets/Scripts/UI/UIScaling.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 14beef9872ff16d4f84de87287ee3c0d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: