Modify the default value and the range of force sync frames settings.

This commit is contained in:
2023-05-14 10:47:27 +08:00
parent 959d07b0a9
commit 346040574a

View File

@@ -46,10 +46,10 @@ namespace Cryville.Crtr {
}
[Category("gameplay")]
[Range(-1, 5)]
[Range(-1, 30)]
public int ForceSyncFrames {
get {
return PlayerPrefs.GetInt("ForceSyncFrames", 5);
return PlayerPrefs.GetInt("ForceSyncFrames", 6);
}
set {
PlayerPrefs.SetInt("ForceSyncFrames", value);