Giter VIP home page Giter VIP logo

gameaudio's Introduction

GameAudio

GameAudio contains 2 classes: GameAudioPlayer and GameAudioSpritePlayer, both attached to the window object after inclusion of the script at /public/js/game-audio.js

The main purpose of this library is top provide a common set of methods to play sounds with JavaScript, regardless of environment (I'm specifically thinking about PhoneGap/Cordova here, which might use native plugins, etc.; but in any case, we want a single set of methods to use).

GameAudioPlayer

  • this.play() Plays the file once, just like the native JS function;
  • this.playAsync() Plays the file even if the current sound has not yet finished playing. Good if you need the same sound to overlap;
  • this.pause() Pauses the current sound, like the native JS function. Note that if you have used playAsync(), some instances of the current sound might continue playing even after calling this method;
  • this.playLoop() Plays the sound in a loop until you pause() it.

How to use

// instantiate the sound:
var sound = new GameAudioPlayer( '/sounds/smooth-criminal.mp3' );

// play it once:
playButton.onclick = function(){
    sound.play();
}

// play it in a loop:
loopButton.onclick = function(){
    sound.playLoop();
}

// pause it
pauseButton.onclick = function(){
    sound.pause();
}

gameaudio's People

Contributors

sorin-coza avatar sorincoza avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

Forkers

camilacanhete

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.