2017-06-21 23:47:35 +00:00
|
|
|
// Phaser.Physics.Impact.World
|
|
|
|
|
2017-08-15 22:38:35 +00:00
|
|
|
var Body = require('./Body');
|
2017-06-21 23:47:35 +00:00
|
|
|
var Class = require('../../utils/Class');
|
2017-08-15 22:38:35 +00:00
|
|
|
var COLLIDES = require('./COLLIDES');
|
|
|
|
var CollisionMap = require('./CollisionMap');
|
2017-08-16 21:51:46 +00:00
|
|
|
var GetFastValue = require('../../utils/object/GetFastValue');
|
2017-06-21 23:47:35 +00:00
|
|
|
var Set = require('../../structs/Set');
|
|
|
|
var Solver = require('./Solver');
|
|
|
|
var TYPE = require('./TYPE');
|
|
|
|
|
|
|
|
var World = new Class({
|
|
|
|
|
|
|
|
initialize:
|
|
|
|
|
2017-08-16 21:51:46 +00:00
|
|
|
function World (scene, config)
|
2017-06-21 23:47:35 +00:00
|
|
|
{
|
2017-08-15 22:38:35 +00:00
|
|
|
this.scene = scene;
|
|
|
|
|
2017-08-16 15:30:28 +00:00
|
|
|
this.events = scene.sys.events;
|
|
|
|
|
2017-06-22 01:40:10 +00:00
|
|
|
this.bodies = new Set();
|
2017-06-21 23:47:35 +00:00
|
|
|
|
2017-08-16 21:51:46 +00:00
|
|
|
this.gravity = GetFastValue(config, 'gravity', 0);
|
2017-06-21 23:47:35 +00:00
|
|
|
|
|
|
|
// Spatial hash cell dimensions
|
2017-08-16 21:51:46 +00:00
|
|
|
this.cellSize = GetFastValue(config, 'cellSize', 64);
|
2017-06-22 01:40:10 +00:00
|
|
|
|
|
|
|
this.collisionMap = new CollisionMap();
|
|
|
|
|
2017-08-16 21:51:46 +00:00
|
|
|
this.timeScale = GetFastValue(config, 'timeScale', 1);
|
2017-08-16 15:30:28 +00:00
|
|
|
|
|
|
|
// Impacts maximum time step is 20 fps.
|
2017-08-16 21:51:46 +00:00
|
|
|
this.maxStep = GetFastValue(config, 'maxStep', 0.05);
|
2017-08-16 15:30:28 +00:00
|
|
|
|
|
|
|
this.enabled = true;
|
|
|
|
|
2017-08-16 21:51:46 +00:00
|
|
|
this.drawDebug = GetFastValue(config, 'debug', false);
|
2017-08-16 16:16:23 +00:00
|
|
|
|
|
|
|
this.debugGraphic;
|
|
|
|
|
2017-08-18 00:42:14 +00:00
|
|
|
var _maxVelocity = GetFastValue(config, 'maxVelocity', 100);
|
|
|
|
|
2017-08-16 21:51:46 +00:00
|
|
|
this.defaults = {
|
2017-08-16 22:14:30 +00:00
|
|
|
debugShowBody: GetFastValue(config, 'debugShowBody', true),
|
|
|
|
debugShowVelocity: GetFastValue(config, 'debugShowVelocity', true),
|
2017-08-16 21:51:46 +00:00
|
|
|
bodyDebugColor: GetFastValue(config, 'debugBodyColor', 0xff00ff),
|
|
|
|
velocityDebugColor: GetFastValue(config, 'debugVelocityColor', 0x00ff00),
|
2017-08-18 00:42:14 +00:00
|
|
|
maxVelocityX: GetFastValue(config, 'maxVelocityX', _maxVelocity),
|
|
|
|
maxVelocityY: GetFastValue(config, 'maxVelocityY', _maxVelocity),
|
2017-08-16 21:51:46 +00:00
|
|
|
minBounceVelocity: GetFastValue(config, 'minBounceVelocity', 40),
|
|
|
|
gravityFactor: GetFastValue(config, 'gravityFactor', 1),
|
|
|
|
bounciness: GetFastValue(config, 'bounciness', 0)
|
2017-08-16 19:08:05 +00:00
|
|
|
};
|
|
|
|
|
2017-08-17 00:21:12 +00:00
|
|
|
/**
|
|
|
|
* @property {object} walls - An object containing the 4 wall bodies that bound the physics world.
|
|
|
|
*/
|
|
|
|
this.walls = { left: null, right: null, top: null, bottom: null };
|
|
|
|
|
2017-08-18 00:42:14 +00:00
|
|
|
this.delta = 0;
|
|
|
|
|
2017-08-16 13:02:10 +00:00
|
|
|
this._lastId = 0;
|
2017-08-16 16:16:23 +00:00
|
|
|
|
2017-08-18 00:42:14 +00:00
|
|
|
if (GetFastValue(config, 'setBounds', false))
|
|
|
|
{
|
|
|
|
var boundsConfig = config['setBounds'];
|
|
|
|
|
|
|
|
if (typeof boundsConfig === 'boolean')
|
|
|
|
{
|
|
|
|
this.setBounds();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var x = GetFastValue(boundsConfig, 'x', 0);
|
|
|
|
var y = GetFastValue(boundsConfig, 'y', 0);
|
|
|
|
var width = GetFastValue(boundsConfig, 'width', scene.sys.game.config.width);
|
|
|
|
var height = GetFastValue(boundsConfig, 'height', scene.sys.game.config.height);
|
|
|
|
var thickness = GetFastValue(boundsConfig, 'thickness', 64);
|
|
|
|
var left = GetFastValue(boundsConfig, 'left', true);
|
|
|
|
var right = GetFastValue(boundsConfig, 'right', true);
|
|
|
|
var top = GetFastValue(boundsConfig, 'top', true);
|
|
|
|
var bottom = GetFastValue(boundsConfig, 'bottom', true);
|
|
|
|
|
|
|
|
this.setBounds(x, y, width, height, thickness, left, right, top, bottom);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-16 21:51:46 +00:00
|
|
|
if (this.drawDebug)
|
2017-08-16 16:16:23 +00:00
|
|
|
{
|
|
|
|
this.createDebugGraphic();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-08-18 15:47:10 +00:00
|
|
|
setCollisionMap: function (tilesize, data)
|
|
|
|
{
|
|
|
|
this.collisionMap = new CollisionMap(tilesize, data);
|
|
|
|
|
2017-09-13 12:15:47 +00:00
|
|
|
return this.collisionMap;
|
2017-08-18 15:47:10 +00:00
|
|
|
},
|
|
|
|
|
2017-08-17 00:21:12 +00:00
|
|
|
/**
|
|
|
|
* Sets the bounds of the Physics world to match the given world pixel dimensions.
|
|
|
|
* You can optionally set which 'walls' to create: left, right, top or bottom.
|
|
|
|
* If none of the walls are given it will default to use the walls settings it had previously.
|
|
|
|
* I.e. if you previously told it to not have the left or right walls, and you then adjust the world size
|
|
|
|
* the newly created bounds will also not have the left and right walls.
|
|
|
|
* Explicitly state them in the parameters to override this.
|
|
|
|
*
|
|
|
|
* @method Phaser.Physics.P2#setBounds
|
|
|
|
* @param {number} x - The x coordinate of the top-left corner of the bounds.
|
|
|
|
* @param {number} y - The y coordinate of the top-left corner of the bounds.
|
|
|
|
* @param {number} width - The width of the bounds.
|
|
|
|
* @param {number} height - The height of the bounds.
|
|
|
|
* @param {boolean} [left=true] - If true will create the left bounds wall.
|
|
|
|
* @param {boolean} [right=true] - If true will create the right bounds wall.
|
|
|
|
* @param {boolean} [top=true] - If true will create the top bounds wall.
|
|
|
|
* @param {boolean} [bottom=true] - If true will create the bottom bounds wall.
|
|
|
|
*/
|
|
|
|
setBounds: function (x, y, width, height, thickness, left, right, top, bottom)
|
|
|
|
{
|
|
|
|
if (x === undefined) { x = 0; }
|
|
|
|
if (y === undefined) { y = 0; }
|
|
|
|
if (width === undefined) { width = this.scene.sys.game.config.width; }
|
|
|
|
if (height === undefined) { height = this.scene.sys.game.config.height; }
|
|
|
|
if (thickness === undefined) { thickness = 64; }
|
|
|
|
if (left === undefined) { left = true; }
|
|
|
|
if (right === undefined) { right = true; }
|
|
|
|
if (top === undefined) { top = true; }
|
|
|
|
if (bottom === undefined) { bottom = true; }
|
|
|
|
|
|
|
|
this.updateWall(left, 'left', x - thickness, y, thickness, height);
|
|
|
|
this.updateWall(right, 'right', x + width, y, thickness, height);
|
|
|
|
this.updateWall(top, 'top', x, y - thickness, width, thickness);
|
|
|
|
this.updateWall(bottom, 'bottom', x, y + height, width, thickness);
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
// position = 'left', 'right', 'top' or 'bottom'
|
|
|
|
updateWall: function (add, position, x, y, width, height)
|
|
|
|
{
|
|
|
|
var wall = this.walls[position];
|
|
|
|
|
|
|
|
if (add)
|
|
|
|
{
|
|
|
|
if (wall)
|
|
|
|
{
|
2017-08-17 02:55:17 +00:00
|
|
|
wall.resetSize(x, y, width, height);
|
2017-08-17 00:21:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.walls[position] = this.create(x, y, width, height);
|
2017-08-17 01:07:03 +00:00
|
|
|
this.walls[position].name = position;
|
2017-08-17 00:21:12 +00:00
|
|
|
this.walls[position].gravityFactor = 0;
|
|
|
|
this.walls[position].collides = COLLIDES.FIXED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (wall)
|
|
|
|
{
|
|
|
|
this.bodies.remove(wall);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.walls[position] = null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-08-16 16:16:23 +00:00
|
|
|
createDebugGraphic: function ()
|
|
|
|
{
|
2017-08-16 18:31:59 +00:00
|
|
|
var graphic = this.scene.sys.add.graphics({ x: 0, y: 0 });
|
2017-08-16 16:16:23 +00:00
|
|
|
|
2017-08-16 21:10:56 +00:00
|
|
|
graphic.setZ(Number.MAX_SAFE_INTEGER);
|
2017-08-16 16:27:15 +00:00
|
|
|
|
2017-08-16 16:16:23 +00:00
|
|
|
this.debugGraphic = graphic;
|
|
|
|
|
|
|
|
this.drawDebug = true;
|
|
|
|
|
|
|
|
return graphic;
|
2017-08-16 13:02:10 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
getNextID: function ()
|
|
|
|
{
|
|
|
|
return this._lastId++;
|
2017-06-21 23:47:35 +00:00
|
|
|
},
|
|
|
|
|
2017-06-22 01:40:10 +00:00
|
|
|
create: function (x, y, sizeX, sizeY)
|
2017-06-21 23:47:35 +00:00
|
|
|
{
|
2017-06-22 01:40:10 +00:00
|
|
|
var body = new Body(this, x, y, sizeX, sizeY);
|
2017-06-21 23:47:35 +00:00
|
|
|
|
|
|
|
this.bodies.set(body);
|
|
|
|
|
|
|
|
return body;
|
|
|
|
},
|
|
|
|
|
2017-12-02 04:04:30 +00:00
|
|
|
remove: function (object)
|
|
|
|
{
|
|
|
|
this.bodies.delete(object);
|
|
|
|
},
|
|
|
|
|
2017-08-16 15:30:28 +00:00
|
|
|
pause: function ()
|
|
|
|
{
|
|
|
|
this.enabled = false;
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
resume: function ()
|
|
|
|
{
|
|
|
|
this.enabled = true;
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-08 17:17:58 +00:00
|
|
|
postUpdate: function ()
|
|
|
|
{
|
|
|
|
// NOOP
|
|
|
|
},
|
|
|
|
|
2017-06-21 23:47:35 +00:00
|
|
|
update: function (time, delta)
|
|
|
|
{
|
2017-08-16 15:30:28 +00:00
|
|
|
if (!this.enabled || this.bodies.size === 0)
|
2017-06-21 23:47:35 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-16 15:30:28 +00:00
|
|
|
// Impact uses a divided delta value that is clamped to the maxStep (20fps) maximum
|
2017-11-08 17:17:58 +00:00
|
|
|
|
|
|
|
var clampedDelta = Math.min(delta / 1000, this.maxStep) * this.timeScale;
|
|
|
|
|
|
|
|
this.delta = clampedDelta;
|
2017-06-21 23:47:35 +00:00
|
|
|
|
2017-08-16 15:30:28 +00:00
|
|
|
// Update all active bodies
|
2017-06-21 23:47:35 +00:00
|
|
|
|
2017-08-15 22:38:35 +00:00
|
|
|
var i;
|
2017-08-16 13:02:10 +00:00
|
|
|
var body;
|
2017-08-15 22:38:35 +00:00
|
|
|
var bodies = this.bodies.entries;
|
|
|
|
var len = bodies.length;
|
|
|
|
var hash = {};
|
|
|
|
var size = this.cellSize;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
2017-06-27 14:24:49 +00:00
|
|
|
{
|
2017-08-16 13:02:10 +00:00
|
|
|
body = bodies[i];
|
2017-08-15 22:38:35 +00:00
|
|
|
|
2017-06-21 23:47:35 +00:00
|
|
|
if (body.enabled)
|
|
|
|
{
|
2017-11-08 17:17:58 +00:00
|
|
|
body.update(clampedDelta);
|
2017-06-21 23:47:35 +00:00
|
|
|
}
|
2017-08-15 22:38:35 +00:00
|
|
|
}
|
2017-06-21 23:47:35 +00:00
|
|
|
|
2017-08-17 02:15:02 +00:00
|
|
|
// Run collision against them all now they're in the new positions from the update
|
2017-06-21 23:47:35 +00:00
|
|
|
|
2017-08-15 22:38:35 +00:00
|
|
|
for (i = 0; i < len; i++)
|
2017-06-21 23:47:35 +00:00
|
|
|
{
|
2017-08-16 13:02:10 +00:00
|
|
|
body = bodies[i];
|
2017-06-21 23:47:35 +00:00
|
|
|
|
2017-08-16 13:02:10 +00:00
|
|
|
if (!body.skipHash())
|
2017-06-21 23:47:35 +00:00
|
|
|
{
|
|
|
|
this.checkHash(body, hash, size);
|
|
|
|
}
|
|
|
|
}
|
2017-08-30 14:50:27 +00:00
|
|
|
|
|
|
|
if (this.drawDebug)
|
|
|
|
{
|
|
|
|
var graphics = this.debugGraphic;
|
|
|
|
|
|
|
|
graphics.clear();
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
{
|
|
|
|
body = bodies[i];
|
|
|
|
|
|
|
|
if (body.willDrawDebug())
|
|
|
|
{
|
|
|
|
body.drawDebug(graphics);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-21 23:47:35 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// Check the body against the spatial hash
|
|
|
|
checkHash: function (body, hash, size)
|
|
|
|
{
|
|
|
|
var checked = {};
|
2017-08-15 22:38:35 +00:00
|
|
|
|
2017-06-21 23:47:35 +00:00
|
|
|
var xmin = Math.floor(body.pos.x / size);
|
|
|
|
var ymin = Math.floor(body.pos.y / size);
|
|
|
|
var xmax = Math.floor((body.pos.x + body.size.x) / size) + 1;
|
|
|
|
var ymax = Math.floor((body.pos.y + body.size.y) / size) + 1;
|
|
|
|
|
|
|
|
for (var x = xmin; x < xmax; x++)
|
|
|
|
{
|
|
|
|
for (var y = ymin; y < ymax; y++)
|
|
|
|
{
|
|
|
|
if (!hash[x])
|
|
|
|
{
|
|
|
|
hash[x] = {};
|
2017-06-23 17:08:22 +00:00
|
|
|
hash[x][y] = [ body ];
|
2017-06-21 23:47:35 +00:00
|
|
|
}
|
|
|
|
else if (!hash[x][y])
|
|
|
|
{
|
2017-06-23 17:08:22 +00:00
|
|
|
hash[x][y] = [ body ];
|
2017-06-21 23:47:35 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var cell = hash[x][y];
|
|
|
|
|
|
|
|
for (var c = 0; c < cell.length; c++)
|
|
|
|
{
|
|
|
|
if (body.touches(cell[c]) && !checked[cell[c].id])
|
|
|
|
{
|
|
|
|
checked[cell[c].id] = true;
|
|
|
|
|
|
|
|
this.checkBodies(body, cell[c]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cell.push(body);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
checkBodies: function (bodyA, bodyB)
|
|
|
|
{
|
2017-08-17 03:06:08 +00:00
|
|
|
// 2 fixed bodies won't do anything
|
|
|
|
if (bodyA.collides === COLLIDES.FIXED && bodyB.collides === COLLIDES.FIXED)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-06-21 23:47:35 +00:00
|
|
|
// bitwise checks
|
|
|
|
if (bodyA.checkAgainst & bodyB.type)
|
|
|
|
{
|
|
|
|
bodyA.check(bodyB);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bodyB.checkAgainst & bodyA.type)
|
|
|
|
{
|
|
|
|
bodyB.check(bodyA);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bodyA.collides && bodyB.collides && bodyA.collides + bodyB.collides > COLLIDES.ACTIVE)
|
|
|
|
{
|
|
|
|
Solver(this, bodyA, bodyB);
|
|
|
|
}
|
2017-08-16 00:20:35 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
//////////////
|
|
|
|
// Helpers //
|
|
|
|
//////////////
|
|
|
|
|
|
|
|
setCollidesNever: function (bodies)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < bodies.length; i++)
|
|
|
|
{
|
|
|
|
bodies[i].collides = COLLIDES.NEVER;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setLite: function (bodies)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < bodies.length; i++)
|
|
|
|
{
|
|
|
|
bodies[i].collides = COLLIDES.LITE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setPassive: function (bodies)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < bodies.length; i++)
|
|
|
|
{
|
|
|
|
bodies[i].collides = COLLIDES.PASSIVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setActive: function (bodies)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < bodies.length; i++)
|
|
|
|
{
|
|
|
|
bodies[i].collides = COLLIDES.ACTIVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setFixed: function (bodies)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < bodies.length; i++)
|
|
|
|
{
|
|
|
|
bodies[i].collides = COLLIDES.FIXED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setTypeNone: function (bodies)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < bodies.length; i++)
|
|
|
|
{
|
|
|
|
bodies[i].type = TYPE.NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setTypeA: function (bodies)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < bodies.length; i++)
|
|
|
|
{
|
|
|
|
bodies[i].type = TYPE.A;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setTypeB: function (bodies)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < bodies.length; i++)
|
|
|
|
{
|
|
|
|
bodies[i].type = TYPE.B;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setAvsB: function (bodies)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < bodies.length; i++)
|
|
|
|
{
|
|
|
|
bodies[i].type = TYPE.A;
|
|
|
|
bodies[i].checkAgainst = TYPE.B;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setBvsA: function (bodies)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < bodies.length; i++)
|
|
|
|
{
|
|
|
|
bodies[i].type = TYPE.B;
|
|
|
|
bodies[i].checkAgainst = TYPE.A;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setCheckAgainstNone: function (bodies)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < bodies.length; i++)
|
|
|
|
{
|
|
|
|
bodies[i].checkAgainst = TYPE.NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setCheckAgainstA: function (bodies)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < bodies.length; i++)
|
|
|
|
{
|
|
|
|
bodies[i].checkAgainst = TYPE.A;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
setCheckAgainstB: function (bodies)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < bodies.length; i++)
|
|
|
|
{
|
|
|
|
bodies[i].checkAgainst = TYPE.B;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
2017-08-16 16:16:23 +00:00
|
|
|
},
|
|
|
|
|
2017-11-29 23:36:35 +00:00
|
|
|
shutdown: function ()
|
|
|
|
{
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2017-08-16 16:16:23 +00:00
|
|
|
destroy: function ()
|
|
|
|
{
|
|
|
|
this.scene = null;
|
|
|
|
|
|
|
|
this.events = null;
|
|
|
|
|
|
|
|
this.bodies.clear();
|
|
|
|
|
|
|
|
this.bodies = null;
|
|
|
|
|
|
|
|
this.collisionMap = null;
|
2017-06-21 23:47:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = World;
|