2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-07-04 12:23:58 +00:00
|
|
|
var Class = require('../utils/Class');
|
2016-12-15 17:15:47 +00:00
|
|
|
var Extend = require('../utils/object/Extend');
|
|
|
|
|
2016-12-06 16:18:28 +00:00
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* @classdesc
|
|
|
|
* A Frame is a section of a Texture.
|
|
|
|
*
|
|
|
|
* @class Frame
|
|
|
|
* @memberOf Phaser.Textures
|
|
|
|
* @constructor
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {Phaser.Textures.Texture} texture - The Texture this Frame is a part of.
|
|
|
|
* @param {integer|string} name - The name of this Frame. The name is unique within the Texture.
|
|
|
|
* @param {integer} sourceIndex - The index of the TextureSource that this Frame is a part of.
|
|
|
|
* @param {number} x - The x coordinate of the top-left of this Frame.
|
|
|
|
* @param {number} y - The y coordinate of the top-left of this Frame.
|
|
|
|
* @param {number} width - The width of this Frame.
|
|
|
|
* @param {number} height - The height of this Frame.
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
var Frame = new Class({
|
2016-12-06 16:18:28 +00:00
|
|
|
|
2017-07-04 12:23:58 +00:00
|
|
|
initialize:
|
2016-12-06 16:18:28 +00:00
|
|
|
|
2017-07-04 12:23:58 +00:00
|
|
|
function Frame (texture, name, sourceIndex, x, y, width, height)
|
|
|
|
{
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The Texture this Frame is a part of.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#texture
|
|
|
|
* @type {Phaser.Textures.Texture}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.texture = texture;
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The name of this Frame.
|
|
|
|
* The name is unique within the Texture.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#name
|
|
|
|
* @type {string}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.name = name;
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* The TextureSource this Frame is part of.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#source
|
|
|
|
* @type {Phaser.Textures.TextureSource}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.source = texture.source[sourceIndex];
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* The index of the TextureSource in the Texture sources array.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#sourceIndex
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.sourceIndex = sourceIndex;
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* X position within the source image to cut from.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#cutX
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.cutX = x;
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* Y position within the source image to cut from.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#cutY
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.cutY = y;
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The width of the area in the source image to cut.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#cutWidth
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.cutWidth = width;
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The height of the area in the source image to cut.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#cutHeight
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.cutHeight = height;
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The X rendering offset of this Frame, taking trim into account.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#x
|
|
|
|
* @type {integer}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.x = 0;
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The Y rendering offset of this Frame, taking trim into account.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#y
|
|
|
|
* @type {integer}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.y = 0;
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The rendering width of this Frame, taking trim into account.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#width
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.width = width;
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The rendering height of this Frame, taking trim into account.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#height
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.height = height;
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* Half the width, floored.
|
|
|
|
* Precalculated for the renderer.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#halfWidth
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-11-03 10:27:59 +00:00
|
|
|
this.halfWidth = Math.floor(width * 0.5);
|
2017-10-16 21:16:33 +00:00
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* Half the height, floored.
|
|
|
|
* Precalculated for the renderer.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#halfHeight
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-11-03 10:27:59 +00:00
|
|
|
this.halfHeight = Math.floor(height * 0.5);
|
2017-10-16 21:16:33 +00:00
|
|
|
|
2017-07-04 12:23:58 +00:00
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The x center of this frame, floored.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#centerX
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.centerX = Math.floor(width / 2);
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The y center of this frame, floored.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#centerY
|
|
|
|
* @type {integer}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.centerY = Math.floor(height / 2);
|
|
|
|
|
2018-01-19 18:23:25 +00:00
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The horizontal pivot point of this Frame.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#pivotX
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2018-01-19 18:23:25 +00:00
|
|
|
this.pivotX = 0;
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The vertical pivot point of this Frame.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#pivotY
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2018-01-19 18:23:25 +00:00
|
|
|
this.pivotY = 0;
|
|
|
|
|
2018-02-09 15:22:15 +00:00
|
|
|
/**
|
|
|
|
* Does this Frame have a custom pivot point?
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#customPivot
|
|
|
|
* @type {boolean}
|
|
|
|
* @default false
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
|
|
|
this.customPivot = false;
|
|
|
|
|
2017-07-04 12:23:58 +00:00
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* **CURRENTLY UNSUPPORTED**
|
|
|
|
*
|
|
|
|
* Is this frame is rotated or not in the Texture?
|
|
|
|
* Rotation allows you to use rotated frames in texture atlas packing.
|
|
|
|
* It has nothing to do with Sprite rotation.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#rotated
|
|
|
|
* @type {boolean}
|
|
|
|
* @default false
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.rotated = false;
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* Over-rides the Renderer setting.
|
|
|
|
* -1 = use Renderer Setting
|
|
|
|
* 0 = No rounding
|
|
|
|
* 1 = Round
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#autoRound
|
|
|
|
* @type {integer}
|
|
|
|
* @default -1
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.autoRound = -1;
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* Any Frame specific custom data can be stored here.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#customData
|
|
|
|
* @type {object}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2018-01-19 18:23:25 +00:00
|
|
|
this.customData = {};
|
|
|
|
|
2017-07-04 12:23:58 +00:00
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The un-modified source frame, trim and UV data.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#data
|
|
|
|
* @type {object}
|
|
|
|
* @private
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-04 12:23:58 +00:00
|
|
|
this.data = {
|
|
|
|
cut: {
|
|
|
|
x: x,
|
|
|
|
y: y,
|
|
|
|
w: width,
|
|
|
|
h: height,
|
|
|
|
r: x + width,
|
|
|
|
b: y + height
|
|
|
|
},
|
|
|
|
trim: false,
|
|
|
|
sourceSize: {
|
|
|
|
w: width,
|
|
|
|
h: height
|
|
|
|
},
|
|
|
|
spriteSourceSize: {
|
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
w: width,
|
|
|
|
h: height
|
|
|
|
},
|
|
|
|
uvs: {
|
|
|
|
x0: 0,
|
|
|
|
y0: 0,
|
|
|
|
x1: 0,
|
|
|
|
y1: 0,
|
|
|
|
x2: 0,
|
|
|
|
y2: 0,
|
|
|
|
x3: 0,
|
|
|
|
y3: 0
|
|
|
|
},
|
|
|
|
radius: 0.5 * Math.sqrt(width * width + height * height),
|
|
|
|
drawImage: {
|
|
|
|
sx: x,
|
|
|
|
sy: y,
|
|
|
|
sWidth: width,
|
|
|
|
sHeight: height,
|
|
|
|
dWidth: width,
|
|
|
|
dHeight: height
|
|
|
|
}
|
|
|
|
};
|
2016-12-06 16:18:28 +00:00
|
|
|
|
2017-07-04 12:23:58 +00:00
|
|
|
this.updateUVs();
|
|
|
|
},
|
2016-12-06 16:18:28 +00:00
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* If the frame was trimmed when added to the Texture Atlas, this records the trim and source data.
|
|
|
|
*
|
|
|
|
* @method Phaser.Textures.Frame#setTrim
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {number} actualWidth - The width of the frame before being trimmed.
|
|
|
|
* @param {number} actualHeight - The height of the frame before being trimmed.
|
|
|
|
* @param {number} destX - The destination X position of the trimmed frame for display.
|
|
|
|
* @param {number} destY - The destination Y position of the trimmed frame for display.
|
|
|
|
* @param {number} destWidth - The destination width of the trimmed frame for display.
|
|
|
|
* @param {number} destHeight - The destination height of the trimmed frame for display.
|
|
|
|
*
|
|
|
|
* @return {Phaser.Textures.Frame} This Frame object.
|
|
|
|
*/
|
2016-12-06 16:18:28 +00:00
|
|
|
setTrim: function (actualWidth, actualHeight, destX, destY, destWidth, destHeight)
|
|
|
|
{
|
2017-01-16 22:43:46 +00:00
|
|
|
var data = this.data;
|
|
|
|
var ss = data.spriteSourceSize;
|
|
|
|
|
2016-12-06 16:18:28 +00:00
|
|
|
// Store actual values
|
|
|
|
|
2017-01-16 22:43:46 +00:00
|
|
|
data.trim = true;
|
2016-12-06 16:18:28 +00:00
|
|
|
|
2017-01-16 22:43:46 +00:00
|
|
|
data.sourceSize.w = actualWidth;
|
|
|
|
data.sourceSize.h = actualHeight;
|
2016-12-06 16:18:28 +00:00
|
|
|
|
2017-01-16 22:43:46 +00:00
|
|
|
ss.x = destX;
|
|
|
|
ss.y = destY;
|
|
|
|
ss.w = destWidth;
|
|
|
|
ss.h = destHeight;
|
2016-12-06 16:18:28 +00:00
|
|
|
|
|
|
|
// Adjust properties
|
|
|
|
this.x = destX;
|
|
|
|
this.y = destY;
|
2017-03-02 02:05:59 +00:00
|
|
|
|
2016-12-06 16:18:28 +00:00
|
|
|
this.width = destWidth;
|
|
|
|
this.height = destHeight;
|
|
|
|
|
2017-10-16 21:16:33 +00:00
|
|
|
this.halfWidth = destWidth * 0.5;
|
|
|
|
this.halfHeight = destHeight * 0.5;
|
|
|
|
|
2017-03-02 02:05:59 +00:00
|
|
|
this.centerX = Math.floor(destWidth / 2);
|
|
|
|
this.centerY = Math.floor(destHeight / 2);
|
|
|
|
|
2017-11-03 10:27:59 +00:00
|
|
|
return this.updateUVs();
|
2016-12-06 16:18:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* Updates the internal WebGL UV cache and the drawImage cache.
|
|
|
|
*
|
|
|
|
* @method Phaser.Textures.Frame#updateUVs
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @return {Phaser.Textures.Frame} This Frame object.
|
|
|
|
*/
|
2016-12-06 16:18:28 +00:00
|
|
|
updateUVs: function ()
|
|
|
|
{
|
2018-01-05 17:27:39 +00:00
|
|
|
var cx = this.cutX;
|
|
|
|
var cy = this.cutY;
|
|
|
|
var cw = this.cutWidth;
|
|
|
|
var ch = this.cutHeight;
|
|
|
|
|
2017-11-03 13:16:21 +00:00
|
|
|
// Canvas data
|
|
|
|
|
|
|
|
var cd = this.data.drawImage;
|
|
|
|
|
2018-01-05 17:27:39 +00:00
|
|
|
cd.sWidth = cw;
|
|
|
|
cd.sHeight = ch;
|
|
|
|
cd.dWidth = cw;
|
|
|
|
cd.dHeight = ch;
|
2017-11-03 13:16:21 +00:00
|
|
|
|
|
|
|
// WebGL data
|
|
|
|
|
2016-12-06 16:18:28 +00:00
|
|
|
var tw = this.source.width;
|
|
|
|
var th = this.source.height;
|
|
|
|
var uvs = this.data.uvs;
|
|
|
|
|
2018-01-05 17:27:39 +00:00
|
|
|
uvs.x0 = cx / tw;
|
|
|
|
uvs.y0 = cy / th;
|
2016-12-06 16:18:28 +00:00
|
|
|
|
2018-01-05 17:27:39 +00:00
|
|
|
uvs.x1 = cx / tw;
|
|
|
|
uvs.y1 = (cy + ch) / th;
|
2016-12-06 16:18:28 +00:00
|
|
|
|
2018-01-05 17:27:39 +00:00
|
|
|
uvs.x2 = (cx + cw) / tw;
|
|
|
|
uvs.y2 = (cy + ch) / th;
|
2016-12-06 16:18:28 +00:00
|
|
|
|
2018-01-05 17:27:39 +00:00
|
|
|
uvs.x3 = (cx + cw) / tw;
|
|
|
|
uvs.y3 = cy / th;
|
2016-12-06 16:18:28 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* Updates the internal WebGL UV cache.
|
|
|
|
*
|
|
|
|
* @method Phaser.Textures.Frame#updateUVsInverted
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @return {Phaser.Textures.Frame} This Frame object.
|
|
|
|
*/
|
2016-12-06 16:18:28 +00:00
|
|
|
updateUVsInverted: function ()
|
|
|
|
{
|
|
|
|
var tw = this.source.width;
|
|
|
|
var th = this.source.height;
|
|
|
|
var uvs = this.data.uvs;
|
|
|
|
|
2017-01-23 18:30:25 +00:00
|
|
|
uvs.x3 = (this.cutX + this.cutHeight) / tw;
|
|
|
|
uvs.y3 = (this.cutY + this.cutWidth) / th;
|
2016-12-06 16:18:28 +00:00
|
|
|
|
2017-07-14 13:30:20 +00:00
|
|
|
uvs.x2 = this.cutX / tw;
|
2016-12-06 16:18:28 +00:00
|
|
|
uvs.y2 = (this.cutY + this.cutWidth) / th;
|
2017-01-23 18:30:25 +00:00
|
|
|
|
|
|
|
uvs.x1 = this.cutX / tw;
|
|
|
|
uvs.y1 = this.cutY / th;
|
|
|
|
|
|
|
|
uvs.x0 = (this.cutX + this.cutHeight) / tw;
|
|
|
|
uvs.y0 = this.cutY / th;
|
2016-12-06 16:18:28 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* Clones this Frame into a new Frame object.
|
|
|
|
*
|
|
|
|
* @method Phaser.Textures.Frame#clone
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @return {Phaser.Textures.Frame} A clone of this Frame.
|
|
|
|
*/
|
2016-12-06 16:18:28 +00:00
|
|
|
clone: function ()
|
|
|
|
{
|
2016-12-15 17:15:47 +00:00
|
|
|
var clone = new Frame(this.texture, this.name, this.sourceIndex);
|
2016-12-06 16:18:28 +00:00
|
|
|
|
|
|
|
clone.cutX = this.cutX;
|
|
|
|
clone.cutY = this.cutY;
|
|
|
|
clone.cutWidth = this.cutWidth;
|
|
|
|
clone.cutHeight = this.cutHeight;
|
|
|
|
|
|
|
|
clone.x = this.x;
|
|
|
|
clone.y = this.y;
|
2017-03-02 02:05:59 +00:00
|
|
|
|
2016-12-06 16:18:28 +00:00
|
|
|
clone.width = this.width;
|
|
|
|
clone.height = this.height;
|
|
|
|
|
2017-10-16 21:16:33 +00:00
|
|
|
clone.halfWidth = this.halfWidth;
|
|
|
|
clone.halfHeight = this.halfHeight;
|
|
|
|
|
2017-03-02 02:05:59 +00:00
|
|
|
clone.centerX = this.centerX;
|
|
|
|
clone.centerY = this.centerY;
|
|
|
|
|
2016-12-06 16:18:28 +00:00
|
|
|
clone.rotated = this.rotated;
|
|
|
|
|
2016-12-15 17:15:47 +00:00
|
|
|
clone.data = Extend(true, clone.data, this.data);
|
2016-12-06 16:18:28 +00:00
|
|
|
|
|
|
|
clone.updateUVs();
|
|
|
|
|
|
|
|
return clone;
|
|
|
|
},
|
|
|
|
|
2018-02-08 04:01:44 +00:00
|
|
|
/**
|
|
|
|
* Destroys this Frames references.
|
|
|
|
*
|
|
|
|
* @method Phaser.Textures.Frame#destroy
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2016-12-06 16:18:28 +00:00
|
|
|
destroy: function ()
|
|
|
|
{
|
2018-01-31 03:38:10 +00:00
|
|
|
this.texture = null;
|
|
|
|
|
|
|
|
this.source = null;
|
2017-07-04 12:23:58 +00:00
|
|
|
},
|
2016-12-06 16:18:28 +00:00
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The width of the Frame in its un-trimmed, un-padded state, as prepared in the art package,
|
|
|
|
* before being packed.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#realWidth
|
|
|
|
* @type {number}
|
|
|
|
* @readOnly
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2016-12-06 16:18:28 +00:00
|
|
|
realWidth: {
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this.data.sourceSize.w;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The height of the Frame in its un-trimmed, un-padded state, as prepared in the art package,
|
|
|
|
* before being packed.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#realHeight
|
|
|
|
* @type {number}
|
|
|
|
* @readOnly
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2016-12-06 16:18:28 +00:00
|
|
|
realHeight: {
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this.data.sourceSize.h;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The UV data for this Frame.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#uvs
|
|
|
|
* @type {object}
|
|
|
|
* @readOnly
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2016-12-06 16:18:28 +00:00
|
|
|
uvs: {
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this.data.uvs;
|
|
|
|
}
|
|
|
|
|
2017-01-16 22:43:46 +00:00
|
|
|
},
|
|
|
|
|
2017-01-26 04:06:10 +00:00
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The radius of the Frame (derived from sqrt(w * w + h * h) / 2)
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#radius
|
|
|
|
* @type {number}
|
|
|
|
* @readOnly
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-01-26 04:06:10 +00:00
|
|
|
radius: {
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this.data.radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2017-04-18 14:31:30 +00:00
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* Is the Frame trimmed or not?
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#trimmed
|
|
|
|
* @type {boolean}
|
|
|
|
* @readOnly
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-18 14:31:30 +00:00
|
|
|
trimmed: {
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this.data.trim;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2017-01-16 22:43:46 +00:00
|
|
|
/**
|
2018-02-08 04:01:44 +00:00
|
|
|
* The Canvas drawImage data object.
|
|
|
|
*
|
|
|
|
* @name Phaser.Textures.Frame#canvasData
|
|
|
|
* @type {object}
|
|
|
|
* @readOnly
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-01-16 22:43:46 +00:00
|
|
|
canvasData: {
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this.data.drawImage;
|
|
|
|
}
|
|
|
|
|
2016-12-06 16:18:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = Frame;
|