From 2c1c425924e0f7d5bb0804a52bf39e3b2da16e5e Mon Sep 17 00:00:00 2001 From: CrackThrough Date: Thu, 8 Dec 2022 00:21:21 +0900 Subject: [PATCH] chore: appropriately rename field and change docs --- Runtime/Event.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Runtime/Event.cs b/Runtime/Event.cs index ee37390..f7766e1 100644 --- a/Runtime/Event.cs +++ b/Runtime/Event.cs @@ -11,13 +11,13 @@ namespace SkyHook public struct SkyHookEvent { /// - /// When the key's state was updated(sec). + /// Precise time of the key's state update in seconds. /// public readonly ulong TimeSec; /// - /// When the key's state was updated(nsec). + /// Precise time of the key's state update but only contains nanoseconds. /// - public readonly uint TimeNsec; + public readonly uint TimeSubsecNano; /// /// Whether the key is pressed or released. ///