-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClock.lua
More file actions
40 lines (32 loc) · 931 Bytes
/
Copy pathClock.lua
File metadata and controls
40 lines (32 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
--- Generated by EmmyLua(https://github.com/EmmyLua)
--- Created by conta.
--- DateTime: 12/3/2025 4:47 AM
---
---@class Clock High-precision timing and frame rate tracking
local Clock = {}
---Get delta time with double precision
---@return number Delta time in seconds (double precision)
function Clock:GetDeltaTimePrecise()
end
---Get delta time with single precision
---@return number Delta time in seconds (float precision)
function Clock:GetDeltaTime()
end
---Get total elapsed time since clock started
---@return number Total time in seconds
function Clock:GetTotalTime()
end
---Get current frames per second
---@return number Current FPS
function Clock:GetFramesPerSecond()
end
---Get raw performance counter value
---@return number Raw counter value
function Clock:GetRawCounter()
end
---Get performance counter frequency
---@return number Counter frequency
function Clock:GetCounterFrequency()
end
return Clock