mirror of
https://github.com/folfcoder/plasma-sharkle.git
synced 2025-04-05 13:41:37 +00:00
fix: sound not playing
This commit is contained in:
parent
ca11c3327c
commit
60927a6a8a
1 changed files with 6 additions and 0 deletions
|
@ -49,6 +49,11 @@ PlasmoidItem {
|
||||||
MediaPlayer {
|
MediaPlayer {
|
||||||
id: mediaplayer
|
id: mediaplayer
|
||||||
source: "../sounds/" + soundIndex + ".wav"
|
source: "../sounds/" + soundIndex + ".wav"
|
||||||
|
// On first .play() call, applet freezes so this is a temporary fix I guess
|
||||||
|
autoPlay: true
|
||||||
|
audioOutput: AudioOutput {
|
||||||
|
muted: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
MouseArea {
|
MouseArea {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
@ -59,6 +64,7 @@ PlasmoidItem {
|
||||||
|
|
||||||
// Play sound
|
// Play sound
|
||||||
soundIndex = (soundIndex + 1) % 8
|
soundIndex = (soundIndex + 1) % 8
|
||||||
|
mediaplayer.audioOutput.muted = false
|
||||||
mediaplayer.play()
|
mediaplayer.play()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue