Examples of AudioClip


Examples of javafx.scene.media.AudioClip

     *
     * @param key
     */
    public void playSoundFX(String key) {
        if (soundfxVolume > 0) {
            AudioClip temp = (clipMap.get(key));
            if (temp == null) {
                return;//track not found, continue current music selection
            }

            temp.play(soundfxVolume);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.