Uses of Class
com.brackeen.javagamebook.sound.SoundFilter

Packages that use SoundFilter
com.brackeen.javagamebook.sound   
 

Uses of SoundFilter in com.brackeen.javagamebook.sound
 

Subclasses of SoundFilter in com.brackeen.javagamebook.sound
 class EchoFilter
          The EchoFilter class is a SoundFilter that emulates an echo.
 class Filter3d
          The Filter3d class is a SoundFilter that creates a 3d sound effect.
 class FilterSequence
          The FilterSequence class is a SoundFilter that combines several SoundFilters at once.
 

Fields in com.brackeen.javagamebook.sound declared as SoundFilter
private  SoundFilter[] FilterSequence.filters
           
private  SoundFilter FilteredSoundStream.soundFilter
           
 

Methods in com.brackeen.javagamebook.sound with parameters of type SoundFilter
 java.io.InputStream SoundManager.play(java.io.InputStream is, SoundFilter filter)
          Plays a sound from an InputStream with an optional sound filter.
 java.io.InputStream SoundManager.play(Sound sound, SoundFilter filter, boolean loop)
          Plays a sound with an optional SoundFilter, and optionally looping.
 

Constructors in com.brackeen.javagamebook.sound with parameters of type SoundFilter
FilteredSoundStream(java.io.InputStream in, SoundFilter soundFilter)
          Creates a new FilteredSoundStream object with the specified InputStream and SoundFilter.
FilterSequence(SoundFilter[] filters)
          Creates a new FilterSequence object with the specified array of SoundFilters.