2013-08-28 06:02:55 +00:00
|
|
|
/**
|
|
|
|
* @author Mat Groves http://matgroves.com/ @Doormat23
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2014-02-06 00:19:46 +00:00
|
|
|
* The Sprite object is the base for all textured objects that are rendered to the screen
|
2013-08-28 06:02:55 +00:00
|
|
|
*
|
|
|
|
* @class Sprite
|
|
|
|
* @extends DisplayObjectContainer
|
|
|
|
* @constructor
|
|
|
|
* @param texture {Texture} The texture for this sprite
|
2014-03-31 10:04:02 +00:00
|
|
|
*
|
|
|
|
* A sprite can be created directly from an image like this :
|
2014-07-01 14:03:46 +00:00
|
|
|
* var sprite = new PIXI.Sprite.fromImage('assets/image.png');
|
2014-02-06 00:19:46 +00:00
|
|
|
* yourStage.addChild(sprite);
|
|
|
|
* then obviously don't forget to add it to the stage you have already created
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
|
|
|
PIXI.Sprite = function(texture)
|
|
|
|
{
|
2013-12-23 04:19:52 +00:00
|
|
|
PIXI.DisplayObjectContainer.call( this );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The anchor sets the origin point of the texture.
|
2014-02-06 00:19:46 +00:00
|
|
|
* The default is 0,0 this means the texture's origin is the top left
|
|
|
|
* Setting than anchor to 0.5,0.5 means the textures origin is centred
|
|
|
|
* Setting the anchor to 1,1 would mean the textures origin points will be the bottom right corner
|
2013-12-23 04:19:52 +00:00
|
|
|
*
|
2013-12-03 20:50:34 +00:00
|
|
|
* @property anchor
|
|
|
|
* @type Point
|
|
|
|
*/
|
2013-12-23 04:19:52 +00:00
|
|
|
this.anchor = new PIXI.Point();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The texture that the sprite is using
|
|
|
|
*
|
|
|
|
* @property texture
|
|
|
|
* @type Texture
|
|
|
|
*/
|
|
|
|
this.texture = texture;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The width of the sprite (this is initially set by the texture)
|
|
|
|
*
|
|
|
|
* @property _width
|
|
|
|
* @type Number
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._width = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The height of the sprite (this is initially set by the texture)
|
|
|
|
*
|
|
|
|
* @property _height
|
|
|
|
* @type Number
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._height = 0;
|
|
|
|
|
2014-02-06 00:19:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The tint applied to the sprite. This is a hex value
|
|
|
|
*
|
|
|
|
* @property tint
|
|
|
|
* @type Number
|
|
|
|
* @default 0xFFFFFF
|
|
|
|
*/
|
|
|
|
this.tint = 0xFFFFFF;// * Math.random();
|
2014-03-31 10:04:02 +00:00
|
|
|
|
2014-02-06 00:19:46 +00:00
|
|
|
/**
|
|
|
|
* The blend mode to be applied to the sprite
|
|
|
|
*
|
|
|
|
* @property blendMode
|
|
|
|
* @type Number
|
|
|
|
* @default PIXI.blendModes.NORMAL;
|
|
|
|
*/
|
|
|
|
this.blendMode = PIXI.blendModes.NORMAL;
|
|
|
|
|
2013-12-23 04:19:52 +00:00
|
|
|
if(texture.baseTexture.hasLoaded)
|
|
|
|
{
|
2014-02-06 00:19:46 +00:00
|
|
|
this.onTextureUpdate();
|
2013-12-23 04:19:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.onTextureUpdateBind = this.onTextureUpdate.bind(this);
|
2014-10-10 19:36:04 +00:00
|
|
|
this.texture.on( 'update', this.onTextureUpdateBind );
|
2013-12-23 04:19:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this.renderable = true;
|
|
|
|
};
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
// constructor
|
|
|
|
PIXI.Sprite.prototype = Object.create( PIXI.DisplayObjectContainer.prototype );
|
|
|
|
PIXI.Sprite.prototype.constructor = PIXI.Sprite;
|
|
|
|
|
|
|
|
/**
|
2014-02-06 00:19:46 +00:00
|
|
|
* The width of the sprite, setting this will actually modify the scale to achieve the value set
|
2013-08-28 06:02:55 +00:00
|
|
|
*
|
|
|
|
* @property width
|
|
|
|
* @type Number
|
|
|
|
*/
|
|
|
|
Object.defineProperty(PIXI.Sprite.prototype, 'width', {
|
|
|
|
get: function() {
|
|
|
|
return this.scale.x * this.texture.frame.width;
|
|
|
|
},
|
|
|
|
set: function(value) {
|
2013-12-23 04:19:52 +00:00
|
|
|
this.scale.x = value / this.texture.frame.width;
|
2013-08-28 06:02:55 +00:00
|
|
|
this._width = value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
2014-02-06 00:19:46 +00:00
|
|
|
* The height of the sprite, setting this will actually modify the scale to achieve the value set
|
2013-08-28 06:02:55 +00:00
|
|
|
*
|
|
|
|
* @property height
|
|
|
|
* @type Number
|
|
|
|
*/
|
|
|
|
Object.defineProperty(PIXI.Sprite.prototype, 'height', {
|
|
|
|
get: function() {
|
|
|
|
return this.scale.y * this.texture.frame.height;
|
|
|
|
},
|
|
|
|
set: function(value) {
|
2013-12-23 04:19:52 +00:00
|
|
|
this.scale.y = value / this.texture.frame.height;
|
2013-08-28 06:02:55 +00:00
|
|
|
this._height = value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the texture of the sprite
|
|
|
|
*
|
|
|
|
* @method setTexture
|
|
|
|
* @param texture {Texture} The PIXI texture that is displayed by the sprite
|
|
|
|
*/
|
|
|
|
PIXI.Sprite.prototype.setTexture = function(texture)
|
|
|
|
{
|
2014-07-15 11:28:31 +00:00
|
|
|
this.texture = texture;
|
2014-02-06 00:19:46 +00:00
|
|
|
this.cachedTint = 0xFFFFFF;
|
2013-12-23 04:19:52 +00:00
|
|
|
};
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* When the texture is updated, this event will fire to update the scale and frame
|
|
|
|
*
|
|
|
|
* @method onTextureUpdate
|
|
|
|
* @param event
|
|
|
|
* @private
|
|
|
|
*/
|
2013-12-23 04:19:52 +00:00
|
|
|
PIXI.Sprite.prototype.onTextureUpdate = function()
|
2013-08-28 06:02:55 +00:00
|
|
|
{
|
2013-12-23 04:19:52 +00:00
|
|
|
// so if _width is 0 then width was not set..
|
|
|
|
if(this._width)this.scale.x = this._width / this.texture.frame.width;
|
|
|
|
if(this._height)this.scale.y = this._height / this.texture.frame.height;
|
|
|
|
|
2014-02-06 00:19:46 +00:00
|
|
|
|
2014-07-03 09:49:58 +00:00
|
|
|
//this.updateFrame = true;
|
2013-12-23 04:19:52 +00:00
|
|
|
};
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2014-02-06 00:19:46 +00:00
|
|
|
/**
|
2014-02-12 01:25:36 +00:00
|
|
|
* Returns the framing rectangle of the sprite as a PIXI.Rectangle object
|
|
|
|
*
|
|
|
|
* @method getBounds
|
|
|
|
* @param matrix {Matrix} the transformation matrix of the sprite
|
|
|
|
* @return {Rectangle} the framing rectangle
|
|
|
|
*/
|
|
|
|
PIXI.Sprite.prototype.getBounds = function(matrix)
|
2014-02-06 00:19:46 +00:00
|
|
|
{
|
2014-07-10 19:10:01 +00:00
|
|
|
|
2014-02-06 00:19:46 +00:00
|
|
|
var width = this.texture.frame.width;
|
|
|
|
var height = this.texture.frame.height;
|
|
|
|
|
|
|
|
var w0 = width * (1-this.anchor.x);
|
|
|
|
var w1 = width * -this.anchor.x;
|
|
|
|
|
|
|
|
var h0 = height * (1-this.anchor.y);
|
|
|
|
var h1 = height * -this.anchor.y;
|
|
|
|
|
2014-02-12 01:25:36 +00:00
|
|
|
var worldTransform = matrix || this.worldTransform ;
|
2014-02-06 00:19:46 +00:00
|
|
|
|
|
|
|
var a = worldTransform.a;
|
|
|
|
var b = worldTransform.c;
|
|
|
|
var c = worldTransform.b;
|
|
|
|
var d = worldTransform.d;
|
|
|
|
var tx = worldTransform.tx;
|
|
|
|
var ty = worldTransform.ty;
|
|
|
|
|
|
|
|
var x1 = a * w1 + c * h1 + tx;
|
|
|
|
var y1 = d * h1 + b * w1 + ty;
|
|
|
|
|
|
|
|
var x2 = a * w0 + c * h1 + tx;
|
|
|
|
var y2 = d * h1 + b * w0 + ty;
|
|
|
|
|
|
|
|
var x3 = a * w0 + c * h0 + tx;
|
|
|
|
var y3 = d * h0 + b * w0 + ty;
|
|
|
|
|
|
|
|
var x4 = a * w1 + c * h0 + tx;
|
|
|
|
var y4 = d * h0 + b * w1 + ty;
|
|
|
|
|
|
|
|
var maxX = -Infinity;
|
|
|
|
var maxY = -Infinity;
|
|
|
|
|
|
|
|
var minX = Infinity;
|
|
|
|
var minY = Infinity;
|
|
|
|
|
|
|
|
minX = x1 < minX ? x1 : minX;
|
|
|
|
minX = x2 < minX ? x2 : minX;
|
|
|
|
minX = x3 < minX ? x3 : minX;
|
|
|
|
minX = x4 < minX ? x4 : minX;
|
|
|
|
|
|
|
|
minY = y1 < minY ? y1 : minY;
|
|
|
|
minY = y2 < minY ? y2 : minY;
|
|
|
|
minY = y3 < minY ? y3 : minY;
|
|
|
|
minY = y4 < minY ? y4 : minY;
|
|
|
|
|
|
|
|
maxX = x1 > maxX ? x1 : maxX;
|
|
|
|
maxX = x2 > maxX ? x2 : maxX;
|
|
|
|
maxX = x3 > maxX ? x3 : maxX;
|
|
|
|
maxX = x4 > maxX ? x4 : maxX;
|
|
|
|
|
|
|
|
maxY = y1 > maxY ? y1 : maxY;
|
|
|
|
maxY = y2 > maxY ? y2 : maxY;
|
|
|
|
maxY = y3 > maxY ? y3 : maxY;
|
|
|
|
maxY = y4 > maxY ? y4 : maxY;
|
|
|
|
|
|
|
|
var bounds = this._bounds;
|
|
|
|
|
|
|
|
bounds.x = minX;
|
|
|
|
bounds.width = maxX - minX;
|
|
|
|
|
|
|
|
bounds.y = minY;
|
|
|
|
bounds.height = maxY - minY;
|
|
|
|
|
|
|
|
// store a reference so that if this function gets called again in the render cycle we do not have to recalculate
|
|
|
|
this._currentBounds = bounds;
|
|
|
|
|
|
|
|
return bounds;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the object using the WebGL renderer
|
|
|
|
*
|
|
|
|
* @method _renderWebGL
|
2014-03-31 10:04:02 +00:00
|
|
|
* @param renderSession {RenderSession}
|
2014-02-06 00:19:46 +00:00
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
PIXI.Sprite.prototype._renderWebGL = function(renderSession)
|
|
|
|
{
|
|
|
|
// if the sprite is not visible or the alpha is 0 then no need to render this element
|
|
|
|
if(!this.visible || this.alpha <= 0)return;
|
2014-03-31 10:04:02 +00:00
|
|
|
|
2014-02-06 00:19:46 +00:00
|
|
|
var i,j;
|
|
|
|
|
|
|
|
// do a quick check to see if this element has a mask or a filter.
|
|
|
|
if(this._mask || this._filters)
|
|
|
|
{
|
|
|
|
var spriteBatch = renderSession.spriteBatch;
|
|
|
|
|
2014-07-01 14:03:46 +00:00
|
|
|
// push filter first as we need to ensure the stencil buffer is correct for any masking
|
|
|
|
if(this._filters)
|
|
|
|
{
|
|
|
|
spriteBatch.flush();
|
|
|
|
renderSession.filterManager.pushFilter(this._filterBlock);
|
|
|
|
}
|
|
|
|
|
2014-02-06 00:19:46 +00:00
|
|
|
if(this._mask)
|
|
|
|
{
|
|
|
|
spriteBatch.stop();
|
|
|
|
renderSession.maskManager.pushMask(this.mask, renderSession);
|
|
|
|
spriteBatch.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
// add this sprite to the batch
|
|
|
|
spriteBatch.render(this);
|
|
|
|
|
|
|
|
// now loop through the children and make sure they get rendered
|
|
|
|
for(i=0,j=this.children.length; i<j; i++)
|
|
|
|
{
|
|
|
|
this.children[i]._renderWebGL(renderSession);
|
|
|
|
}
|
|
|
|
|
|
|
|
// time to stop the sprite batch as either a mask element or a filter draw will happen next
|
|
|
|
spriteBatch.stop();
|
|
|
|
|
2014-07-01 14:03:46 +00:00
|
|
|
if(this._mask)renderSession.maskManager.popMask(this._mask, renderSession);
|
2014-02-06 00:19:46 +00:00
|
|
|
if(this._filters)renderSession.filterManager.popFilter();
|
2014-03-31 10:04:02 +00:00
|
|
|
|
2014-02-06 00:19:46 +00:00
|
|
|
spriteBatch.start();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
renderSession.spriteBatch.render(this);
|
|
|
|
|
|
|
|
// simple render children!
|
|
|
|
for(i=0,j=this.children.length; i<j; i++)
|
|
|
|
{
|
|
|
|
this.children[i]._renderWebGL(renderSession);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-31 10:04:02 +00:00
|
|
|
|
|
|
|
//TODO check culling
|
2014-02-06 00:19:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the object using the Canvas renderer
|
|
|
|
*
|
|
|
|
* @method _renderCanvas
|
2014-03-31 10:04:02 +00:00
|
|
|
* @param renderSession {RenderSession}
|
2014-02-06 00:19:46 +00:00
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
PIXI.Sprite.prototype._renderCanvas = function(renderSession)
|
|
|
|
{
|
2014-07-10 13:46:48 +00:00
|
|
|
// If the sprite is not visible or the alpha is 0 then no need to render this element
|
2014-08-28 22:11:13 +00:00
|
|
|
if (this.visible === false || this.alpha === 0 || this.texture.crop.width <= 0 || this.texture.crop.height <= 0) return;
|
2014-03-31 10:04:02 +00:00
|
|
|
|
2014-07-09 04:40:50 +00:00
|
|
|
if (this.blendMode !== renderSession.currentBlendMode)
|
2014-02-06 00:19:46 +00:00
|
|
|
{
|
|
|
|
renderSession.currentBlendMode = this.blendMode;
|
2014-07-10 13:46:48 +00:00
|
|
|
renderSession.context.globalCompositeOperation = PIXI.blendModesCanvas[renderSession.currentBlendMode];
|
2014-02-06 00:19:46 +00:00
|
|
|
}
|
|
|
|
|
2014-07-09 04:40:50 +00:00
|
|
|
if (this._mask)
|
2014-02-06 00:19:46 +00:00
|
|
|
{
|
2014-10-10 19:36:04 +00:00
|
|
|
renderSession.maskManager.pushMask(this._mask, renderSession);
|
2014-02-06 00:19:46 +00:00
|
|
|
}
|
|
|
|
|
2014-07-09 04:40:50 +00:00
|
|
|
// Ignore null sources
|
2014-07-10 13:46:48 +00:00
|
|
|
if (this.texture.valid)
|
2014-02-06 00:19:46 +00:00
|
|
|
{
|
2014-10-10 19:36:04 +00:00
|
|
|
var resolution = this.texture.baseTexture.resolution / renderSession.resolution;
|
|
|
|
|
2014-07-10 13:46:48 +00:00
|
|
|
renderSession.context.globalAlpha = this.worldAlpha;
|
2014-02-06 00:19:46 +00:00
|
|
|
|
2014-07-10 13:46:48 +00:00
|
|
|
// Allow for pixel rounding
|
2014-02-09 13:36:02 +00:00
|
|
|
if (renderSession.roundPixels)
|
2014-02-09 03:48:31 +00:00
|
|
|
{
|
2014-07-10 13:46:48 +00:00
|
|
|
renderSession.context.setTransform(
|
|
|
|
this.worldTransform.a,
|
|
|
|
this.worldTransform.b,
|
2014-10-10 19:36:04 +00:00
|
|
|
this.worldTransform.c,
|
2014-07-10 13:46:48 +00:00
|
|
|
this.worldTransform.d,
|
2014-10-10 19:36:04 +00:00
|
|
|
(this.worldTransform.tx* renderSession.resolution) | 0,
|
|
|
|
(this.worldTransform.ty* renderSession.resolution) | 0);
|
2014-02-09 03:48:31 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-10 13:46:48 +00:00
|
|
|
renderSession.context.setTransform(
|
|
|
|
this.worldTransform.a,
|
|
|
|
this.worldTransform.b,
|
2014-10-10 19:36:04 +00:00
|
|
|
this.worldTransform.c,
|
2014-07-10 13:46:48 +00:00
|
|
|
this.worldTransform.d,
|
2014-10-10 19:36:04 +00:00
|
|
|
this.worldTransform.tx * renderSession.resolution,
|
|
|
|
this.worldTransform.ty * renderSession.resolution);
|
2014-02-09 03:48:31 +00:00
|
|
|
}
|
|
|
|
|
2014-07-09 04:40:50 +00:00
|
|
|
// If smoothingEnabled is supported and we need to change the smoothing property for this texture
|
|
|
|
if (renderSession.smoothProperty && renderSession.scaleMode !== this.texture.baseTexture.scaleMode)
|
|
|
|
{
|
2014-02-06 00:19:46 +00:00
|
|
|
renderSession.scaleMode = this.texture.baseTexture.scaleMode;
|
2014-07-10 13:46:48 +00:00
|
|
|
renderSession.context[renderSession.smoothProperty] = (renderSession.scaleMode === PIXI.scaleModes.LINEAR);
|
2014-02-06 00:19:46 +00:00
|
|
|
}
|
|
|
|
|
2014-07-10 13:46:48 +00:00
|
|
|
// If the texture is trimmed we offset by the trim x/y, otherwise we use the frame dimensions
|
|
|
|
var dx = (this.texture.trim) ? this.texture.trim.x - this.anchor.x * this.texture.trim.width : this.anchor.x * -this.texture.frame.width;
|
|
|
|
var dy = (this.texture.trim) ? this.texture.trim.y - this.anchor.y * this.texture.trim.height : this.anchor.y * -this.texture.frame.height;
|
|
|
|
|
2014-07-09 04:40:50 +00:00
|
|
|
if (this.tint !== 0xFFFFFF)
|
2014-02-06 00:19:46 +00:00
|
|
|
{
|
2014-07-09 04:40:50 +00:00
|
|
|
if (this.cachedTint !== this.tint)
|
2014-02-06 00:19:46 +00:00
|
|
|
{
|
|
|
|
this.cachedTint = this.tint;
|
2014-03-31 10:04:02 +00:00
|
|
|
|
2014-07-10 13:46:48 +00:00
|
|
|
// TODO clean up caching - how to clean up the caches?
|
2014-02-06 00:19:46 +00:00
|
|
|
this.tintedTexture = PIXI.CanvasTinter.getTintedTexture(this, this.tint);
|
|
|
|
}
|
|
|
|
|
2014-07-10 13:46:48 +00:00
|
|
|
renderSession.context.drawImage(
|
|
|
|
this.tintedTexture,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
this.texture.crop.width,
|
|
|
|
this.texture.crop.height,
|
2014-10-10 19:36:04 +00:00
|
|
|
dx / resolution,
|
|
|
|
dy / resolution,
|
|
|
|
this.texture.crop.width / resolution,
|
|
|
|
this.texture.crop.height / resolution);
|
2014-02-06 00:19:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-10 13:46:48 +00:00
|
|
|
renderSession.context.drawImage(
|
|
|
|
this.texture.baseTexture.source,
|
|
|
|
this.texture.crop.x,
|
|
|
|
this.texture.crop.y,
|
|
|
|
this.texture.crop.width,
|
|
|
|
this.texture.crop.height,
|
2014-10-10 19:36:04 +00:00
|
|
|
dx / resolution,
|
|
|
|
dy / resolution,
|
|
|
|
this.texture.crop.width / resolution,
|
|
|
|
this.texture.crop.height / resolution);
|
2014-02-06 00:19:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// OVERWRITE
|
2014-07-09 04:40:50 +00:00
|
|
|
for (var i = 0, j = this.children.length; i < j; i++)
|
2014-02-06 00:19:46 +00:00
|
|
|
{
|
2014-07-10 13:46:48 +00:00
|
|
|
this.children[i]._renderCanvas(renderSession);
|
2014-02-06 00:19:46 +00:00
|
|
|
}
|
|
|
|
|
2014-07-09 04:40:50 +00:00
|
|
|
if (this._mask)
|
2014-02-06 00:19:46 +00:00
|
|
|
{
|
2014-10-10 19:36:04 +00:00
|
|
|
renderSession.maskManager.popMask(renderSession);
|
2014-02-06 00:19:46 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
// some helper functions..
|
|
|
|
|
|
|
|
/**
|
2013-12-23 04:19:52 +00:00
|
|
|
*
|
2013-08-28 06:02:55 +00:00
|
|
|
* Helper function that creates a sprite that will contain a texture from the TextureCache based on the frameId
|
|
|
|
* The frame ids are created when a Texture packer file has been loaded
|
|
|
|
*
|
|
|
|
* @method fromFrame
|
|
|
|
* @static
|
|
|
|
* @param frameId {String} The frame Id of the texture in the cache
|
|
|
|
* @return {Sprite} A new Sprite using a texture from the texture cache matching the frameId
|
|
|
|
*/
|
|
|
|
PIXI.Sprite.fromFrame = function(frameId)
|
|
|
|
{
|
2013-12-23 04:19:52 +00:00
|
|
|
var texture = PIXI.TextureCache[frameId];
|
|
|
|
if(!texture) throw new Error('The frameId "' + frameId + '" does not exist in the texture cache' + this);
|
|
|
|
return new PIXI.Sprite(texture);
|
|
|
|
};
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
2013-12-23 04:19:52 +00:00
|
|
|
*
|
2013-08-28 06:02:55 +00:00
|
|
|
* Helper function that creates a sprite that will contain a texture based on an image url
|
|
|
|
* If the image is not in the texture cache it will be loaded
|
|
|
|
*
|
|
|
|
* @method fromImage
|
|
|
|
* @static
|
|
|
|
* @param imageId {String} The image url of the texture
|
|
|
|
* @return {Sprite} A new Sprite using a texture from the texture cache matching the image id
|
|
|
|
*/
|
2014-02-13 23:13:10 +00:00
|
|
|
PIXI.Sprite.fromImage = function(imageId, crossorigin, scaleMode)
|
2013-08-28 06:02:55 +00:00
|
|
|
{
|
2014-02-13 23:13:10 +00:00
|
|
|
var texture = PIXI.Texture.fromImage(imageId, crossorigin, scaleMode);
|
2013-12-23 04:19:52 +00:00
|
|
|
return new PIXI.Sprite(texture);
|
|
|
|
};
|