Skip to content

Commit 74871d0

Browse files
authored
Fix typo in TimeManagerEditor
1 parent 9a925c0 commit 74871d0

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Assets/FishNet/Runtime/Managing/Timing/Editor/TimeManagerEditor.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public override void OnInspectorGUI()
5959
EditorGUILayout.LabelField("Physics", EditorStyles.boldLabel);
6060
EditorGUI.indentLevel++;
6161
if (_physicsMode.intValue == (int)PhysicsMode.TimeManager)
62-
EditorGUILayout.HelpBox($"Time.fixedDeltaTime will be overriden with TimeManager.TickDelta ({(1f / (float)_tickRate.intValue).ToString("0.###")})", MessageType.Info);
62+
EditorGUILayout.HelpBox($"Time.fixedDeltaTime will be overridden with TimeManager.TickDelta ({(1f / (float)_tickRate.intValue).ToString("0.###")})", MessageType.Info);
6363
else
6464
EditorGUILayout.HelpBox("If you are using physics interactions be sure to change the PhysicsMode to TimeManager and implement physics within the TimeManager tick events. NetworkTransform may also jitter when not using PhysicsMode.TimeManager.", MessageType.Warning);
6565
EditorGUILayout.PropertyField(_physicsMode);
@@ -75,4 +75,5 @@ public override void OnInspectorGUI()
7575
}
7676
}
7777
}
78-
#endif
78+
79+
#endif

0 commit comments

Comments
 (0)