You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
427 B
20 lines
427 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace UltraCombos.Utility
|
|
{
|
|
public class DisplayConfig : MonoBehaviour
|
|
{
|
|
public int width = 1280;
|
|
public int height = 720;
|
|
public int fps = 60;
|
|
public bool fullscreen = true;
|
|
|
|
private void Awake()
|
|
{
|
|
Screen.SetResolution(width, height, fullscreen, fps);
|
|
}
|
|
}
|
|
|
|
}
|
|
|