Bullet#x

x : number The position of the Game Object on the x axis relative to the local coordinates of the parent. Inherited From Phaser.Component.PhysicsBody#x Source code: gameobjects/components/PhysicsBody.js (Line 98)

Bullet#world

world : Phaser.Point The world coordinates of this Game Object in pixels.Depending on where in the display list this Game Object is placed this value can differ from position,which contains the x/y coordinates relative to the Game Objects parent. Inherited From Phaser.Component.Core#world Source code: gameobjects/components/Core.js (Line 211)

Bullet#width

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

Bullet#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)

Bullet#update()

update() Override this method in your own custom objects to handle any update requirements.It is called immediately after preUpdate and before postUpdate.Remember if this Game Object has any children you should call update on those too. Inherited From Phaser.Component.Core#update Source code: gameobjects/components/Core.js (Line 328)

Bullet#type

[readonly] type : number The const type of this object. Inherited From Phaser.Sprite#type Source code: gameobjects/Sprite.js (Line 55)

Bullet#transformCallback

transformCallback : Function The callback that will apply any scale limiting to the worldTransform. Inherited From Phaser.Component.ScaleMinMax#transformCallback Source code: gameobjects/components/ScaleMinMax.js (Line 20)

Bullet#transformCallbackContext

transformCallbackContext : Object The context under which transformCallback is called. Inherited From Phaser.Component.ScaleMinMax#transformCallbackContext Source code: gameobjects/components/ScaleMinMax.js (Line 26)

Bullet#tintedTexture

tintedTexture :Canvas A canvas that contains the tinted version of the Sprite (in Canvas mode, WebGL doesn't populate this) Inherited From PIXI.Sprite#tintedTexture Default Value null Source code: pixi/display/Sprite.js (Line 73)

Bullet#top

top : number The y coordinate of the Game Object.This is the same as y - offsetY. Inherited From Phaser.Component.Bounds#top Source code: gameobjects/components/Bounds.js (Line 146)