Interface AudioRenderer

All Known Implementing Classes:
ALAudioRenderer

public interface AudioRenderer
Interface to be implemented by audio renderers.
  • Method Details Link icon

    • setListener Link icon

      void setListener(Listener listener)
      Parameters:
      listener - The listener camera, all 3D sounds will be oriented around the listener.
    • setEnvironment Link icon

      void setEnvironment(Environment env)
      Sets the environment, used for reverb effects.
      Parameters:
      env - The environment to set.
      See Also:
    • playSourceInstance Link icon

      void playSourceInstance(AudioSource src)
    • playSource Link icon

      void playSource(AudioSource src)
    • pauseSource Link icon

      void pauseSource(AudioSource src)
    • stopSource Link icon

      void stopSource(AudioSource src)
    • updateSourceParam Link icon

      void updateSourceParam(AudioSource src, AudioParam param)
    • updateListenerParam Link icon

      void updateListenerParam(Listener listener, ListenerParam param)
    • getSourcePlaybackTime Link icon

      float getSourcePlaybackTime(AudioSource src)
    • deleteFilter Link icon

      void deleteFilter(Filter filter)
    • deleteAudioData Link icon

      void deleteAudioData(AudioData ad)
    • initialize Link icon

      void initialize()
      Initializes the renderer. Should be the first method called before using the system.
    • update Link icon

      void update(float tpf)
      Update the audio system. Must be called periodically.
      Parameters:
      tpf - Time per frame.
    • pauseAll Link icon

      void pauseAll()
      Pauses all Playing audio. To be used when the app is placed in the background.
    • resumeAll Link icon

      void resumeAll()
      Resumes all audio paused by pauseAll(). To be used when the app is brought back to the foreground.
    • cleanup Link icon

      void cleanup()
      Cleanup/destroy the audio system. Call this when app closes.