phaser/src/physics/impact/components/Offset.js

19 lines
275 B
JavaScript
Raw Normal View History

2017-08-16 21:10:43 +00:00
var Offset = {
setOffset: function (x, y, width, height)
{
this.body.offset.x = x;
this.body.offset.y = y;
if (width)
{
this.setBodySize(width, height);
2017-08-16 21:10:43 +00:00
}
return this;
}
};
module.exports = Offset;