new Extern(scene)
Parameters:
| Name | Type | Description |
|---|---|---|
scene |
Phaser.Scene | The Scene to which this Game Object belongs. A Game Object can only belong to one Scene at a time. |
- Since: 3.16.0
- Source: src/gameobjects/extern/Extern.js (Line 12)
Extends
- Phaser.GameObjects.GameObject
- Phaser.GameObjects.Components.Alpha
- Phaser.GameObjects.Components.BlendMode
- Phaser.GameObjects.Components.Depth
- Phaser.GameObjects.Components.Flip
- Phaser.GameObjects.Components.Origin
- Phaser.GameObjects.Components.ScrollFactor
- Phaser.GameObjects.Components.Size
- Phaser.GameObjects.Components.Texture
- Phaser.GameObjects.Components.Tint
- Phaser.GameObjects.Components.Transform
- Phaser.GameObjects.Components.Visible
Members
-
active :boolean
-
The active state of this Game Object. A Game Object with an active state of
trueis processed by the Scenes UpdateList, if added to it. An active object is one which is having its logic and internal systems updated.Type:
- boolean
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- true
- Source: src/gameobjects/GameObject.js (Line 112)
-
alpha :number
-
The alpha value of the Game Object.
This is a global value, impacting the entire Game Object, not just a region of it.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Alpha.js (Line 129)
-
alphaBottomLeft :number
-
The alpha value starting from the bottom-left of the Game Object. This value is interpolated from the corner to the center of the Game Object.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Alpha.js (Line 227)
-
alphaBottomRight :number
-
The alpha value starting from the bottom-right of the Game Object. This value is interpolated from the corner to the center of the Game Object.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Alpha.js (Line 257)
-
alphaTopLeft :number
-
The alpha value starting from the top-left of the Game Object. This value is interpolated from the corner to the center of the Game Object.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Alpha.js (Line 167)
-
alphaTopRight :number
-
The alpha value starting from the top-right of the Game Object. This value is interpolated from the corner to the center of the Game Object.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Alpha.js (Line 197)
-
angle :number
-
The angle of this Game Object as expressed in degrees.
Phaser uses a right-hand clockwise rotation system, where 0 is right, 90 is down, 180/-180 is left and -90 is up.
If you prefer to work in radians, see the
rotationproperty instead.Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 0
- Source: src/gameobjects/components/Transform.js (Line 200)
-
blendMode :Phaser.BlendModes|string
-
Sets the Blend Mode being used by this Game Object.
This can be a const, such as
Phaser.BlendModes.SCREEN, or an integer, such as 4 (for Overlay)Under WebGL only the following Blend Modes are available:
- ADD
- MULTIPLY
- SCREEN
- ERASE
Canvas has more available depending on browser support.
You can also create your own custom Blend Modes in WebGL.
Blend modes have different effects under Canvas and WebGL, and from browser to browser, depending on support. Blend Modes also cause a WebGL batch flush should it encounter a new blend mode. For these reasons try to be careful about the construction of your Scene and the frequency of which blend modes are used.
Type:
- Phaser.BlendModes | string
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/BlendMode.js (Line 30)
-
<nullable> body :Phaser.Physics.Arcade.Body|Phaser.Physics.Arcade.StaticBody|MatterJS.BodyType
-
If this Game Object is enabled for Arcade or Matter Physics then this property will contain a reference to a Physics Body.
Type:
- Phaser.Physics.Arcade.Body | Phaser.Physics.Arcade.StaticBody | MatterJS.BodyType
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- null
- Source: src/gameobjects/GameObject.js (Line 185)
-
cameraFilter :number
-
A bitmask that controls if this Game Object is drawn by a Camera or not. Not usually set directly, instead call
Camera.ignore, however you can set this property directly using the Camera.id property:Type:
- number
- Since: 3.0.0
- Inherited From:
- Overrides:
- Default Value:
-
- 0
- Source: src/gameobjects/GameObject.js (Line 159)
Example
this.cameraFilter |= camera.id
-
data :Phaser.Data.DataManager
-
A Data Manager. It allows you to store, query and get key/value paired information specific to this Game Object.
nullby default. Automatically created if you usegetDataorsetDataorsetDataEnabled.Type:
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- null
- Source: src/gameobjects/GameObject.js (Line 135)
-
depth :number
-
The depth of this Game Object within the Scene.
The depth is also known as the 'z-index' in some environments, and allows you to change the rendering order of Game Objects, without actually moving their position in the display list.
The default depth is zero. A Game Object with a higher depth value will always render in front of one with a lower value.
Setting the depth will queue a depth sort event within the Scene.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Depth.js (Line 28)
-
displayHeight :number
-
The displayed height of this Game Object.
This value takes into account the scale factor.
Setting this value will adjust the Game Object's scale property.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Size.js (Line 78)
-
displayList :Phaser.GameObjects.DisplayList|Phaser.GameObjects.Layer
-
Holds a reference to the Display List that contains this Game Object.
This is set automatically when this Game Object is added to a Scene or Layer.
You should treat this property as being read-only.
Type:
- Since: 3.50.0
- Inherited From:
- Default Value:
-
- null
- Source: src/gameobjects/GameObject.js (Line 52)
-
displayOriginX :number
-
The horizontal display origin of this Game Object. The origin is a normalized value between 0 and 1. The displayOrigin is a pixel value, based on the size of the Game Object combined with the origin.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Origin.js (Line 60)
-
displayOriginY :number
-
The vertical display origin of this Game Object. The origin is a normalized value between 0 and 1. The displayOrigin is a pixel value, based on the size of the Game Object combined with the origin.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Origin.js (Line 84)
-
displayWidth :number
-
The displayed width of this Game Object.
This value takes into account the scale factor.
Setting this value will adjust the Game Object's scale property.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Size.js (Line 53)
-
flipX :boolean
-
The horizontally flipped state of the Game Object.
A Game Object that is flipped horizontally will render inversed on the horizontal axis. Flipping always takes place from the middle of the texture and does not impact the scale value. If this Game Object has a physics body, it will not change the body. This is a rendering toggle only.
Type:
- boolean
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- false
- Source: src/gameobjects/components/Flip.js (Line 17)
-
flipY :boolean
-
The vertically flipped state of the Game Object.
A Game Object that is flipped vertically will render inversed on the vertical axis (i.e. upside down) Flipping always takes place from the middle of the texture and does not impact the scale value. If this Game Object has a physics body, it will not change the body. This is a rendering toggle only.
Type:
- boolean
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- false
- Source: src/gameobjects/components/Flip.js (Line 31)
-
frame :Phaser.Textures.Frame
-
The Texture Frame this Game Object is using to render with.
Type:
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Texture.js (Line 28)
-
height :number
-
The native (un-scaled) height of this Game Object.
Changing this value will not change the size that the Game Object is rendered in-game. For that you need to either set the scale of the Game Object (
setScale) or use thedisplayHeightproperty.Type:
- number
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Size.js (Line 40)
-
ignoreDestroy :boolean
-
This Game Object will ignore all calls made to its destroy method if this flag is set to
true. This includes calls that may come from a Group, Container or the Scene itself. While it allows you to persist a Game Object across Scenes, please understand you are entirely responsible for managing references to and from this Game Object.Type:
- boolean
- Since: 3.5.0
- Inherited From:
- Default Value:
-
- false
- Source: src/gameobjects/GameObject.js (Line 195)
-
<nullable> input :Phaser.Types.Input.InteractiveObject
-
If this Game Object is enabled for input then this property will contain an InteractiveObject instance. Not usually set directly. Instead call
GameObject.setInteractive().Type:
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- null
- Source: src/gameobjects/GameObject.js (Line 174)
-
<readonly> isTinted :boolean
-
Does this Game Object have a tint applied?
It checks to see if the 4 tint properties are set to the value 0xffffff and that the
tintFillproperty isfalse. This indicates that a Game Object isn't tinted.Type:
- boolean
- Since: 3.11.0
- Inherited From:
- Source: src/gameobjects/components/Tint.js (Line 200)
-
name :string
-
The name of this Game Object. Empty by default and never populated by Phaser, this is left for developers to use.
Type:
- string
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- ''
- Source: src/gameobjects/GameObject.js (Line 101)
-
originX :number
-
The horizontal origin of this Game Object. The origin maps the relationship between the size and position of the Game Object. The default value is 0.5, meaning all Game Objects are positioned based on their center. Setting the value to 0 means the position now relates to the left of the Game Object.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 0.5
- Source: src/gameobjects/components/Origin.js (Line 30)
-
originY :number
-
The vertical origin of this Game Object. The origin maps the relationship between the size and position of the Game Object. The default value is 0.5, meaning all Game Objects are positioned based on their center. Setting the value to 0 means the position now relates to the top of the Game Object.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 0.5
- Source: src/gameobjects/components/Origin.js (Line 43)
-
parentContainer :Phaser.GameObjects.Container
-
The parent Container of this Game Object, if it has one.
Type:
- Since: 3.4.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 92)
-
renderFlags :number
-
The flags that are compared against
RENDER_MASKto determine if this Game Object will render or not. The bits are 0001 | 0010 | 0100 | 1000 set by the components Visible, Alpha, Transform and Texture respectively. If those components are not used by your custom class then you can use this bitmask as you wish.Type:
- number
- Since: 3.0.0
- Inherited From:
- Overrides:
- Default Value:
-
- 15
- Source: src/gameobjects/GameObject.js (Line 147)
-
rotation :number
-
The angle of this Game Object in radians.
Phaser uses a right-hand clockwise rotation system, where 0 is right, PI/2 is down, +-PI is left and -PI/2 is up.
If you prefer to work in degrees, see the
angleproperty instead.Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 1
- Source: src/gameobjects/components/Transform.js (Line 227)
-
scale :number
-
This is a special setter that allows you to set both the horizontal and vertical scale of this Game Object to the same value, at the same time. When reading this value the result returned is
(scaleX + scaleY) / 2.Use of this property implies you wish the horizontal and vertical scales to be equal to each other. If this isn't the case, use the
scaleXorscaleYproperties instead.Type:
- number
- Since: 3.18.0
- Inherited From:
- Default Value:
-
- 1
- Source: src/gameobjects/components/Transform.js (Line 102)
-
scaleX :number
-
The horizontal scale of this Game Object.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 1
- Source: src/gameobjects/components/Transform.js (Line 138)
-
scaleY :number
-
The vertical scale of this Game Object.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 1
- Source: src/gameobjects/components/Transform.js (Line 169)
-
scene :Phaser.Scene
-
A reference to the Scene to which this Game Object belongs.
Game Objects can only belong to one Scene.
You should consider this property as being read-only. You cannot move a Game Object to another Scene by simply changing it.
Type:
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 38)
-
scrollFactorX :number
-
The horizontal scroll factor of this Game Object.
The scroll factor controls the influence of the movement of a Camera upon this Game Object.
When a camera scrolls it will change the location at which this Game Object is rendered on-screen. It does not change the Game Objects actual position values.
A value of 1 means it will move exactly in sync with a camera. A value of 0 means it will not move at all, even if the camera moves. Other values control the degree to which the camera movement is mapped to this Game Object.
Please be aware that scroll factor values other than 1 are not taken in to consideration when calculating physics collisions. Bodies always collide based on their world position, but changing the scroll factor is a visual adjustment to where the textures are rendered, which can offset them from physics bodies if not accounted for in your code.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 1
- Source: src/gameobjects/components/ScrollFactor.js (Line 16)
-
scrollFactorY :number
-
The vertical scroll factor of this Game Object.
The scroll factor controls the influence of the movement of a Camera upon this Game Object.
When a camera scrolls it will change the location at which this Game Object is rendered on-screen. It does not change the Game Objects actual position values.
A value of 1 means it will move exactly in sync with a camera. A value of 0 means it will not move at all, even if the camera moves. Other values control the degree to which the camera movement is mapped to this Game Object.
Please be aware that scroll factor values other than 1 are not taken in to consideration when calculating physics collisions. Bodies always collide based on their world position, but changing the scroll factor is a visual adjustment to where the textures are rendered, which can offset them from physics bodies if not accounted for in your code.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 1
- Source: src/gameobjects/components/ScrollFactor.js (Line 40)
-
state :number|string
-
The current state of this Game Object.
Phaser itself will never modify this value, although plugins may do so.
Use this property to track the state of a Game Object during its lifetime. For example, it could change from a state of 'moving', to 'attacking', to 'dead'. The state value should be an integer (ideally mapped to a constant in your game code), or a string. These are recommended to keep it light and simple, with fast comparisons. If you need to store complex data about your Game Object, look at using the Data Component instead.
Type:
- number | string
- Since: 3.16.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 76)
-
tabIndex :number
-
The Tab Index of the Game Object. Reserved for future use by plugins and the Input Manager.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- -1
- Source: src/gameobjects/GameObject.js (Line 124)
-
texture :Phaser.Textures.Texture|Phaser.Textures.CanvasTexture
-
The Texture this Game Object is using to render with.
Type:
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Texture.js (Line 19)
-
tint :number
-
The tint value being applied to the whole of the Game Object. This property is a setter-only. Use the properties
tintTopLeftetc to read the current tint value.Type:
- number
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Tint.js (Line 183)
-
tintBottomLeft :number
-
The tint value being applied to the bottom-left vertice of the Game Object. This value is interpolated from the corner to the center of the Game Object. The value should be set as a hex number, i.e. 0xff0000 for red, or 0xff00ff for purple.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 0xffffff
- Source: src/gameobjects/components/Tint.js (Line 42)
-
tintBottomRight :number
-
The tint value being applied to the bottom-right vertice of the Game Object. This value is interpolated from the corner to the center of the Game Object. The value should be set as a hex number, i.e. 0xff0000 for red, or 0xff00ff for purple.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 0xffffff
- Source: src/gameobjects/components/Tint.js (Line 54)
-
tintFill :boolean
-
The tint fill mode.
false= An additive tint (the default), where vertices colors are blended with the texture.true= A fill tint, where the vertices colors replace the texture, but respects texture alpha.Type:
- boolean
- Since: 3.11.0
- Inherited From:
- Default Value:
-
- false
- Source: src/gameobjects/components/Tint.js (Line 66)
-
tintTopLeft :number
-
The tint value being applied to the top-left vertice of the Game Object. This value is interpolated from the corner to the center of the Game Object. The value should be set as a hex number, i.e. 0xff0000 for red, or 0xff00ff for purple.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 0xffffff
- Source: src/gameobjects/components/Tint.js (Line 18)
-
tintTopRight :number
-
The tint value being applied to the top-right vertice of the Game Object. This value is interpolated from the corner to the center of the Game Object. The value should be set as a hex number, i.e. 0xff0000 for red, or 0xff00ff for purple.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 0xffffff
- Source: src/gameobjects/components/Tint.js (Line 30)
-
type :string
-
A textual representation of this Game Object, i.e.
sprite. Used internally by Phaser but is available for your own custom classes to populate.Type:
- string
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 66)
-
visible :boolean
-
The visible state of the Game Object.
An invisible Game Object will skip rendering, but will still process update logic.
Type:
- boolean
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Visible.js (Line 31)
-
w :number
-
The w position of this Game Object.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 0
- Source: src/gameobjects/components/Transform.js (Line 92)
-
width :number
-
The native (un-scaled) width of this Game Object.
Changing this value will not change the size that the Game Object is rendered in-game. For that you need to either set the scale of the Game Object (
setScale) or use thedisplayWidthproperty.Type:
- number
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Size.js (Line 27)
-
x :number
-
The x position of this Game Object.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 0
- Source: src/gameobjects/components/Transform.js (Line 59)
-
y :number
-
The y position of this Game Object.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 0
- Source: src/gameobjects/components/Transform.js (Line 69)
-
z :number
-
The z position of this Game Object.
Note: The z position does not control the rendering order of 2D Game Objects. Use Phaser.GameObjects.Components.Depth#depth instead.
Type:
- number
- Since: 3.0.0
- Inherited From:
- Default Value:
-
- 0
- Source: src/gameobjects/components/Transform.js (Line 79)
Methods
-
addedToScene()
-
This callback is invoked when this Game Object is added to a Scene.
Can be overriden by custom Game Objects, but be aware of some Game Objects that will use this, such as Sprites, to add themselves into the Update List.
You can also listen for the
ADDED_TO_SCENEevent from this Game Object.- Since: 3.50.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 548)
-
addListener(event, fn [, context])
-
Add a listener for a given event.
Parameters:
Name Type Argument Default Description eventstring | symbol The event name.
fnfunction The listener function.
context* <optional>
this The context to invoke the listener with.
- Since: 3.0.0
- Inherited From:
- Source: src/events/EventEmitter.js (Line 111)
Returns:
this. -
clearAlpha()
-
Clears all alpha values associated with this Game Object.
Immediately sets the alpha levels back to 1 (fully opaque).
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Alpha.js (Line 77)
Returns:
This Game Object instance.
-
clearTint()
-
Clears all tint values associated with this Game Object.
Immediately sets the color values back to 0xffffff and the tint type to 'additive', which results in no visible change to the texture.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Tint.js (Line 79)
Returns:
This Game Object instance.
-
copyPosition(source)
-
Copies an object's coordinates to this Game Object's position.
Parameters:
Name Type Description sourcePhaser.Types.Math.Vector2Like | Phaser.Types.Math.Vector3Like | Phaser.Types.Math.Vector4Like An object with numeric 'x', 'y', 'z', or 'w' properties. Undefined values are not copied.
- Since: 3.50.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 282)
Returns:
This Game Object instance.
-
destroy()
-
Destroys this Game Object removing it from the Display List and Update List and severing all ties to parent resources.
Also removes itself from the Input Manager and Physics Manager if previously enabled.
Use this to remove a Game Object from your game if you don't ever plan to use it again. As long as no reference to it exists within your own code it should become free for garbage collection by the browser.
If you just want to temporarily disable an object then look at using the Game Object Pool instead of destroying it, as destroyed objects cannot be resurrected.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 661)
Fires:
-
disableInteractive()
-
If this Game Object has previously been enabled for input, this will disable it.
An object that is disabled for input stops processing or being considered for input events, but can be turned back on again at any time by simply calling
setInteractive()with no arguments provided.If want to completely remove interaction from this Game Object then use
removeInteractiveinstead.- Since: 3.7.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 490)
Returns:
This GameObject.
-
emit(event [, args])
-
Calls each of the listeners registered for a given event.
Parameters:
Name Type Argument Description eventstring | symbol The event name.
args* <optional>
<repeatable>
Additional arguments that will be passed to the event handler.
- Since: 3.0.0
- Inherited From:
- Source: src/events/EventEmitter.js (Line 86)
Returns:
trueif the event had listeners, elsefalse.- Type
- boolean
-
eventNames()
-
Return an array listing the events for which the emitter has registered listeners.
- Since: 3.0.0
- Inherited From:
- Source: src/events/EventEmitter.js (Line 55)
Returns:
- Type
- Array.<(string|symbol)>
-
getData(key)
-
Retrieves the value for the given key in this Game Objects Data Manager, or undefined if it doesn't exist.
You can also access values via the
valuesobject. For example, if you had a key calledgoldyou can do either:sprite.getData('gold');Or access the value directly:
sprite.data.values.gold;You can also pass in an array of keys, in which case an array of values will be returned:
sprite.getData([ 'gold', 'armor', 'health' ]);This approach is useful for destructuring arrays in ES6.
Parameters:
Name Type Description keystring | Array.<string> The key of the value to retrieve, or an array of keys.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 412)
Returns:
The value belonging to the given key, or an array of values, the order of which will match the input array.
- Type
- *
-
getIndexList()
-
Returns an array containing the display list index of either this Game Object, or if it has one, its parent Container. It then iterates up through all of the parent containers until it hits the root of the display list (which is index 0 in the returned array).
Used internally by the InputPlugin but also useful if you wish to find out the display depth of this Game Object and all of its ancestors.
- Since: 3.4.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 619)
Returns:
An array of display list position indexes.
- Type
- Array.<number>
-
getLocalPoint(x, y [, point] [, camera])
-
Takes the given
xandycoordinates and converts them into local space for this Game Object, taking into account parent and local transforms, and the Display Origin.The returned Vector2 contains the translated point in its properties.
A Camera needs to be provided in order to handle modified scroll factors. If no camera is specified, it will use the
maincamera from the Scene to which this Game Object belongs.Parameters:
Name Type Argument Description xnumber The x position to translate.
ynumber The y position to translate.
pointPhaser.Math.Vector2 <optional>
A Vector2, or point-like object, to store the results in.
cameraPhaser.Cameras.Scene2D.Camera <optional>
The Camera which is being tested against. If not given will use the Scene default camera.
- Since: 3.50.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 527)
Returns:
The translated point.
- Type
- Phaser.Math.Vector2
-
getLocalTransformMatrix( [tempMatrix])
-
Gets the local transform matrix for this Game Object.
Parameters:
Name Type Argument Description tempMatrixPhaser.GameObjects.Components.TransformMatrix <optional>
The matrix to populate with the values from this Game Object.
- Since: 3.4.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 473)
Returns:
The populated Transform Matrix.
-
getParentRotation()
-
Gets the sum total rotation of all of this Game Objects parent Containers.
The returned value is in radians and will be zero if this Game Object has no parent container.
- Since: 3.18.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 577)
Returns:
The sum total rotation, in radians, of all parent containers of this Game Object.
- Type
- number
-
getWorldTransformMatrix( [tempMatrix] [, parentMatrix])
-
Gets the world transform matrix for this Game Object, factoring in any parent Containers.
Parameters:
Name Type Argument Description tempMatrixPhaser.GameObjects.Components.TransformMatrix <optional>
The matrix to populate with the values from this Game Object.
parentMatrixPhaser.GameObjects.Components.TransformMatrix <optional>
A temporary matrix to hold parent values during the calculations.
- Since: 3.4.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 490)
Returns:
The populated Transform Matrix.
-
incData(key [, data])
-
Increase a value for the given key within this Game Objects Data Manager. If the key doesn't already exist in the Data Manager then it is increased from 0.
If the Game Object has not been enabled for data (via
setDataEnabled) then it will be enabled before setting the value.If the key doesn't already exist in the Data Manager then it is created.
When the value is first set, a
setdataevent is emitted from this Game Object.Parameters:
Name Type Argument Description keystring | object The key to increase the value for.
data* <optional>
The value to increase for the given key.
- Since: 3.23.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 353)
Returns:
This GameObject.
-
listenerCount(event)
-
Return the number of listeners listening to a given event.
Parameters:
Name Type Description eventstring | symbol The event name.
- Since: 3.0.0
- Inherited From:
- Source: src/events/EventEmitter.js (Line 75)
Returns:
The number of listeners.
- Type
- number
-
listeners(event)
-
Return the listeners registered for a given event.
Parameters:
Name Type Description eventstring | symbol The event name.
- Since: 3.0.0
- Inherited From:
- Source: src/events/EventEmitter.js (Line 64)
Returns:
The registered listeners.
- Type
- Array.<function()>
-
off(event [, fn] [, context] [, once])
-
Remove the listeners of a given event.
Parameters:
Name Type Argument Description eventstring | symbol The event name.
fnfunction <optional>
Only remove the listeners that match this function.
context* <optional>
Only remove the listeners that have this context.
onceboolean <optional>
Only remove one-time listeners.
- Since: 3.0.0
- Inherited From:
- Source: src/events/EventEmitter.js (Line 151)
Returns:
this. -
on(event, fn [, context])
-
Add a listener for a given event.
Parameters:
Name Type Argument Default Description eventstring | symbol The event name.
fnfunction The listener function.
context* <optional>
this The context to invoke the listener with.
- Since: 3.0.0
- Inherited From:
- Source: src/events/EventEmitter.js (Line 98)
Returns:
this. -
once(event, fn [, context])
-
Add a one-time listener for a given event.
Parameters:
Name Type Argument Default Description eventstring | symbol The event name.
fnfunction The listener function.
context* <optional>
this The context to invoke the listener with.
- Since: 3.0.0
- Inherited From:
- Source: src/events/EventEmitter.js (Line 124)
Returns:
this. -
removeAllListeners( [event])
-
Remove all listeners, or those of the specified event.
Parameters:
Name Type Argument Description eventstring | symbol <optional>
The event name.
- Since: 3.0.0
- Inherited From:
- Source: src/events/EventEmitter.js (Line 165)
Returns:
this. -
removedFromScene()
-
This callback is invoked when this Game Object is removed from a Scene.
Can be overriden by custom Game Objects, but be aware of some Game Objects that will use this, such as Sprites, to removed themselves from the Update List.
You can also listen for the
REMOVED_FROM_SCENEevent from this Game Object.- Since: 3.50.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 563)
-
removeInteractive()
-
If this Game Object has previously been enabled for input, this will queue it for removal, causing it to no longer be interactive. The removal happens on the next game step, it is not immediate.
The Interactive Object that was assigned to this Game Object will be destroyed, removed from the Input Manager and cleared from this Game Object.
If you wish to re-enable this Game Object at a later date you will need to re-create its InteractiveObject by calling
setInteractiveagain.If you wish to only temporarily stop an object from receiving input then use
disableInteractiveinstead, as that toggles the interactive state, where-as this erases it completely.If you wish to resize a hit area, don't remove and then set it as being interactive. Instead, access the hitarea object directly and resize the shape being used. I.e.:
sprite.input.hitArea.setSize(width, height)(assuming the shape is a Rectangle, which it is by default.)- Since: 3.7.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 514)
Returns:
This GameObject.
-
removeListener(event [, fn] [, context] [, once])
-
Remove the listeners of a given event.
Parameters:
Name Type Argument Description eventstring | symbol The event name.
fnfunction <optional>
Only remove the listeners that match this function.
context* <optional>
Only remove the listeners that have this context.
onceboolean <optional>
Only remove one-time listeners.
- Since: 3.0.0
- Inherited From:
- Source: src/events/EventEmitter.js (Line 137)
Returns:
this. -
resetFlip()
-
Resets the horizontal and vertical flipped state of this Game Object back to their default un-flipped state.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Flip.js (Line 140)
Returns:
This Game Object instance.
-
setActive(value)
-
Sets the
activeproperty of this Game Object and returns this Game Object for further chaining. A Game Object with itsactiveproperty set totruewill be updated by the Scenes UpdateList.Parameters:
Name Type Description valueboolean True if this Game Object should be set as active, false if not.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 215)
Returns:
This GameObject.
-
setAlpha( [topLeft] [, topRight] [, bottomLeft] [, bottomRight])
-
Set the Alpha level of this Game Object. The alpha controls the opacity of the Game Object as it renders. Alpha values are provided as a float between 0, fully transparent, and 1, fully opaque.
If your game is running under WebGL you can optionally specify four different alpha values, each of which correspond to the four corners of the Game Object. Under Canvas only the
topLeftvalue given is used.Parameters:
Name Type Argument Default Description topLeftnumber <optional>
1 The alpha value used for the top-left of the Game Object. If this is the only value given it's applied across the whole Game Object.
topRightnumber <optional>
The alpha value used for the top-right of the Game Object. WebGL only.
bottomLeftnumber <optional>
The alpha value used for the bottom-left of the Game Object. WebGL only.
bottomRightnumber <optional>
The alpha value used for the bottom-right of the Game Object. WebGL only.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Alpha.js (Line 92)
Returns:
This Game Object instance.
-
setAngle( [degrees])
-
Sets the angle of this Game Object.
Parameters:
Name Type Argument Default Description degreesnumber <optional>
0 The rotation of this Game Object, in degrees.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 353)
Returns:
This Game Object instance.
-
setBlendMode(value)
-
Sets the Blend Mode being used by this Game Object.
This can be a const, such as
Phaser.BlendModes.SCREEN, or an integer, such as 4 (for Overlay)Under WebGL only the following Blend Modes are available:
- ADD
- MULTIPLY
- SCREEN
- ERASE (only works when rendering to a framebuffer, like a Render Texture)
Canvas has more available depending on browser support.
You can also create your own custom Blend Modes in WebGL.
Blend modes have different effects under Canvas and WebGL, and from browser to browser, depending on support. Blend Modes also cause a WebGL batch flush should it encounter a new blend mode. For these reasons try to be careful about the construction of your Scene and the frequency in which blend modes are used.
Parameters:
Name Type Description valuestring | Phaser.BlendModes The BlendMode value. Either a string or a CONST.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/BlendMode.js (Line 79)
Returns:
This Game Object instance.
-
setData(key [, data])
-
Allows you to store a key value pair within this Game Objects Data Manager.
If the Game Object has not been enabled for data (via
setDataEnabled) then it will be enabled before setting the value.If the key doesn't already exist in the Data Manager then it is created.
sprite.setData('name', 'Red Gem Stone');You can also pass in an object of key value pairs as the first argument:
sprite.setData({ name: 'Red Gem Stone', level: 2, owner: 'Link', gold: 50 });To get a value back again you can call
getData:sprite.getData('gold');Or you can access the value directly via the
valuesproperty, where it works like any other variable:sprite.data.values.gold += 50;When the value is first set, a
setdataevent is emitted from this Game Object.If the key already exists, a
changedataevent is emitted instead, along an event named after the key. For example, if you updated an existing key calledPlayerLivesthen it would emit the eventchangedata-PlayerLives. These events will be emitted regardless if you use this method to set the value, or the directvaluessetter.Please note that the data keys are case-sensitive and must be valid JavaScript Object property strings. This means the keys
goldandGoldare treated as two unique values within the Data Manager.Parameters:
Name Type Argument Description keystring | object The key to set the value for. Or an object of key value pairs. If an object the
dataargument is ignored.data* <optional>
The value to set for the given key. If an object is provided as the key this argument is ignored.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 294)
Returns:
This GameObject.
-
setDataEnabled()
-
Adds a Data Manager component to this Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 275)
- See:
Returns:
This GameObject.
-
setDepth(value)
-
The depth of this Game Object within the Scene.
The depth is also known as the 'z-index' in some environments, and allows you to change the rendering order of Game Objects, without actually moving their position in the display list.
The default depth is zero. A Game Object with a higher depth value will always render in front of one with a lower value.
Setting the depth will queue a depth sort event within the Scene.
Parameters:
Name Type Description valuenumber The depth of this Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Depth.js (Line 62)
Returns:
This Game Object instance.
-
setDisplayOrigin( [x] [, y])
-
Sets the display origin of this Game Object. The difference between this and setting the origin is that you can use pixel values for setting the display origin.
Parameters:
Name Type Argument Default Description xnumber <optional>
0 The horizontal display origin value.
ynumber <optional>
x The vertical display origin value. If not defined it will be set to the value of
x.- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Origin.js (Line 155)
Returns:
This Game Object instance.
-
setDisplaySize(width, height)
-
Sets the display size of this Game Object.
Calling this will adjust the scale.
Parameters:
Name Type Description widthnumber The width of this Game Object.
heightnumber The height of this Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Size.js (Line 158)
Returns:
This Game Object instance.
-
setFlip(x, y)
-
Sets the horizontal and vertical flipped state of this Game Object.
A Game Object that is flipped will render inversed on the flipped axis. Flipping always takes place from the middle of the texture and does not impact the scale value. If this Game Object has a physics body, it will not change the body. This is a rendering toggle only.
Parameters:
Name Type Description xboolean The horizontal flipped state.
falsefor no flip, ortrueto be flipped.yboolean The horizontal flipped state.
falsefor no flip, ortrueto be flipped.- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Flip.js (Line 117)
Returns:
This Game Object instance.
-
setFlipX(value)
-
Sets the horizontal flipped state of this Game Object.
A Game Object that is flipped horizontally will render inversed on the horizontal axis. Flipping always takes place from the middle of the texture and does not impact the scale value. If this Game Object has a physics body, it will not change the body. This is a rendering toggle only.
Parameters:
Name Type Description valueboolean The flipped state.
falsefor no flip, ortrueto be flipped.- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Flip.js (Line 79)
Returns:
This Game Object instance.
-
setFlipY(value)
-
Sets the vertical flipped state of this Game Object.
Parameters:
Name Type Description valueboolean The flipped state.
falsefor no flip, ortrueto be flipped.- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Flip.js (Line 100)
Returns:
This Game Object instance.
-
setFrame(frame [, updateSize] [, updateOrigin])
-
Sets the frame this Game Object will use to render with.
The Frame has to belong to the current Texture being used.
It can be either a string or an index.
Calling
setFramewill modify thewidthandheightproperties of your Game Object. It will also change theoriginif the Frame has a custom pivot point, as exported from packages like Texture Packer.Parameters:
Name Type Argument Default Description framestring | number The name or index of the frame within the Texture.
updateSizeboolean <optional>
true Should this call adjust the size of the Game Object?
updateOriginboolean <optional>
true Should this call adjust the origin of the Game Object?
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Texture.js (Line 67)
Returns:
This Game Object instance.
-
setInteractive( [hitArea] [, callback] [, dropZone])
-
Pass this Game Object to the Input Manager to enable it for Input.
Input works by using hit areas, these are nearly always geometric shapes, such as rectangles or circles, that act as the hit area for the Game Object. However, you can provide your own hit area shape and callback, should you wish to handle some more advanced input detection.
If no arguments are provided it will try and create a rectangle hit area based on the texture frame the Game Object is using. If this isn't a texture-bound object, such as a Graphics or BitmapText object, this will fail, and you'll need to provide a specific shape for it to use.
You can also provide an Input Configuration Object as the only argument to this method.
Parameters:
Name Type Argument Default Description hitAreaPhaser.Types.Input.InputConfiguration | any <optional>
Either an input configuration object, or a geometric shape that defines the hit area for the Game Object. If not given it will try to create a Rectangle based on the texture frame.
callbackPhaser.Types.Input.HitAreaCallback <optional>
The callback that determines if the pointer is within the Hit Area shape or not. If you provide a shape you must also provide a callback.
dropZoneboolean <optional>
false Should this Game Object be treated as a drop zone target?
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 452)
Returns:
This GameObject.
Examples
sprite.setInteractive();
sprite.setInteractive(new Phaser.Geom.Circle(45, 46, 45), Phaser.Geom.Circle.Contains);
graphics.setInteractive(new Phaser.Geom.Rectangle(0, 0, 128, 128), Phaser.Geom.Rectangle.Contains);
-
setName(value)
-
Sets the
nameproperty of this Game Object and returns this Game Object for further chaining. Thenameproperty is not populated by Phaser and is presented for your own use.Parameters:
Name Type Description valuestring The name to be given to this Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 233)
Returns:
This GameObject.
-
setOrigin( [x] [, y])
-
Sets the origin of this Game Object.
The values are given in the range 0 to 1.
Parameters:
Name Type Argument Default Description xnumber <optional>
0.5 The horizontal origin value.
ynumber <optional>
x The vertical origin value. If not defined it will be set to the value of
x.- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Origin.js (Line 108)
Returns:
This Game Object instance.
-
setOriginFromFrame()
-
Sets the origin of this Game Object based on the Pivot values in its Frame.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Origin.js (Line 132)
Returns:
This Game Object instance.
-
setPosition( [x] [, y] [, z] [, w])
-
Sets the position of this Game Object.
Parameters:
Name Type Argument Default Description xnumber <optional>
0 The x position of this Game Object.
ynumber <optional>
x The y position of this Game Object. If not set it will use the
xvalue.znumber <optional>
0 The z position of this Game Object.
wnumber <optional>
0 The w position of this Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 254)
Returns:
This Game Object instance.
-
setRandomPosition( [x] [, y] [, width] [, height])
-
Sets the position of this Game Object to be a random position within the confines of the given area.
If no area is specified a random position between 0 x 0 and the game width x height is used instead.
The position does not factor in the size of this Game Object, meaning that only the origin is guaranteed to be within the area.
Parameters:
Name Type Argument Default Description xnumber <optional>
0 The x position of the top-left of the random area.
ynumber <optional>
0 The y position of the top-left of the random area.
widthnumber <optional>
The width of the random area.
heightnumber <optional>
The height of the random area.
- Since: 3.8.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 302)
Returns:
This Game Object instance.
-
setRotation( [radians])
-
Sets the rotation of this Game Object.
Parameters:
Name Type Argument Default Description radiansnumber <optional>
0 The rotation of this Game Object, in radians.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 334)
Returns:
This Game Object instance.
-
setScale(x [, y])
-
Sets the scale of this Game Object.
Parameters:
Name Type Argument Default Description xnumber The horizontal scale of this Game Object.
ynumber <optional>
x The vertical scale of this Game Object. If not set it will use the
xvalue.- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 372)
Returns:
This Game Object instance.
-
setScrollFactor(x [, y])
-
Sets the scroll factor of this Game Object.
The scroll factor controls the influence of the movement of a Camera upon this Game Object.
When a camera scrolls it will change the location at which this Game Object is rendered on-screen. It does not change the Game Objects actual position values.
A value of 1 means it will move exactly in sync with a camera. A value of 0 means it will not move at all, even if the camera moves. Other values control the degree to which the camera movement is mapped to this Game Object.
Please be aware that scroll factor values other than 1 are not taken in to consideration when calculating physics collisions. Bodies always collide based on their world position, but changing the scroll factor is a visual adjustment to where the textures are rendered, which can offset them from physics bodies if not accounted for in your code.
Parameters:
Name Type Argument Default Description xnumber The horizontal scroll factor of this Game Object.
ynumber <optional>
x The vertical scroll factor of this Game Object. If not set it will use the
xvalue.- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/ScrollFactor.js (Line 64)
Returns:
This Game Object instance.
-
setSize(width, height)
-
Sets the internal size of this Game Object, as used for frame or physics body creation.
This will not change the size that the Game Object is rendered in-game. For that you need to either set the scale of the Game Object (
setScale) or call thesetDisplaySizemethod, which is the same thing as changing the scale but allows you to do so by giving pixel values.If you have enabled this Game Object for input, changing the size will not change the size of the hit area. To do this you should adjust the
input.hitAreaobject directly.Parameters:
Name Type Description widthnumber The width of this Game Object.
heightnumber The height of this Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Size.js (Line 131)
Returns:
This Game Object instance.
-
setSizeToFrame(frame)
-
Sets the size of this Game Object to be that of the given Frame.
This will not change the size that the Game Object is rendered in-game. For that you need to either set the scale of the Game Object (
setScale) or call thesetDisplaySizemethod, which is the same thing as changing the scale but allows you to do so by giving pixel values.If you have enabled this Game Object for input, changing the size will not change the size of the hit area. To do this you should adjust the
input.hitAreaobject directly.Parameters:
Name Type Description framePhaser.Textures.Frame The frame to base the size of this Game Object on.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Size.js (Line 103)
Returns:
This Game Object instance.
-
setState(value)
-
Sets the current state of this Game Object.
Phaser itself will never modify the State of a Game Object, although plugins may do so.
For example, a Game Object could change from a state of 'moving', to 'attacking', to 'dead'. The state value should typically be an integer (ideally mapped to a constant in your game code), but could also be a string. It is recommended to keep it light and simple. If you need to store complex data about your Game Object, look at using the Data Component instead.
Parameters:
Name Type Description valuenumber | string The state of the Game Object.
- Since: 3.16.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 251)
Returns:
This GameObject.
-
setTexture(key [, frame])
-
Sets the texture and frame this Game Object will use to render with.
Textures are referenced by their string-based keys, as stored in the Texture Manager.
Parameters:
Name Type Argument Description keystring | Phaser.Textures.Texture The key of the texture to be used, as stored in the Texture Manager, or a Texture instance.
framestring | number <optional>
The name or index of the frame within the Texture.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Texture.js (Line 47)
Returns:
This Game Object instance.
-
setTint( [topLeft] [, topRight] [, bottomLeft] [, bottomRight])
-
Sets an additive tint on this Game Object.
The tint works by taking the pixel color values from the Game Objects texture, and then multiplying it by the color value of the tint. You can provide either one color value, in which case the whole Game Object will be tinted in that color. Or you can provide a color per corner. The colors are blended together across the extent of the Game Object.
To modify the tint color once set, either call this method again with new values or use the
tintproperty to set all colors at once. Or, use the propertiestintTopLeft,tintTopRight,tintBottomLeftandtintBottomRight` to set the corner color values independently.To remove a tint call
clearTint.To swap this from being an additive tint to a fill based tint set the property
tintFilltotrue.Parameters:
Name Type Argument Default Description topLeftnumber <optional>
0xffffff The tint being applied to the top-left of the Game Object. If no other values are given this value is applied evenly, tinting the whole Game Object.
topRightnumber <optional>
The tint being applied to the top-right of the Game Object.
bottomLeftnumber <optional>
The tint being applied to the bottom-left of the Game Object.
bottomRightnumber <optional>
The tint being applied to the bottom-right of the Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Tint.js (Line 98)
Returns:
This Game Object instance.
-
setTintFill( [topLeft] [, topRight] [, bottomLeft] [, bottomRight])
-
Sets a fill-based tint on this Game Object.
Unlike an additive tint, a fill-tint literally replaces the pixel colors from the texture with those in the tint. You can use this for effects such as making a player flash 'white' if hit by something. You can provide either one color value, in which case the whole Game Object will be rendered in that color. Or you can provide a color per corner. The colors are blended together across the extent of the Game Object.
To modify the tint color once set, either call this method again with new values or use the
tintproperty to set all colors at once. Or, use the propertiestintTopLeft,tintTopRight,tintBottomLeftandtintBottomRight` to set the corner color values independently.To remove a tint call
clearTint.To swap this from being a fill-tint to an additive tint set the property
tintFilltofalse.Parameters:
Name Type Argument Default Description topLeftnumber <optional>
0xffffff The tint being applied to the top-left of the Game Object. If not other values are given this value is applied evenly, tinting the whole Game Object.
topRightnumber <optional>
The tint being applied to the top-right of the Game Object.
bottomLeftnumber <optional>
The tint being applied to the bottom-left of the Game Object.
bottomRightnumber <optional>
The tint being applied to the bottom-right of the Game Object.
- Since: 3.11.0
- Inherited From:
- Source: src/gameobjects/components/Tint.js (Line 146)
Returns:
This Game Object instance.
-
setVisible(value)
-
Sets the visibility of this Game Object.
An invisible Game Object will skip rendering, but will still process update logic.
Parameters:
Name Type Description valueboolean The visible state of the Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Visible.js (Line 63)
Returns:
This Game Object instance.
-
setW( [value])
-
Sets the w position of this Game Object.
Parameters:
Name Type Argument Default Description valuenumber <optional>
0 The w position of this Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 454)
Returns:
This Game Object instance.
-
setX( [value])
-
Sets the x position of this Game Object.
Parameters:
Name Type Argument Default Description valuenumber <optional>
0 The x position of this Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 394)
Returns:
This Game Object instance.
-
setY( [value])
-
Sets the y position of this Game Object.
Parameters:
Name Type Argument Default Description valuenumber <optional>
0 The y position of this Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 413)
Returns:
This Game Object instance.
-
setZ( [value])
-
Sets the z position of this Game Object.
Note: The z position does not control the rendering order of 2D Game Objects. Use Phaser.GameObjects.Components.Depth#setDepth instead.
Parameters:
Name Type Argument Default Description valuenumber <optional>
0 The z position of this Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Transform.js (Line 432)
Returns:
This Game Object instance.
-
shutdown()
-
Removes all listeners.
- Since: 3.0.0
- Inherited From:
- Source: src/events/EventEmitter.js (Line 31)
-
toggleData(key)
-
Toggle a boolean value for the given key within this Game Objects Data Manager. If the key doesn't already exist in the Data Manager then it is toggled from false.
If the Game Object has not been enabled for data (via
setDataEnabled) then it will be enabled before setting the value.If the key doesn't already exist in the Data Manager then it is created.
When the value is first set, a
setdataevent is emitted from this Game Object.Parameters:
Name Type Description keystring | object The key to toggle the value for.
- Since: 3.23.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 383)
Returns:
This GameObject.
-
toggleFlipX()
-
Toggles the horizontal flipped state of this Game Object.
A Game Object that is flipped horizontally will render inversed on the horizontal axis. Flipping always takes place from the middle of the texture and does not impact the scale value. If this Game Object has a physics body, it will not change the body. This is a rendering toggle only.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Flip.js (Line 45)
Returns:
This Game Object instance.
-
toggleFlipY()
-
Toggles the vertical flipped state of this Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Flip.js (Line 64)
Returns:
This Game Object instance.
-
toJSON()
-
Returns a JSON representation of the Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 590)
Returns:
A JSON representation of the Game Object.
-
update( [args])
-
To be overridden by custom GameObjects. Allows base objects to be used in a Pool.
Parameters:
Name Type Argument Description args* <optional>
<repeatable>
args
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 578)
-
updateDisplayOrigin()
-
Updates the Display Origin cached values internally stored on this Game Object. You don't usually call this directly, but it is exposed for edge-cases where you may.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/components/Origin.js (Line 178)
Returns:
This Game Object instance.
-
willRender(camera)
-
Compares the renderMask with the renderFlags to see if this Game Object will render or not. Also checks the Game Object against the given Cameras exclusion list.
Parameters:
Name Type Description cameraPhaser.Cameras.Scene2D.Camera The Camera to check against this Game Object.
- Since: 3.0.0
- Inherited From:
- Source: src/gameobjects/GameObject.js (Line 603)
Returns:
True if the Game Object should be rendered, otherwise false.
- Type
- boolean
