This repository has been archived on 2025-06-08. You can view files and clone it, but cannot push or open issues or pull requests.
TaggedEngine/charts/blazin/cutscene.lua
2025-06-05 14:13:47 +07:00

21 lines
464 B
Lua

function onStartCountdown()
if not allowCountdown and isStoryMode and not seenCutscene then --Block the first countdown
startVideo('2hotCutscene');
seenCutscene = true
allowCountdown = true;
return Function_Stop;
end
return Function_Continue;
end
function onEndSong()
if isStoryMode and not seenCutscene1 then
startVideo('blazinCutscene')
seenCutscene1 = true
return Function_Stop
end
return Function_Continue
end