mirror of
https://github.com/photonstorm/phaser
synced 2024-12-24 12:03:36 +00:00
21 lines
627 B
JavaScript
21 lines
627 B
JavaScript
|
var Mesh = require('./Mesh');
|
||
|
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
|
||
|
var GetValue = require('../../utils/object/GetValue');
|
||
|
var BuildGameObject = require('../BuildGameObject');
|
||
|
|
||
|
var BuildFromConfig = function (state, config)
|
||
|
{
|
||
|
var key = GetAdvancedValue(config, 'key', null);
|
||
|
var frame = GetAdvancedValue(config, 'frame', null);
|
||
|
var vertices = GetValue(config, 'vertices', []);
|
||
|
var uv = GetValue(config, 'uv', []);
|
||
|
|
||
|
var mesh = new Mesh(state, 0, 0, vertices, uv, key, frame);
|
||
|
|
||
|
BuildGameObject(state, mesh, config);
|
||
|
|
||
|
return mesh;
|
||
|
};
|
||
|
|
||
|
module.exports = BuildFromConfig;
|