sprunk-engine
    Preparing search index...

    AudioBehavior is a behavior that allows for the playback of audio files for a game object. It uses the Web Audio API to play audio files.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    isPlaying: boolean = false
    playbackHistory: { playbackRate: number; timestamp: number }[] = []

    Accessors

    Methods

    • Detach this behavior from the GameObject it is attached to.

      Parameters

      • from: GameObject

        The GameObject to detach this behavior from.

      Returns void

      Error if the behavior is not attached to the GameObject.

    • Protected

      Observe a LogicBehavior and call the observer function when the data changes.

      Type Parameters

      Parameters

      • BehaviorClass: new (...args: any[]) => T

        The specific LogicBehavior class type to observe.

      • observer: (data: U) => void

        The function to call when the data changes.

      Returns void

    • Plays the audio. If the audio is passed in, it will set the audio to play.

      Parameters

      • audio: null | string = null

      Returns Promise<void>

      If the start method has already been called.

      If the audio buffer is not set.

      If the audio source is not set.

    • Sets whether the audio should loop.

      Parameters

      • loop: boolean

        true to loop, false to not loop.

      Returns void

      If the audio source is not set.

    • Like onEnable, but should only be for internal use, so some non-abstact direct behaviors could expose attachedOn to the user.

      Parameters

      • attachedOn: GameObject

        The GameObject this behavior is attached to.

      Returns void

      Error if the behavior is already attached to a GameObject.

    • Stops playback of the audio. (This method will also disconnect the audio source.)

      Returns Promise<void>

      If the audio source is not set.

    • Protected

      Called every frame. Override this method to add custom behavior.

      Parameters

      • _deltaTime: number

        The time in seconds since the last frame.

        • This method should not be called directly except by the GameEngineWindowComponent.

      Returns void