mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
eslint fix
This commit is contained in:
parent
a1e10a4bbc
commit
64b07c6ecb
2 changed files with 2 additions and 4 deletions
|
@ -4,7 +4,6 @@
|
|||
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
||||
*/
|
||||
|
||||
var Bodies = require('./lib/factory/Bodies');
|
||||
var Class = require('../../utils/Class');
|
||||
var Components = require('./components');
|
||||
var GameObject = require('../../gameobjects/GameObject');
|
||||
|
@ -119,7 +118,7 @@ var MatterImage = new Class({
|
|||
}
|
||||
else
|
||||
{
|
||||
this.setRectangle(this.width, this.height, options)
|
||||
this.setRectangle(this.width, this.height, options);
|
||||
}
|
||||
|
||||
this.setPosition(x, y);
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
*/
|
||||
|
||||
var AnimationComponent = require('../../gameobjects/components/Animation');
|
||||
var Bodies = require('./lib/factory/Bodies');
|
||||
var Class = require('../../utils/Class');
|
||||
var Components = require('./components');
|
||||
var GameObject = require('../../gameobjects/GameObject');
|
||||
|
@ -126,7 +125,7 @@ var MatterSprite = new Class({
|
|||
}
|
||||
else
|
||||
{
|
||||
this.setRectangle(this.width, this.height, options)
|
||||
this.setRectangle(this.width, this.height, options);
|
||||
}
|
||||
|
||||
this.setPosition(x, y);
|
||||
|
|
Loading…
Reference in a new issue