diff options
Diffstat (limited to 'Thronefall_1_0/GameCode/LimitDeltaTime.cs')
| -rw-r--r-- | Thronefall_1_0/GameCode/LimitDeltaTime.cs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Thronefall_1_0/GameCode/LimitDeltaTime.cs b/Thronefall_1_0/GameCode/LimitDeltaTime.cs deleted file mode 100644 index d0a7f54..0000000 --- a/Thronefall_1_0/GameCode/LimitDeltaTime.cs +++ /dev/null @@ -1,11 +0,0 @@ -using UnityEngine; - -public class LimitDeltaTime : MonoBehaviour -{ - public float maxDeltaTimeInMs = 16f; - - private void Start() - { - Time.maximumDeltaTime = maxDeltaTimeInMs / 1000f; - } -} |
