Код: Выделить всё
using UnityEngine;
public class SetGameResolution : MonoBehaviour
{
void Start()
{
Application.targetFrameRate = 60;
// Set the resolution to 1024 width and 768 height, for example
// The third parameter is whether the game should run in fullscreen
Screen.SetResolution(500, 200, false);
}
}
Я могу создать небольшой видеоклип, чтобы показать проблему, но я изменил размер окна игры в сборке, чтобы можно было перетаскивать его во время запуска игры.
как чтобы это исправить ?

Подробнее здесь: https://stackoverflow.com/questions/784 ... -avoid-the
Мобильная версия