Bullet#autoCull

autoCull : boolean A Game Object with autoCull set to true will check its bounds against the World Camera every frame.If it is not intersecting the Camera bounds at any point then it has its renderable property set to false.This keeps the Game Object alive and still processing updates, but forces it to skip the render step entirely. This is a relatively expensive operation, especially if enabled on hundreds of Game Objects. So enable it only if you know it's required,or you have tested perfor

TilemapLayer#checkWorldBounds

checkWorldBounds : boolean If this is set to true the Game Object checks if it is within the World bounds each frame. When it is no longer intersecting the world bounds it dispatches the onOutOfBounds event. If it was previously out of bounds but is now intersecting the world bounds again it dispatches the onEnterBounds event. It also optionally kills the Game Object if outOfBoundsKill is true. When checkWorldBounds is enabled it forces the Game Object to calculate its full bounds every fram

BitmapText#cameraOffset

cameraOffset : Phaser.Point The x/y coordinate offset applied to the top-left of the camera that this Game Object will be drawn at if fixedToCamera is true. The values are relative to the top-left of the camera view and in addition to any parent of the Game Object on the display list. Inherited From Phaser.Component.FixedToCamera#cameraOffset Source code: gameobjects/components/FixedToCamera.js (Line 86)

TilemapLayer#data

data : Object An empty Object that belongs to this Game Object.This value isn't ever used internally by Phaser, but may be used by your own code, orby Phaser Plugins, to store data that needs to be associated with the Game Object,without polluting the Game Object directly. Inherited From Phaser.Component.Core#data Default Value {} Source code: gameobjects/components/Core.js (Line 160)

TilemapLayer#updateCrop()

updateCrop() If you have set a crop rectangle on this Game Object via crop and since modified the cropRect property,or the rectangle it references, then you need to update the crop frame by calling this method. Inherited From Phaser.Component.Crop#updateCrop Source code: gameobjects/components/Crop.js (Line 86)

Device#pointerLock

pointerLock : boolean Is Pointer Lock available? Source code: utils/Device.js (Line 204)

Camera.FOLLOW_TOPDOWN

[static] FOLLOW_TOPDOWN : number Source code: core/Camera.js (Line 201)

Color.getColor()

<static> getColor(r, g, b) → {number} Given 3 color values this will return an integer representation of it. Parameters Name Type Description r number The red color component, in the range 0 - 255. g number The green color component, in the range 0 - 255. b number The blue color component, in the range 0 - 255. Returns number - A native color value integer (format: 0xRRGGBB). Source code: utils/Color.js (Line 500)

Physics.P2#getContactMaterial()

getContactMaterial(materialA, materialB) → {Phaser.Physics.P2.ContactMaterial | boolean} Gets a Contact Material based on the two given Materials. Parameters Name Type Description materialA Phaser.Physics.P2.Material The first Material to search for. materialB Phaser.Physics.P2.Material The second Material to search for. Returns Phaser.Physics.P2.ContactMaterial | boolean - The Contact Material or false if none was found matching the Materials given. Source code: physics/p2/World

Physics.P2.InversePointProxy#InversePointProxy

new InversePointProxy(world, destination) A InversePointProxy is an internal class that allows for direct getter/setter style property access to Arrays and TypedArrays but inverses the values on set. Parameters Name Type Description world Phaser.Physics.P2 A reference to the P2 World. destination any The object to bind to. Source code: physics/p2/InversePointProxy.js (Line 15)