Jump to content

Search the Community

Showing results for tags 'sound panda.js bugfix bug'.

  • 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 1 result

  1. Hi There, Today I was working on the new examples for the Panda.js Fiddler and noticed a small bug in the audio module. setMusicVolume: function(value) { if (!game.Audio.enabled) return false; this.musicVolume = value; if (!this.currentMusic) return false; if (this.context) { this.currentMusic.gainNode.gain.value = this.musicVolume; //ERROR! } else { this.currentMusic.volume = this.musicVolume; } return true; },this.currentMusic.gainNode.gain.value = this.musicVolume; should be: this.audioObjects[this.currentMusic].gainNode.gain.value = this.musicVolume; @Enpu: Which way do you prefer to receive bugreports? (I have little experience with github yet so that's why I post this bug over here ). Stephan
×
×
  • Create New...