Frame#distance

distance : number The distance from the top left to the bottom-right of this Frame. Source code: animation/Frame.js (Line 64)

Frame#clone()

clone() → {Phaser.Frame} Clones this Frame into a new Phaser.Frame object and returns it.Note that all properties are cloned, including the name, index and UUID. Returns Phaser.Frame - An exact copy of this Frame object. Source code: animation/Frame.js (Line 183)

Frame#centerY

centerY : number Center Y position within the image to cut from. Source code: animation/Frame.js (Line 59)

Frame#centerX

centerX : number Center X position within the image to cut from. Source code: animation/Frame.js (Line 54)

Frame#bottom

bottom : number The bottom of the frame (y + height). Source code: animation/Frame.js (Line 126)

FlexLayer#z

[readonly] z : integer The z-depth value of this object within its parent container/Group - the World is a Group as well.This value must be unique for each child in a Group. Inherited From Phaser.Group#z Source code: core/Group.js (Line 57)

FlexLayer#y

y : number The y coordinate of the group container. You can adjust the group container itself by modifying its coordinates.This will have no impact on the x/y coordinates of its children, but it will update their worldTransform and on-screen position. Inherited From Phaser.Group#y Source code: core/Group.js (Line 2978)

FlexLayer#xy()

xy(index, x, y) Positions the child found at the given index within this group to the given x and y coordinates. Parameters Name Type Description index integer The index of the child in the group to set the position of. x number The new x position of the child. y number The new y position of the child. Inherited From Phaser.Group#xy Source code: core/Group.js (Line 993)

FlexLayer#x

x : number The x coordinate of the group container. You can adjust the group container itself by modifying its coordinates.This will have no impact on the x/y coordinates of its children, but it will update their worldTransform and on-screen position. Inherited From Phaser.Group#x Source code: core/Group.js (Line 2969)

FlexLayer#width

width : number The width of the displayObjectContainer, setting this will actually modify the scale to achieve the value set Inherited From PIXI.DisplayObjectContainer#width Source code: pixi/display/DisplayObjectContainer.js (Line 571)