mirror of
https://github.com/photonstorm/phaser
synced 2024-12-23 11:33:28 +00:00
d804e056ed
This is one monster update.
23 lines
793 B
JavaScript
23 lines
793 B
JavaScript
var Mesh = require('./Mesh');
|
|
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
|
|
var GetValue = require('../../utils/object/GetValue');
|
|
var BuildGameObject = require('../BuildGameObject');
|
|
|
|
var MeshCreator = function (scene, config)
|
|
{
|
|
var key = GetAdvancedValue(config, 'key', null);
|
|
var frame = GetAdvancedValue(config, 'frame', null);
|
|
var vertices = GetValue(config, 'vertices', []);
|
|
var indices = GetValue(config, 'indices', []);
|
|
var colors = GetValue(config, 'colors', []);
|
|
var alphas = GetValue(config, 'alphas', []);
|
|
var uv = GetValue(config, 'uv', []);
|
|
|
|
var mesh = new Mesh(scene, 0, 0, vertices, uv, indices, colors, alphas, key, frame);
|
|
|
|
BuildGameObject(scene, mesh, config);
|
|
|
|
return mesh;
|
|
};
|
|
|
|
module.exports = MeshCreator;
|