We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7257358 commit 403e863Copy full SHA for 403e863
MLAPI/Attributes/SyncedVar.cs
@@ -20,6 +20,9 @@ public class SyncedVar : Attribute
20
/// The delay for syncing this variable.
21
/// </summary>
22
public float syncDelay = 0.1f;
23
- internal float lastSyncTime = 0f;
+ /// <summary>
24
+ /// Gets the time the Syncedvar was last synced
25
+ /// </summary>
26
+ public float lastSyncTime { get; internal set; }
27
}
28
0 commit comments