Jump to content

Search the Community

Showing results for tags 'mute'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • HTML5 Game Coding
    • News
    • Game Showcase
    • Facebook Instant Games
    • Web Gaming Standards
    • Coding and Game Design
    • Paid Promotion (Buy Banner)
  • Frameworks
    • Pixi.js
    • Phaser 3
    • Phaser 2
    • Babylon.js
    • Panda 2
    • melonJS
    • Haxe JS
    • Kiwi.js
  • General
    • General Talk
    • GameMonetize
  • Business
    • Collaborations (un-paid)
    • Jobs (Hiring and Freelance)
    • Services Offered
    • Marketplace (Sell Apps, Websites, Games)

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Twitter


Skype


Location


Interests

Found 3 results

  1. Hi, Does anyone know how to know if a device is muted? If it can not be done in Phaser how can I do it using javascript? Cheers, Matias Ini
  2. Hi all, I am using sound sprites to make tiny button sounds, however when I place the mute=true on the sound manager the button still plays the first time (not the following) after the system was muted. Is this a know bug? preload: function() { this.load.audio('button_press', 'button_press.wav');},create: function() { this.clickSound = new Phaser.Sound(this.game, 'button_press'); this.clickSound.play();//plays sound this.game.sound.mute = true; this.clickSound.play();//also plays sound (only the first few moments)} Thanks. phaser mute issue.zip
  3. Hello! I was wondering if there are any nifty ways to mute SFX and music separately? This can be achieved with Web Audio API easily by using separate gainNodes for each type of sounds, but I'd rather have a more compatible solution. Apparently Rich is working on an overhaul of the sound system in Phaser, but does the overhaul possibly cover audio grouping? -V
×
×
  • Create New...