forked from phaserjs/phaser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSetTileCollision.js
More file actions
30 lines (28 loc) · 772 Bytes
/
Copy pathSetTileCollision.js
File metadata and controls
30 lines (28 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Internally used method to set the colliding state of a tile. This does not recalculate
* interesting faces.
*
* @function Phaser.Tilemaps.Components.SetTileCollision
* @private
* @since 3.0.0
*
* @param {Phaser.Tilemaps.Tile} tile - The Tile to set the collision on.
* @param {boolean} [collides=true] - Should the tile index collide or not?
*/
var SetTileCollision = function (tile, collides)
{
if (collides)
{
tile.setCollision(true, true, true, true, false);
}
else
{
tile.resetCollision(false);
}
};
module.exports = SetTileCollision;