ImageLoader Class
The image loader class is responsible for loading images file formats ('jpeg', 'jpg', 'png' and 'gif') Once the image has been loaded it is stored in the PIXI texture cache and can be accessed though PIXI.Texture.fromFrameId() and PIXI.Sprite.fromFrameId() When loaded this class will dispatch a 'loaded' event
Constructor
ImageLoader
-
url
-
[crossorigin]
Parameters:
-
url
StringThe url of the image
-
[crossorigin]
Bool optionalWhether requests should be treated as crossorigin
Item Index
Methods
emit
-
eventName
-
data
Emit an event to all registered event listeners.
Parameters:
-
eventName
StringThe name of the event.
-
data
Dynamic
Returns:
Indication if we've emitted an event.
listeners
-
eventName
Return a list of assigned event listeners.
Parameters:
-
eventName
StringThe events that should be listed.
Returns:
An array of listener functions
load
()
Loads image or takes it from cache
loadFramedSpriteSheet
-
frameWidth
-
frameHeight
-
textureName
Loads image and split it to uniform sized frames
Parameters:
-
frameWidth
Floatwidth of each frame
-
frameHeight
Floatheight of each frame
-
textureName
Stringif given, the frames will be cached in
- format
off
-
eventName
-
callback
Remove event listeners.
on
-
eventName
-
callback
Register a new EventListener for the given event.
Parameters:
-
eventName
StringName of the event.
-
callback
FunctonCallback function.
once
-
eventName
-
callback
Add an EventListener that's only called once.
removeAllListeners
-
eventName
Remove all listeners or only the listeners for the specified event.
Parameters:
-
eventName
StringThe event you want to remove all listeners for.