Sound.loop

From MiniScript Wiki
Revision as of 15:17, 2 April 2020 by JoeStrout (talk | contribs)
Jump to navigation Jump to search

Sound.loop controls whether a sound will play just once (false) or will repeat indefinitely (true) when played with Sound.play.

s = file.loadSound("/sys/sounds/bonus.wav")
s.loop = true
s.play; key.get; s.stop