A Bob Game Object.
A Bob belongs to a Blitter Game Object. The Blitter is responsible for managing and rendering this object.
A Bob has a position, alpha value and a frame from a texture that it uses to render with. You can also toggle the flipped and visible state of the Bob. The Frame the Bob uses to render can be changed dynamically, but it must be a Frame within the Texture used by the parent Blitter.
Bob positions are relative to the Blitter parent. So if you move the Blitter parent, all Bob children will have their positions impacted by this change as well.
You can manipulate Bob objects directly from your game code, but the creation and destruction of them should be handled via the Blitter parent.
new Bob(blitter, x, y, frame, visible)
name | type | description |
---|---|---|
blitter | Phaser.GameObjects.Blitter |
The parent Blitter object is responsible for updating this Bob. |
x | number |
The horizontal position of this Game Object in the world, relative to the parent Blitter position. |
y | number |
The vertical position of this Game Object in the world, relative to the parent Blitter position. |
frame | string | number |
The Frame this Bob will render with, as defined in the Texture the parent Blitter is using. |
visible | boolean |
Should the Bob render visible or not to start with? |
The alpha value of the Bob, between 0 and 1.
A Bob with alpha 0 will skip rendering.
A blank object which can be used to store data related to this Bob in.
The horizontally flipped state of the Bob. A Bob that is flipped horizontally will render inversed on the horizontal axis. Flipping always takes place from the middle of the texture.
The vertically flipped state of the Bob. A Bob 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.
The frame that the Bob uses to render with.
To change the frame use the Bob.setFrame
method.
The Blitter object that this Bob belongs to.
The tint value of this Bob.
The visible state of the Bob.
An invisible Bob will skip rendering.
The x position of this Bob, relative to the x position of the Blitter.
The y position of this Bob, relative to the y position of the Blitter.
Destroys this Bob instance. Removes itself from the Blitter and clears the parent, frame and data properties.
Resets this Bob.
Changes the position to the values given, and optionally changes the frame.
Also resets the flipX and flipY values, sets alpha back to 1 and visible to true.
name | type | arguments | description |
---|---|---|---|
x | number |
The x position of the Bob. Bob coordinate are relative to the position of the Blitter object. |
|
y | number |
The y position of the Bob. Bob coordinate are relative to the position of the Blitter object. |
|
frame | string | number | Phaser.Textures.Frame | <optional> |
The Frame the Bob will use. It must be part of the Texture the parent Blitter object is using. |
This Bob Game Object.
Resets the horizontal and vertical flipped state of this Bob back to their default un-flipped state.
This Bob Game Object.
Set the Alpha level of this Bob. 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.
A Bob with alpha 0 will skip rendering.
name | type | description |
---|---|---|
value | number |
The alpha value used for this Bob. Between 0 and 1. |
This Bob Game Object.
Sets the horizontal and vertical flipped state of this Bob.
name | type | description |
---|---|---|
x | boolean |
The horizontal flipped state. |
y | boolean |
The horizontal flipped state. |
This Bob Game Object.
Sets the horizontal flipped state of this Bob.
name | type | description |
---|---|---|
value | boolean |
The flipped state. |
This Bob Game Object.
Sets the vertical flipped state of this Bob.
name | type | description |
---|---|---|
value | boolean |
The flipped state. |
This Bob Game Object.
Changes the Texture Frame being used by this Bob. The frame must be part of the Texture the parent Blitter is using. If no value is given it will use the default frame of the Blitter parent.
name | type | arguments | description |
---|---|---|---|
frame | string | number | Phaser.Textures.Frame | <optional> |
The frame to be used during rendering. |
This Bob Game Object.
Changes the position of this Bob to the values given.
name | type | description |
---|---|---|
x | number |
The x position of the Bob. Bob coordinate are relative to the position of the Blitter object. |
y | number |
The y position of the Bob. Bob coordinate are relative to the position of the Blitter object. |
This Bob Game Object.
Sets the tint of this Bob.
name | type | description |
---|---|---|
value | number |
The tint value used for this Bob. Between 0 and 0xffffff. |
This Bob Game Object.
Sets the visibility of this Bob.
An invisible Bob will skip rendering.
name | type | description |
---|---|---|
value | boolean |
The visible state of the Game Object. |
This Bob Game Object.