QualitySettings.vSyncCount accepts 0, 1 and 2.
0 = Don’t Sync;
1 = Sync every second frame?
2 = Sync every frame?
Right?
QualitySettings.vSyncCount accepts 0, 1 and 2.
0 = Don’t Sync;
1 = Sync every second frame?
2 = Sync every frame?
Right?
V sync makes the frame display update wait for the screen refresh update, in other words it ties your frame rate to your monitors refresh rate(60htz, 100htz etc).
If you set it to 0 then it ignores your monitor refresh and outputs the frames as fast as possible.
If you set it to 1 then it will output one frame update for every screen update.
If you set it to 2 it will output one frame update every second screen update.
This is often used for trying to stop screen tearing issues by keeping the two in sync.
0 = don’t sync; 1 = sync every 1 frame; 2 = sync every 2 frames
thank you! )