phaser4-rex-plugins
Version:
11 lines (8 loc) • 327 B
JavaScript
import Pinch from './Pinch.js';
import ObjectFactory from '../ObjectFactory.js';
import SetValue from '../../../plugins/utils/object/SetValue.js';
ObjectFactory.register('pinch', function (config) {
return new Pinch(this.scene, config);
});
SetValue(window, 'RexPlugins.UI.Pinch', Pinch);
export default Pinch;