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