uranium-core/stdlib/eternalfile.lua

16 lines
243 B
Lua
Raw Normal View History

2022-10-16 22:48:16 +02:00
require('stdlib.players')
2022-09-19 22:56:53 +02:00
return function()
2022-10-16 22:48:16 +02:00
if P1 then
P1:SetNoteDataFromLua({})
end
if P2 then
P2:SetNoteDataFromLua({})
end
2022-09-19 22:56:53 +02:00
function uranium.update()
2022-09-20 08:33:44 +02:00
if b >= 1 then
2022-09-19 22:56:53 +02:00
GAMESTATE:SetSongBeat(b % 1)
end
end
end