Physics.Ninja.Circle#projCircle_22DegB()

projCircle_22DegB(x, y, oH, oV, obj, t) → {number} Resolves 22 Degree tile collision. Parameters Name Type Description x number Penetration depth on the x axis. y number Penetration depth on the y axis. oH number Grid / voronoi region. oV number Grid / voronoi region. obj Phaser.Physics.Ninja.Circle The Circle involved in the collision. t Phaser.Physics.Ninja.Tile The Tile involved in the collision. Returns number - The result of the collision. Source code: physics/ninja/

Circle#circumference()

circumference() → {number} The circumference of the circle. Returns number - The circumference of the circle. Source code: geom/Circle.js (Line 60)

Button#z

[readonly] z : number The z depth of this Game Object within its parent Group.No two objects in a Group can have the same z value.This value is adjusted automatically whenever the Group hierarchy changes.If you wish to re-order the layering of a Game Object then see methods like Group.moveUp or Group.bringToTop. Inherited From Phaser.Component.Core#z Source code: gameobjects/components/Core.js (Line 177)

Rectangle#topRight

topRight : Phaser.Point The location of the Rectangles top right corner as a Point object. The location of the Rectangles top left corner as a Point object. Source code: geom/Rectangle.js (Line 718)

Rope#deltaX

[readonly] deltaX : number Returns the delta x value. The difference between world.x now and in the previous frame. The value will be positive if the Game Object has moved to the right or negative if to the left. Inherited From Phaser.Component.Delta#deltaX Source code: gameobjects/components/Delta.js (Line 24)

Text#frameName

frameName : string Gets or sets the current frame name of the texture being used to render this Game Object. To change the frame set frameName to the name of the new frame in the texture atlas you wish this Game Object to use,for example: player.frameName = "idle". If the frame name given doesn't exist it will revert to the first frame found in the texture and throw a console warning. If you are using a sprite sheet then you should use the frame property instead. If you wish to fully replace

Rope#scaleMin

scaleMin : Phaser.Point The minimum scale this Game Object will scale down to. It allows you to prevent a parent from scaling this Game Object lower than the given value. Set it to null to remove the limit. Inherited From Phaser.Component.ScaleMinMax#scaleMin Source code: gameobjects/components/ScaleMinMax.js (Line 36)

FlexLayer#sendToBack()

sendToBack(child) → {any} Sends the given child to the bottom of this group so it renders below all other children. Parameters Name Type Description child any The child to send to the bottom of this group. Returns any - The child that was moved. Inherited From Phaser.Group#sendToBack Source code: core/Group.js (Line 926)

FlexLayer#checkAll()

checkAll(key, value, checkAlive, checkVisible, force) Quickly check that the same property across all children of this group is equal to the given value. This call doesn't descend down children, so if you have a Group inside of this group, the property will be checked on the group but not its children. Parameters Name Type Argument Default Description key string The property, as a string, to be set. For example: 'body.velocity.x' value any The value that will be checked. checkAli

Touch#removeTouchLockCallback()

removeTouchLockCallback(callback, context) → {boolean} Removes the callback at the defined index from the Phaser.Touch.touchLockCallbacks array Parameters Name Type Description callback function The callback to be removed. context object The context in which the callback exists. Returns boolean - True if the callback was deleted, otherwise false. Source code: input/Touch.js (Line 222)