2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2022-02-28 14:29:51 +00:00
|
|
|
* @copyright 2022 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-02-12 16:01:20 +00:00
|
|
|
*/
|
|
|
|
|
2017-07-04 00:59:31 +00:00
|
|
|
var BuildGameObject = require('../BuildGameObject');
|
2018-01-16 22:28:29 +00:00
|
|
|
var GameObjectCreator = require('../GameObjectCreator');
|
2017-09-14 01:27:29 +00:00
|
|
|
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
|
|
|
|
var TileSprite = require('./TileSprite');
|
|
|
|
|
2018-02-06 22:56:27 +00:00
|
|
|
/**
|
|
|
|
* Creates a new TileSprite Game Object and returns it.
|
|
|
|
*
|
|
|
|
* Note: This method will only be available if the TileSprite Game Object has been built into Phaser.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.GameObjectCreator#tileSprite
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2019-05-09 10:59:43 +00:00
|
|
|
* @param {Phaser.Types.GameObjects.TileSprite.TileSpriteConfig} config - The configuration object this Game Object will use to create itself.
|
2018-05-02 09:57:26 +00:00
|
|
|
* @param {boolean} [addToScene] - Add this Game Object to the Scene after creating it? If set this argument overrides the `add` property in the config object.
|
2018-02-06 22:56:27 +00:00
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.TileSprite} The Game Object that was created.
|
|
|
|
*/
|
2018-05-02 09:57:26 +00:00
|
|
|
GameObjectCreator.register('tileSprite', function (config, addToScene)
|
2017-07-04 00:59:31 +00:00
|
|
|
{
|
2018-05-16 14:17:08 +00:00
|
|
|
if (config === undefined) { config = {}; }
|
|
|
|
|
2017-07-04 00:59:31 +00:00
|
|
|
var x = GetAdvancedValue(config, 'x', 0);
|
|
|
|
var y = GetAdvancedValue(config, 'y', 0);
|
|
|
|
var width = GetAdvancedValue(config, 'width', 512);
|
|
|
|
var height = GetAdvancedValue(config, 'height', 512);
|
|
|
|
var key = GetAdvancedValue(config, 'key', '');
|
|
|
|
var frame = GetAdvancedValue(config, 'frame', '');
|
|
|
|
|
2017-09-14 01:27:29 +00:00
|
|
|
var tile = new TileSprite(this.scene, x, y, width, height, key, frame);
|
2017-07-04 00:59:31 +00:00
|
|
|
|
2018-05-02 09:57:26 +00:00
|
|
|
if (addToScene !== undefined)
|
|
|
|
{
|
|
|
|
config.add = addToScene;
|
|
|
|
}
|
|
|
|
|
2017-09-14 01:27:29 +00:00
|
|
|
BuildGameObject(this.scene, tile, config);
|
2017-07-04 00:59:31 +00:00
|
|
|
|
|
|
|
return tile;
|
2017-09-14 01:27:29 +00:00
|
|
|
});
|