High resolution monotonic timers for Lua. https://github.com/ldrumm/chronos
1) Add defold-chronos in your own project as a Defold library dependency. Open your game.project file and in the dependencies field under project add: https://github.com/d954mas/defold-chronos/archive/refs/tags/1.0.1.zip
function update(self, dt)
if chronos then
local time = chronos.nanotime()
local a = 1
for i=1,10000 do
a = a + 1
end
print("seconds:" .. chronos.nanotime() - time)
end
end
RETURN
- (number) - seconds with nanosecond precision
`