new Core()
Core Component Features.
- Source - gameobjects/components/Core.js, line 12
Members
-
animations :Phaser.AnimationManager
-
If the Game Object is enabled for animation (such as a Phaser.Sprite) this is a reference to its AnimationManager instance. Through it you can create, play, pause and stop animations.
- Source - gameobjects/components/Core.js, line 186
- See:
-
<internal> components :object
-
The components this Game Object has installed.
- Internal:
- This member is internal (protected) and may be modified or removed in the future.
- Source - gameobjects/components/Core.js, line 160
-
debug :boolean
-
A debug flag designed for use with
Game.enableStep
.- Source - gameobjects/components/Core.js, line 211
-
events :Phaser.Events
-
All Phaser Game Objects have an Events class which contains all of the events that are dispatched when certain things happen to this Game Object, or any of its components.
- Source - gameobjects/components/Core.js, line 178
- See:
-
exists :boolean
-
Controls if this Game Object is processed by the core game loop. If this Game Object has a physics body it also controls if its physics body is updated or not. When
exists
is set tofalse
it will remove its physics body from the physics world if it has one. It also toggles thevisible
property to false as well.Setting
exists
to true will add its physics body back in to the physics world, if it has one. It will also set thevisible
property totrue
.- Source - gameobjects/components/Core.js, line 277
-
<readonly> fresh :boolean
-
A Game Object is considered
fresh
if it has just been created or reset and is yet to receive a renderer transform update. This property is mostly used internally by the physics systems, but is exposed for the use of plugins.- Source - gameobjects/components/Core.js, line 241
-
game :Phaser.Game
-
A reference to the currently running Game.
- Source - gameobjects/components/Core.js, line 145
-
key :string|Phaser.RenderTexture|Phaser.BitmapData|Phaser.Video|PIXI.Texture
-
The key of the image or texture used by this Game Object during rendering. If it is a string it's the string used to retrieve the texture from the Phaser Image Cache. It can also be an instance of a RenderTexture, BitmapData, Video or PIXI.Texture. If a Game Object is created without a key it is automatically assigned the key
__default
which is a 32x32 transparent PNG stored within the Cache. If a Game Object is given a key which doesn't exist in the Image Cache it is re-assigned the key__missing
which is a 32x32 PNG of a green box with a line through it.Type:
- string | Phaser.RenderTexture | Phaser.BitmapData | Phaser.Video | PIXI.Texture
- Source - gameobjects/components/Core.js, line 196
-
name :string
-
A user defined name given to this Game Object. This value isn't ever used internally by Phaser, it is meant as a game level property.
- Source - gameobjects/components/Core.js, line 153
-
pendingDestroy :boolean
-
A Game Object is that is pendingDestroy is flagged to have its destroy method called on the next logic update. You can set it directly to allow you to flag an object to be destroyed on its next update.
This is extremely useful if you wish to destroy an object from within one of its own callbacks such as with Buttons or other Input events.
- Source - gameobjects/components/Core.js, line 252
-
<readonly> previousPosition :Phaser.Point
-
The position the Game Object was located in the previous frame.
- Source - gameobjects/components/Core.js, line 218
-
<readonly> previousRotation :number
-
The rotation the Game Object was in set to in the previous frame. Value is in radians.
- Source - gameobjects/components/Core.js, line 225
-
<readonly> renderOrderID :number
-
The render order ID is used internally by the renderer and Input Manager and should not be modified. This property is mostly used internally by the renderers, but is exposed for the use of plugins.
- Source - gameobjects/components/Core.js, line 233
-
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.- Source - gameobjects/components/Core.js, line 204
-
<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.
- Source - gameobjects/components/Core.js, line 170
Methods
-
<internal, static> init()
-
Initializes the mixin components.
The
this
context should be an instance of the component mixin target.- Internal:
- This member is internal (protected) and may be modified or removed in the future.
- Source - gameobjects/components/Core.js, line 54
-
<internal, static> install()
-
Installs / registers mixin components.
The
this
context should be that of the applicable object instance or prototype.- Internal:
- This member is internal (protected) and may be modified or removed in the future.
- Source - gameobjects/components/Core.js, line 22
-
<internal> postUpdate()
-
Internal method called by the World postUpdate cycle.
- Internal:
- This member is internal (protected) and may be modified or removed in the future.
- Source - gameobjects/components/Core.js, line 331
-
update()
-
Override this method in your own custom objects to handle any update requirements. It is called immediately after
preUpdate
and beforepostUpdate
. Remember if this Game Object has any children you should call update on those too.- Source - gameobjects/components/Core.js, line 321