We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0863ca commit ac013c2Copy full SHA for ac013c2
com.unity.netcode.gameobjects/Runtime/Timing/NetworkTime.cs
@@ -50,6 +50,11 @@ public struct NetworkTime
50
/// </summary>
51
public float FixedDeltaTime => (float)m_TickInterval;
52
53
+ /// <summary>
54
+ /// Gets the fixed delta time as a double. This value is calculated by dividing 1.0 by the <see cref="TickRate"/> and stays constant.
55
+ /// </summary>
56
+ public double FixedDeltaTimeAsDouble => m_TickInterval;
57
+
58
/// <summary>
59
/// Gets the amount of network ticks which have passed until reaching the current time value.
60
0 commit comments