The Sound Component controls playback of Sounds.

Hierarchy (view full)

Constructors

Properties

entity: Entity

The Entity that this Component is attached to.

The ComponentSystem used to create this Component.

Accessors

Methods

  • Private

    Return a property from the slot with the specified name.

    Parameters

    • name: string

      The name of the SoundSlot to look for.

    • property: string

      The name of the property to look for.

    Returns any

    The value from the looked property inside the slot with specified name. May be undefined if slot does not exist.

  • Private

    Update the specified property on all sound instances.

    Parameters

    • property: string

      The name of the SoundInstance property to update.

    • value: string | number

      The value to set the property to.

    • isFactor: boolean

      True if the value is a factor of the slot property or false if it is an absolute value.

    Returns void

  • Creates a new SoundSlot with the specified name.

    Parameters

    • name: string

      The name of the slot.

    • Optional options: {
          asset: number;
          autoPlay: boolean;
          duration: number;
          loop: boolean;
          overlap: boolean;
          pitch: number;
          startTime: number;
          volume: number;
      }

      Settings for the slot.

      • asset: number

        The asset id of the audio asset that is going to be played by this slot.

      • autoPlay: boolean

        If true the slot will start playing as soon as its audio asset is loaded. Defaults to false.

      • duration: number

        The duration of the sound that the slot will play starting from startTime. Defaults to null which means play to end of the sound.

      • loop: boolean

        If true the sound will restart when it reaches the end. Defaults to false.

      • overlap: boolean

        If true then sounds played from slot will be played independently of each other. Otherwise the slot will first stop the current sound before starting the new one. Defaults to false.

      • pitch: number

        The relative pitch. Defaults to 1 (plays at normal pitch).

      • startTime: number

        The start time from which the sound will start playing. Defaults to 0 to start at the beginning.

      • volume: number

        The playback volume, between 0 and 1. Defaults to 1.

    Returns SoundSlot

    The new slot or null if the slot already exists.

    Example

    // get an asset by id
    const asset = app.assets.get(10);
    // add a slot
    this.entity.sound.addSlot('beep', {
    asset: asset
    });
    // play
    this.entity.sound.play('beep');
  • Fire an event, all additional arguments are passed on to the event listener.

    Parameters

    • name: string

      Name of event to fire.

    • Optional arg1: any

      First argument that is passed to the event handler.

    • Optional arg2: any

      Second argument that is passed to the event handler.

    • Optional arg3: any

      Third argument that is passed to the event handler.

    • Optional arg4: any

      Fourth argument that is passed to the event handler.

    • Optional arg5: any

      Fifth argument that is passed to the event handler.

    • Optional arg6: any

      Sixth argument that is passed to the event handler.

    • Optional arg7: any

      Seventh argument that is passed to the event handler.

    • Optional arg8: any

      Eighth argument that is passed to the event handler.

    Returns EventHandler

    Self for chaining.

    Example

    obj.fire('test', 'This is the message');
    
  • Test if there are any handlers bound to an event name.

    Parameters

    • name: string

      The name of the event to test.

    Returns boolean

    True if the object has handlers bound to the specified event name.

    Example

    obj.on('test', function () { }); // bind an event to 'test'
    obj.hasEvent('test'); // returns true
    obj.hasEvent('hello'); // returns false
  • Detach an event handler from an event. If callback is not provided then all callbacks are unbound from the event, if scope is not provided then all events with the callback will be unbound.

    Parameters

    • Optional name: string

      Name of the event to unbind.

    • Optional callback: HandleEventCallback

      Function to be unbound.

    • Optional scope: object

      Scope that was used as the this when the event is fired.

    Returns EventHandler

    Self for chaining.

    Example

    const handler = function () {
    };
    obj.on('test', handler);

    obj.off(); // Removes all events
    obj.off('test'); // Removes all events called 'test'
    obj.off('test', handler); // Removes all handler functions, called 'test'
    obj.off('test', handler, this); // Removes all handler functions, called 'test' with scope this
  • Attach an event handler to an event.

    Parameters

    • name: string

      Name of the event to bind the callback to.

    • callback: HandleEventCallback

      Function that is called when event is fired. Note the callback is limited to 8 arguments.

    • Optional scope: object = ...

      Object to use as 'this' when the event is fired, defaults to current this.

    Returns EventHandle

    Can be used for removing event in the future.

    Example

    obj.on('test', function (a, b) {
    console.log(a + b);
    });
    obj.fire('test', 1, 2); // prints 3 to the console

    Example

    const evt = obj.on('test', function (a, b) {
    console.log(a + b);
    });
    // some time later
    evt.off();
  • Attach an event handler to an event. This handler will be removed after being fired once.

    Parameters

    • name: string

      Name of the event to bind the callback to.

    • callback: HandleEventCallback

      Function that is called when event is fired. Note the callback is limited to 8 arguments.

    • Optional scope: object = ...

      Object to use as 'this' when the event is fired, defaults to current this.

    Returns EventHandle

    • can be used for removing event in the future.

    Example

    obj.once('test', function (a, b) {
    console.log(a + b);
    });
    obj.fire('test', 1, 2); // prints 3 to the console
    obj.fire('test', 1, 2); // not going to get handled
  • Pauses playback of the slot with the specified name. If the name is undefined then all slots currently played will be paused. The slots can be resumed by calling SoundComponent#resume.

    Parameters

    • Optional name: string

      The name of the slot to pause. Leave undefined to pause everything.

    Returns void

    Example

    // pause all sounds
    this.entity.sound.pause();
    // pause a specific sound
    this.entity.sound.pause('beep');
  • Begins playing the sound slot with the specified name. The slot will restart playing if it is already playing unless the overlap field is true in which case a new sound will be created and played.

    Parameters

    • name: string

      The name of the SoundSlot to play.

    Returns SoundInstance

    The sound instance that will be played. Returns null if the component or its parent entity is disabled or if the SoundComponent has no slot with the specified name.

    Example

    // get asset by id
    const asset = app.assets.get(10);
    // create a slot and play it
    this.entity.sound.addSlot('beep', {
    asset: asset
    });
    this.entity.sound.play('beep');
  • Resumes playback of the sound slot with the specified name if it's paused. If no name is specified all slots will be resumed.

    Parameters

    • Optional name: string

      The name of the slot to resume. Leave undefined to resume everything.

    Returns void

    Example

    // resume all sounds
    this.entity.sound.resume();
    // resume a specific sound
    this.entity.sound.resume('beep');
  • Stops playback of the sound slot with the specified name if it's paused. If no name is specified all slots will be stopped.

    Parameters

    • Optional name: string

      The name of the slot to stop. Leave undefined to stop everything.

    Returns void

    Example

    // stop all sounds
    this.entity.sound.stop();
    // stop a specific sound
    this.entity.sound.stop('beep');

