There was an error while loading. Please reload this page.
Lua script profiling using Tracy.
This usertype has no variables
This usertype has no constructors
string
This usertype has no operators
local Test = {} function Test:OnUpdate(deltaTime) tracy.ZoneBegin() for i = 1, 1000000 do local a = math.random(1, 100) local b = math.random(1, 100) local c = a + b end tracy.ZoneEnd() end return Test