Created
April 20, 2024 04:16
-
-
Save baba-s/e206e941f93b4f30d0503062720dd9f0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using UnityEngine; | |
public class Example : MonoBehaviour | |
{ | |
private IEnumerator Start() | |
{ | |
Screen.SetResolution( 640, 480, true ); | |
yield return null; | |
Debug.Log( $"変更前:{Display.main.systemWidth} x {Display.main.systemHeight}" ); | |
Debug.Log( $"変更後:{Display.main.renderingWidth} x {Display.main.renderingHeight}" ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment