UNPKG

phaser3-rex-plugins

Version:
16 lines (12 loc) 376 B
import Make from '../../Make.js'; var CreateChild = function (scene, data, subKey, view, styles, customBuilders) { var childData = data[subKey]; if (!childData) { return undefined; } var child; child = Make(scene, childData, view, styles, customBuilders); data[subKey] = child; return child; } export default CreateChild;