Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2012
1,034
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. using UnityEngine;
  2.  
  3. public class SceneController : MonoBehaviour {
  4.  
  5.     // See docs for more info:
  6.     // http://docs.unity3d.com/Documentation/ScriptReference/Application-targetFrameRate.html
  7.  
  8.     void Awake() {
  9.         Application.targetFrameRate = 60;
  10.     }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement