2014-02-06 19:34:05 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2016-04-04 21:15:01 +00:00
|
|
|
* @copyright 2016 Photon Storm Ltd.
|
2014-02-06 19:34:05 +00:00
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2014-09-16 16:35:08 +00:00
|
|
|
* An Image is a light-weight object you can use to display anything that doesn't need physics or animation.
|
2014-02-07 17:14:10 +00:00
|
|
|
* It can still rotate, scale, crop and receive input events. This makes it perfect for logos, backgrounds, simple buttons and other non-Sprite graphics.
|
2014-02-06 19:34:05 +00:00
|
|
|
*
|
2016-10-09 21:27:58 +00:00
|
|
|
* @class Phaser.GameObject.Image
|
2016-10-19 10:54:00 +00:00
|
|
|
* @extends Phaser.GameObject
|
2014-02-06 19:34:05 +00:00
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game} game - A reference to the currently running game.
|
2015-05-08 03:12:07 +00:00
|
|
|
* @param {number} [x=0] - The x coordinate of the Image. The coordinate is relative to any parent container this Image may be in.
|
|
|
|
* @param {number} [y=0] - The y coordinate of the Image. The coordinate is relative to any parent container this Image may be in.
|
2016-10-12 23:08:26 +00:00
|
|
|
* @param {string} [key] - The texture used by the Image during rendering. It can be a string which is a reference to the Cache entry, or an instance of a RenderTexture, BitmapData or PIXI.Texture.
|
2015-05-08 03:12:07 +00:00
|
|
|
* @param {string|number} [frame] - If this Image is using part of a sprite sheet or texture atlas you can specify the exact frame to use by giving a string or numeric index.
|
2014-02-06 19:34:05 +00:00
|
|
|
*/
|
2016-11-08 01:50:57 +00:00
|
|
|
Phaser.GameObject.Image = function (state, x, y, key, frame, name)
|
2016-10-11 13:52:17 +00:00
|
|
|
{
|
2016-11-08 01:50:57 +00:00
|
|
|
var _texture = state.game.textures.get(key);
|
2016-10-19 10:54:00 +00:00
|
|
|
var _frame = _texture.get(frame);
|
|
|
|
|
2016-11-08 01:50:57 +00:00
|
|
|
Phaser.GameObject.call(this, state, x, y, _texture, _frame);
|
2016-10-14 03:09:22 +00:00
|
|
|
|
2016-11-01 00:31:45 +00:00
|
|
|
this.name = name;
|
|
|
|
|
2014-02-06 19:34:05 +00:00
|
|
|
/**
|
|
|
|
* @property {number} type - The const type of this object.
|
|
|
|
* @readonly
|
|
|
|
*/
|
|
|
|
this.type = Phaser.IMAGE;
|
|
|
|
};
|
|
|
|
|
2016-10-19 10:54:00 +00:00
|
|
|
Phaser.GameObject.Image.prototype = Object.create(Phaser.GameObject.prototype);
|
2016-10-09 21:27:58 +00:00
|
|
|
Phaser.GameObject.Image.prototype.constructor = Phaser.GameObject.Image;
|
2014-02-06 19:34:05 +00:00
|
|
|
|
|
|
|
/**
|
2014-02-07 02:31:29 +00:00
|
|
|
* Automatically called by World.preUpdate.
|
2014-02-06 19:34:05 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Image#preUpdate
|
|
|
|
* @memberof Phaser.Image
|
|
|
|
*/
|
2016-10-11 13:52:17 +00:00
|
|
|
Phaser.GameObject.Image.prototype.preUpdate = function ()
|
|
|
|
{
|
2016-11-06 12:18:08 +00:00
|
|
|
// Would like to get rid of this somehow ...
|
2016-10-14 05:31:01 +00:00
|
|
|
if (this.parent)
|
|
|
|
{
|
2016-10-19 01:21:20 +00:00
|
|
|
this.color.worldAlpha = this.parent.color.worldAlpha;
|
2016-10-14 05:31:01 +00:00
|
|
|
}
|
2014-03-23 08:40:24 +00:00
|
|
|
};
|
2016-10-13 00:54:18 +00:00
|
|
|
|
2016-10-19 10:54:00 +00:00
|
|
|
// Phaser.GameObject.Image.prototype.update = function ()
|
|
|
|
// {
|
|
|
|
// };
|
2016-10-13 00:54:18 +00:00
|
|
|
|
2016-10-19 10:54:00 +00:00
|
|
|
// Phaser.GameObject.Image.prototype.postUpdate = function ()
|
|
|
|
// {
|
|
|
|
// };
|
2016-10-13 00:54:18 +00:00
|
|
|
|
|
|
|
Object.defineProperties(Phaser.GameObject.Image.prototype, {
|
|
|
|
|
|
|
|
width: {
|
|
|
|
|
|
|
|
enumerable: true,
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this.transform._scaleX * this.frame.realWidth;
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (value)
|
|
|
|
{
|
|
|
|
this.scaleX = value / this.frame.realWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
height: {
|
|
|
|
|
|
|
|
enumerable: true,
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this.transform._scaleY * this.frame.realHeight;
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (value)
|
|
|
|
{
|
|
|
|
this.scaleY = value / this.frame.realHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|