Version: 2017.2
public static int vSyncCount ;

Descripción

El VSync Count.

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 Store Apps: No es posible desactivar VSync cuando DirectX 11 se utiliza debido a las limitaciones de plataforma, usted puede desactivar VSync si DirectX 12 se utiliza.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { QualitySettings.vSyncCount = 1; } }

See Also: Quality Settings.