phaser/src/gameobjects/mesh/MeshCreator.js

42 lines
1.4 KiB
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +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 BuildGameObject = require('../BuildGameObject');
var GameObjectCreator = require('../GameObjectCreator');
2017-05-16 23:07:52 +00:00
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
var GetValue = require('../../utils/object/GetValue');
var Mesh = require('./Mesh');
2018-02-06 15:04:20 +00:00
/**
* Creates a new Mesh Game Object and returns it.
*
* Note: This method will only be available if the Mesh Game Object and WebGL support have been built into Phaser.
*
* @method Phaser.GameObjects.GameObjectCreator#mesh
* @since 3.0.0
*
* @param {object} config - [description]
*
* @return {Phaser.GameObjects.Mesh} The Game Object that was created.
*/
GameObjectCreator.register('mesh', function (config)
2017-05-16 23:07:52 +00:00
{
var key = GetAdvancedValue(config, 'key', null);
var frame = GetAdvancedValue(config, 'frame', null);
var vertices = GetValue(config, 'vertices', []);
2017-05-22 19:29:27 +00:00
var colors = GetValue(config, 'colors', []);
var alphas = GetValue(config, 'alphas', []);
2017-05-16 23:07:52 +00:00
var uv = GetValue(config, 'uv', []);
2018-01-23 19:29:47 +00:00
var mesh = new Mesh(this.scene, 0, 0, vertices, uv, colors, alphas, key, frame);
2017-05-16 23:07:52 +00:00
BuildGameObject(this.scene, mesh, config);
2017-05-16 23:07:52 +00:00
return mesh;
});
2018-02-06 15:04:20 +00:00
// When registering a factory function 'this' refers to the GameObjectCreator context.