Hello.
I am having some errors with the BackgroundMusic component:
BackgroundMusic.qml:181: ReferenceError: gameWindow is not defined
It looks like something related to the Felgo Game components, but I am just developing an App.
The component looks to work okay but I am scared this can eventually crash the client.
QML code:
BackgroundMusic {
id: tapSound
source: "../../../assets/sounds/tap.wav"
volume: 0.5
loops: 1
autoPlay: false
autoLoad: true
}
Note: I also tried AudioEffect, but AudioEffect at least for me loocked the Rendering thread and the app will lock until the sound has played (ex when exted on pressing a button).
Has someone also experienced this issue?