9 lines
136 B
C#
9 lines
136 B
C#
using UnityEngine;
|
|
|
|
public class FPSManager : MonoBehaviour
|
|
{
|
|
void Awake()
|
|
{
|
|
Application.targetFrameRate = 1000;
|
|
}
|
|
} |