VSync の数を設定する。
The number of VSyncs that should pass between each frame. Use 'Don't Sync' (0) to not wait for VSync.
Value must be 0, 1 or 2.
Windows ストア アプリ: プラットフォームの制限のために DirectX 11 を使用するとき、VSync を無効にすることができません。DirectX 12 を使用するときは、VSync を無効にすることができます。
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { QualitySettings.vSyncCount = 1; } }
関連項目: Quality Settings.