A wrapper around a Tile that provides access to a corresponding Matter body. A tile can only have one Matter body associated with it. You can either pass in an existing Matter body for the tile or allow the constructor to create the corresponding body for you. If the Tile has a collision group (defined in Tiled), those shapes will be used to create the body. If not, the tile's rectangle bounding box will be used.
The corresponding body will be accessible on the Tile itself via Tile.physics.matterBody.
Note: not all Tiled collision shapes are supported. See Phaser.Physics.Matter.TileBody#setFromTileCollision for more information.
new TileBody(world, tile, [options])
name | type | arguments | description |
---|---|---|---|
world | Phaser.Physics.Matter.World |
The Matter world instance this body belongs to. |
|
tile | Phaser.Tilemaps.Tile |
The target tile that should have a Matter body. |
|
options | Phaser.Types.Physics.Matter.MatterTileOptions | <optional> |
Options to be used when creating the Matter body. |
The body's center of mass.
Calling this creates a new `Vector2 each time to avoid mutation.
If you only need to read the value and won't change it, you can get it from GameObject.body.centerOfMass
.
The tile object the body is associated with.
The Matter world the body exists within.
Add a listener for a given event.
name | type | arguments | Default | description |
---|---|---|---|---|
event | string | symbol |
The event name. |
||
fn | function |
The listener function. |
||
context | * | <optional> | this |
The context to invoke the listener with. |
this
.
Removes the current body from the tile and the world.
This TileBody object.
Calls each of the listeners registered for a given event.
name | type | arguments | description |
---|---|---|---|
event | string | symbol |
The event name. |
|
args | * | <optional> |
Additional arguments that will be passed to the event handler. |
true
if the event had listeners, else false
.
Return an array listing the events for which the emitter has registered listeners.
Is the body belonging to this Game Object a sensor or not?
true
if the body is a sensor, otherwise false
.
Returns true
if the body is static, otherwise false
for a dynamic body.
true
if the body is static, otherwise false
.
Return the number of listeners listening to a given event.
name | type | description |
---|---|---|
event | string | symbol |
The event name. |
The number of listeners.
Return the listeners registered for a given event.
name | type | description |
---|---|---|
event | string | symbol |
The event name. |
The registered listeners.
Remove the listeners of a given event.
name | type | arguments | description |
---|---|---|---|
event | string | symbol |
The event name. |
|
fn | function | <optional> |
Only remove the listeners that match this function. |
context | * | <optional> |
Only remove the listeners that have this context. |
once | boolean | <optional> |
Only remove one-time listeners. |
this
.
Add a listener for a given event.
name | type | arguments | Default | description |
---|---|---|---|---|
event | string | symbol |
The event name. |
||
fn | function |
The listener function. |
||
context | * | <optional> | this |
The context to invoke the listener with. |
this
.
Add a one-time listener for a given event.
name | type | arguments | Default | description |
---|---|---|---|---|
event | string | symbol |
The event name. |
||
fn | function |
The listener function. |
||
context | * | <optional> | this |
The context to invoke the listener with. |
this
.
Remove all listeners, or those of the specified event.
name | type | arguments | description |
---|---|---|---|
event | string | symbol | <optional> |
The event name. |
this
.
Removes the current body from the TileBody and from the Matter world
This TileBody object.
Remove the listeners of a given event.
name | type | arguments | description |
---|---|---|---|
event | string | symbol |
The event name. |
|
fn | function | <optional> |
Only remove the listeners that match this function. |
context | * | <optional> |
Only remove the listeners that have this context. |
once | boolean | <optional> |
Only remove one-time listeners. |
this
.
Wakes this Body if asleep.
This Game Object.
Sets the current body to the given body. This will remove the previous body, if one already exists.
name | type | arguments | Default | description |
---|---|---|---|---|
body | MatterJS.BodyType |
The new Matter body to use. |
||
addToWorld | boolean | <optional> | true |
Whether or not to add the body to the Matter world. |
This TileBody object.
Sets the restitution on the physics object.
name | type | description |
---|---|---|
value | number |
A Number that defines the restitution (elasticity) of the body. The value is always positive and is in the range (0, 1). A value of 0 means collisions may be perfectly inelastic and no bouncing may occur. A value of 0.8 means the body may bounce back with approximately 80% of its kinetic energy. Note that collision response is based on pairs of bodies, and that restitution values are combined with the following formula: |
This Game Object.
Sets the collision mask for this Game Object's Matter Body. Two Matter Bodies with different collision groups will only
collide if each one includes the other's category in its mask based on a bitwise AND, i.e. (categoryA & maskB) !== 0
and (categoryB & maskA) !== 0
are both true.
name | type | description |
---|---|---|
categories | number | Array.<number> |
A unique category bitfield, or an array of them. |
This Game Object.
Sets the collision category of this Game Object's Matter Body. This number must be a power of two between 2^0 (= 1) and 2^31. Two bodies with different collision groups (see #setCollisionGroup) will only collide if their collision categories are included in their collision masks (see #setCollidesWith).
name | type | description |
---|---|---|
value | number |
Unique category bitfield. |
This Game Object.
Sets the collision group of this Game Object's Matter Body. If this is zero or two Matter Bodies have different values, they will collide according to the usual rules (see #setCollisionCategory and #setCollisionGroup). If two Matter Bodies have the same positive value, they will always collide; if they have the same negative value, they will never collide.
name | type | description |
---|---|---|
value | number |
Unique group index. |
This Game Object.
Sets density of the body.
name | type | description |
---|---|---|
value | number |
The new density of the body. |
This Game Object.
Sets new friction values for this Game Object's Matter Body.
name | type | arguments | description |
---|---|---|---|
value | number |
The new friction of the body, between 0 and 1, where 0 allows the Body to slide indefinitely, while 1 allows it to stop almost immediately after a force is applied. |
|
air | number | <optional> |
If provided, the new air resistance of the Body. The higher the value, the faster the Body will slow as it moves through space. 0 means the body has no air resistance. |
fstatic | number | <optional> |
If provided, the new static friction of the Body. The higher the value (e.g. 10), the more force it will take to initially get the Body moving when it is nearly stationary. 0 means the body will never "stick" when it is nearly stationary. |
This Game Object.
Sets a new air resistance for this Game Object's Matter Body. A value of 0 means the Body will never slow as it moves through space. The higher the value, the faster a Body slows when moving through space.
name | type | description |
---|---|---|
value | number |
The new air resistance for the Body. |
This Game Object.
Sets a new static friction for this Game Object's Matter Body. A value of 0 means the Body will never "stick" when it is nearly stationary. The higher the value (e.g. 10), the more force it will take to initially get the Body moving when it is nearly stationary.
name | type | description |
---|---|---|
value | number |
The new static friction for the Body. |
This Game Object.
Sets the current body from the collision group associated with the Tile. This is typically set up in Tiled's collision editor.
Note: Matter doesn't support all shapes from Tiled. Rectangles and polygons are directly supported. Ellipses are converted into circle bodies. Polylines are treated as if they are closed polygons. If a tile has multiple shapes, a multi-part body will be created. Concave shapes are supported if poly-decomp library is included. Decomposition is not guaranteed to work for complex shapes (e.g. holes), so it's often best to manually decompose a concave polygon into multiple convex polygons yourself.
name | type | arguments | description |
---|---|---|---|
options | Phaser.Types.Physics.Matter.MatterBodyTileOptions | <optional> |
Options to be used when creating the Matter body. See MatterJS.Body for a list of what Matter accepts. |
This TileBody object.
Sets the current body to a rectangle that matches the bounds of the tile.
name | type | arguments | description |
---|---|---|---|
options | Phaser.Types.Physics.Matter.MatterBodyTileOptions | <optional> |
Options to be used when creating the Matter body. See MatterJS.Body for a list of what Matter accepts. |
This TileBody object.
A togglable function for ignoring world gravity in real-time on the current body.
name | type | description |
---|---|---|
value | boolean |
Set to true to ignore the effect of world gravity, or false to not ignore it. |
This Game Object.
Sets the mass of the Game Object's Matter Body.
name | type | description |
---|---|---|
value | number |
The new mass of the body. |
This Game Object.
The callback is sent a Phaser.Types.Physics.Matter.MatterCollisionData
object.
This does not change the bodies collision category, group or filter. Those must be set in addition to the callback.
name | type | description |
---|---|---|
callback | function |
The callback to invoke when this body starts colliding with another. |
This Game Object.
The callback is sent a Phaser.Types.Physics.Matter.MatterCollisionData
object.
This does not change the bodies collision category, group or filter. Those must be set in addition to the callback.
name | type | description |
---|---|---|
callback | function |
The callback to invoke for the duration of this body colliding with another. |
This Game Object.
The callback is sent a Phaser.Types.Physics.Matter.MatterCollisionData
object.
This does not change the bodies collision category, group or filter. Those must be set in addition to the callback.
name | type | description |
---|---|---|
callback | function |
The callback to invoke when this body stops colliding with another. |
This Game Object.
The callback is sent a reference to the other body, along with a Phaser.Types.Physics.Matter.MatterCollisionData
object.
This does not change the bodies collision category, group or filter. Those must be set in addition to the callback.
name | type | description |
---|---|---|
body | MatterJS.Body | Array.<MatterJS.Body> |
The body, or an array of bodies, to test for collisions with. |
callback | function |
The callback to invoke when this body collides with the given body or bodies. |
This Game Object.
Set the body belonging to this Game Object to be a sensor. Sensors trigger collision events, but don't react with colliding body physically.
name | type | description |
---|---|---|
value | boolean |
|
This Game Object.
Enables or disables the Sleep End event for this body.
name | type | description |
---|---|---|
value | boolean |
|
This Game Object.
Enable sleep and wake events for this body.
By default when a body goes to sleep, or wakes up, it will not emit any events.
The events are emitted by the Matter World instance and can be listened to via
the SLEEP_START
and SLEEP_END
events.
name | type | description |
---|---|---|
start | boolean |
|
end | boolean |
|
This Game Object.
Enables or disables the Sleep Start event for this body.
name | type | description |
---|---|---|
value | boolean |
|
This Game Object.
Sets the number of updates in which this body must have near-zero velocity before it is set as sleeping (if sleeping is enabled by the engine).
name | type | arguments | Default | description |
---|---|---|---|---|
value | number | <optional> | 60 |
A |
This Game Object.
Changes the physics body to be either static true
or dynamic false
.
name | type | description |
---|---|---|
value | boolean |
|
This Game Object.
Sets this Body to sleep.
This Game Object.
Removes all listeners.