uranium-core/stdlib/eternalfile.lua

16 lines
250 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
2023-05-04 21:07:28 +02:00
uranium.on('update', function()
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
2023-05-04 21:07:28 +02:00
end)
2022-09-19 22:56:53 +02:00
end