Events

EVENT_END: string = 'end'

Fired when a sound instance stops playing because it reached its end. The handler is passed the SoundSlot and the SoundInstance that ended.

Example

entity.sound.on('end', (slot, instance) => {
console.log(`Sound ${slot.name} ended`);
});
EVENT_PAUSE: string = 'pause'

Fired when a sound instance is paused. The handler is passed the SoundSlot and the SoundInstance that was paused.

Example

entity.sound.on('pause', (slot, instance) => {
console.log(`Sound ${slot.name} paused`);
});
EVENT_PLAY: string = 'play'

Fired when a sound instance starts playing. The handler is passed the SoundSlot and the SoundInstance that started playing.

Example

entity.sound.on('play', (slot, instance) => {
console.log(`Sound ${slot.name} started playing`);
});
EVENT_RESUME: string = 'resume'

Fired when a sound instance is resumed. The handler is passed the SoundSlot and the SoundInstance that was resumed.

Example

entity.sound.on('resume', (slot, instance) => {
console.log(`Sound ${slot.name} resumed`);
});
EVENT_STOP: string = 'stop'

Fired when a sound instance is stopped. The handler is passed the SoundSlot and the SoundInstance that was stopped.

Example

entity.sound.on('stop', (slot, instance) => {
console.log(`Sound ${slot.name} stopped`);
});