Files
Techmino/Zframework/testing.lua
2021-11-01 10:14:09 +08:00

14 lines
243 B
Lua

--Utils for testing
local testing={}
--Wait for the scene swapping animation to finish
function testing.switchSCN()
while SCN.swapping do YIELD()end
end
function testing.sleep(frames)
for _=1,frames do YIELD()end
end
return testing