Hundreds of features to explore
Games made in Construct
Your questions answered
Popular & trusted by schools and Universities world-wide
Construct 3 runs in the browser & works offline
Students do not need accounts with us
Our educational partners
Free education resources to use in the classroom
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
I'm working on the Construct 3 platform. When I click Pause Button, all movement of objects ceases but the song (Looped) in the Music File still plays. How can I get the Song to stop playing when the Pause button is pressed? I have the Song in a group and I tried to Deactivate the group, which had not work. Any suggestions? Thanks
Develop games in your browser. Powerful, performant & highly capable.
- Add a variable called isPause(boolean)
- On touch Pause: toggle isPause
- If isPause = true: stop all or you can Pause the music
- else: play or resume
Nice work around. Is the variable: instance or global? Moreover is the variable a: String, Number or Boolean? Also, where is the If located? I see the Else but I can not locate the IF. Thanks
like this:
Thanks.