mirror of
https://github.com/photonstorm/phaser
synced 2025-02-16 05:58:30 +00:00
eslint fixes
This commit is contained in:
parent
441ca3862c
commit
c1517d60ed
1 changed files with 1 additions and 2 deletions
|
@ -5,10 +5,10 @@
|
|||
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
||||
*/
|
||||
|
||||
var BuildGameObject = require('../BuildGameObject');
|
||||
var Container = require('./Container');
|
||||
var GameObjectCreator = require('../GameObjectCreator');
|
||||
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
|
||||
var GetFastValue = require('../../utils/object/GetFastValue');
|
||||
|
||||
/**
|
||||
* Creates a new Container Game Object and returns it.
|
||||
|
@ -26,7 +26,6 @@ GameObjectCreator.register('container', function (config)
|
|||
{
|
||||
var x = GetAdvancedValue(config, 'x', 0);
|
||||
var y = GetAdvancedValue(config, 'y', 0);
|
||||
var add = GetFastValue(config, 'add', true);
|
||||
|
||||
var container = new Container(this.scene, x, y);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue