application.25127.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. System.register([], function (_export, _context) {
  2. "use strict";
  3. var cc, Application;
  4. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  5. function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
  6. function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
  7. return {
  8. setters: [],
  9. execute: function () {
  10. _export("Application", Application = /*#__PURE__*/function () {
  11. function Application() {
  12. _classCallCheck(this, Application);
  13. this.settingsPath = 'src/settings.639f2.json';
  14. this.showFPS = false;
  15. }
  16. _createClass(Application, [{
  17. key: "init",
  18. value: function init(engine) {
  19. cc = engine;
  20. cc.game.onPostBaseInitDelegate.add(this.onPostInitBase.bind(this));
  21. cc.game.onPostSubsystemInitDelegate.add(this.onPostSystemInit.bind(this));
  22. }
  23. }, {
  24. key: "onPostInitBase",
  25. value: function onPostInitBase() {// cc.settings.overrideSettings('assets', 'server', '');
  26. // do custom logic
  27. }
  28. }, {
  29. key: "onPostSystemInit",
  30. value: function onPostSystemInit() {// do custom logic
  31. }
  32. }, {
  33. key: "start",
  34. value: function start() {
  35. return cc.game.init({
  36. debugMode: false ? cc.DebugMode.INFO : cc.DebugMode.ERROR,
  37. settingsPath: this.settingsPath,
  38. overrideSettings: {
  39. // assets: {
  40. // preloadBundles: [{ bundle: 'main', version: 'xxx' }],
  41. // }
  42. profiling: {
  43. showFPS: this.showFPS
  44. }
  45. }
  46. }).then(function () {
  47. return cc.game.run();
  48. });
  49. }
  50. }]);
  51. return Application;
  52. }());
  53. }
  54. };
  55. });