2018-10-29 23:07:30 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
var Class = require('../../utils/Class');
|
|
|
|
var Components = require('../components');
|
|
|
|
var GameObject = require('../GameObject');
|
|
|
|
var ExternRender = require('./ExternRender');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @classdesc
|
|
|
|
* An Extern Game Object.
|
|
|
|
*
|
|
|
|
* @class Extern
|
|
|
|
* @extends Phaser.GameObjects.GameObject
|
|
|
|
* @memberof Phaser.GameObjects
|
|
|
|
* @constructor
|
|
|
|
* @since 3.16.0
|
|
|
|
*
|
|
|
|
* @extends Phaser.GameObjects.Components.Alpha
|
|
|
|
* @extends Phaser.GameObjects.Components.BlendMode
|
|
|
|
* @extends Phaser.GameObjects.Components.Depth
|
|
|
|
* @extends Phaser.GameObjects.Components.Flip
|
|
|
|
* @extends Phaser.GameObjects.Components.Origin
|
|
|
|
* @extends Phaser.GameObjects.Components.ScaleMode
|
|
|
|
* @extends Phaser.GameObjects.Components.ScrollFactor
|
|
|
|
* @extends Phaser.GameObjects.Components.Size
|
|
|
|
* @extends Phaser.GameObjects.Components.Texture
|
|
|
|
* @extends Phaser.GameObjects.Components.Tint
|
|
|
|
* @extends Phaser.GameObjects.Components.Transform
|
|
|
|
* @extends Phaser.GameObjects.Components.Visible
|
|
|
|
*
|
|
|
|
* @param {Phaser.Scene} scene - The Scene to which this Game Object belongs. A Game Object can only belong to one Scene at a time.
|
|
|
|
*/
|
|
|
|
var Extern = new Class({
|
|
|
|
|
|
|
|
Extends: GameObject,
|
|
|
|
|
|
|
|
Mixins: [
|
|
|
|
Components.Alpha,
|
|
|
|
Components.BlendMode,
|
|
|
|
Components.Depth,
|
|
|
|
Components.Flip,
|
|
|
|
Components.Origin,
|
|
|
|
Components.ScaleMode,
|
|
|
|
Components.ScrollFactor,
|
|
|
|
Components.Size,
|
|
|
|
Components.Texture,
|
|
|
|
Components.Tint,
|
|
|
|
Components.Transform,
|
|
|
|
Components.Visible,
|
|
|
|
ExternRender
|
|
|
|
],
|
|
|
|
|
|
|
|
initialize:
|
|
|
|
|
|
|
|
function Extern (scene)
|
|
|
|
{
|
|
|
|
GameObject.call(this, scene, 'Extern');
|
|
|
|
},
|
|
|
|
|
2018-11-20 11:02:19 +00:00
|
|
|
preUpdate: function ()
|
2018-10-29 23:07:30 +00:00
|
|
|
{
|
|
|
|
// override this!
|
2018-11-20 11:02:19 +00:00
|
|
|
// Arguments: time, delta
|
2018-10-29 23:07:30 +00:00
|
|
|
},
|
|
|
|
|
2018-11-20 11:02:19 +00:00
|
|
|
render: function ()
|
2018-10-29 23:07:30 +00:00
|
|
|
{
|
|
|
|
// override this!
|
2018-11-20 11:02:19 +00:00
|
|
|
// Arguments: renderer, camera, calcMatrix
|
2018-10-29 23:07:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = Extern;
|