API Docs for: 2.2.1
Show:

SpineTextureLoader Class

Supporting class to load images from spine atlases as per spine spec.

Constructor

SpineTextureLoader

(
  • basePath
  • crossorigin
)

Parameters:

  • basePath String

    Tha base path where to look for the images to be loaded

  • crossorigin Bool

    Whether requests should be treated as crossorigin

Methods

emit

(
  • eventName
  • data
)
Bool

Emit an event to all registered event listeners.

Parameters:

  • eventName String

    The name of the event.

  • data Dynamic

Returns:

Bool:

Indication if we've emitted an event.

listeners

(
  • eventName
)
Array

Return a list of assigned event listeners.

Parameters:

  • eventName String

    The events that should be listed.

Returns:

Array:

An array of listener functions

load

(
  • page
  • file
)

Starts loading a base texture as per spine specification

Parameters:

  • page spine.AtlasPage

    Atlas page to which texture belongs

  • file String

    The file to load, this is just the file path relative to the base path configured in the constructor

off

(
  • eventName
  • callback
)

Remove event listeners.

Parameters:

  • eventName String

    The event we want to remove.

  • callback Function

    The listener that we need to find.

on

(
  • eventName
  • callback
)

Register a new EventListener for the given event.

Parameters:

  • eventName String

    Name of the event.

  • callback Functon

    Callback function.

once

(
  • eventName
  • callback
)

Add an EventListener that's only called once.

Parameters:

  • eventName String

    Name of the event.

  • callback Function

    Callback function.

removeAllListeners

(
  • eventName
)

Remove all listeners or only the listeners for the specified event.

Parameters:

  • eventName String

    The event you want to remove all listeners for.

unload

(
  • texture
)

Unloads a previously loaded texture as per spine specification

Parameters: