Package cofh.lib.audio

Examples of cofh.lib.audio.SoundBase


    soundManager.playSound(sound);
  }

  public static void playSound(String soundName, float x, float y, float z, float volume, float pitch) {

    soundManager.playSound(new SoundBase(soundName, volume, pitch, x, y, z));
  }
View Full Code Here


  // protected boolean tooltips = !Loader.isModLoaded("NotEnoughItems");

  public static void playSound(String name, float volume, float pitch) {

    guiSoundManager.playSound(new SoundBase(name, volume, pitch));
  }
View Full Code Here

TOP

Related Classes of cofh.lib.audio.SoundBase

Copyright © 2018 www.massapicom. 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.