Song part progression issue

Hello!

I'm creating a little game for a birthday, but i've encountered an issue with the song that i've made. When i try to play one part after the other, there's a little gap / stutter, which means the song doesn't sound like a complete coherent thing. I tested it in an empty room just by the following code.

on enter
once "part1" then
once "part2" then
once "part3" then
end
end
end
end

I'm very new to all of this and finding it a lot of fun! Any help on this would be greatly appreciated!

Are you seeing this on the Playdate itself too, or did you only test in the browser?

It's similar on the Playdate. Just a tiny skip, but enough for the parts not to perfectly match in the beats between transitions.

i had a similar problem - the music was coming in just a tiny bit early - so i added a "WAIT" you'll probably have to tweak it a few times to match your BPM (see attached json example) hopefully this helps.
music test.json.zip (2.6 KB)

on interact do
once "part1" then
wait 0.22 then
once "part2"

end
end
end