Add force sync frames.

This commit is contained in:
2023-01-01 18:52:28 +08:00
parent 989a6b5554
commit a416f772d4
3 changed files with 34 additions and 19 deletions

View File

@@ -34,6 +34,17 @@ namespace Cryville.Crtr {
}
}
[Category("gameplay")]
[Range(-1, 5)]
public int ForceSyncFrames {
get {
return PlayerPrefs.GetInt("ForceSyncFrames", 5);
}
set {
PlayerPrefs.SetInt("ForceSyncFrames", value);
}
}
[Browsable(false)]
[Category("data")]
[Description("The directory where the game files are stored.")]