2017-07-04 00:59:31 +00:00
|
|
|
var Blitter = require('./Blitter');
|
2017-04-11 01:47:52 +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');
|
2017-04-11 01:47:52 +00:00
|
|
|
|
2018-02-01 05:48:56 +00:00
|
|
|
/**
|
|
|
|
* Creates a new Blitter Game Object and returns it.
|
|
|
|
*
|
|
|
|
* Note: This method will only be available if the Blitter Game Object has been built into Phaser.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.GameObjectCreator#blitter
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {object} config - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Blitter} The Game Object that was created.
|
|
|
|
*/
|
2017-09-14 01:27:29 +00:00
|
|
|
GameObjectCreator.register('blitter', function (config)
|
2017-04-11 01:47:52 +00:00
|
|
|
{
|
|
|
|
var key = GetAdvancedValue(config, 'key', null);
|
|
|
|
var frame = GetAdvancedValue(config, 'frame', null);
|
|
|
|
|
2017-09-14 01:27:29 +00:00
|
|
|
var blitter = new Blitter(this.scene, 0, 0, key, frame);
|
2017-04-11 01:47:52 +00:00
|
|
|
|
2017-09-14 01:27:29 +00:00
|
|
|
BuildGameObject(this.scene, blitter, config);
|
2017-04-11 01:47:52 +00:00
|
|
|
|
2017-07-04 00:59:31 +00:00
|
|
|
return blitter;
|
2017-09-14 01:27:29 +00:00
|
|
|
});
|
2018-02-01 05:48:56 +00:00
|
|
|
|
|
|
|
// When registering a factory function 'this' refers to the GameObjectCreator context.
|