d7f6fa84-f8db-4486-8e5d-4bfc666edd59.js 741 B

12345678910111213141516171819
  1. "use strict";
  2. cc._RF.push(module, 'd7f6fqE+NtEho5dS/xmbt1Z', 'Constants');
  3. // lightMVC/core/Constants.ts
  4. "use strict";
  5. Object.defineProperty(exports, "__esModule", { value: true });
  6. exports.OPEN_VIEW_OPTION = void 0;
  7. /** 打开view选项枚举 */
  8. var OPEN_VIEW_OPTION;
  9. (function (OPEN_VIEW_OPTION) {
  10. /** 固定UI层,与其它ui分开管理,需要设置zOrder */
  11. OPEN_VIEW_OPTION[OPEN_VIEW_OPTION["LAYER"] = 0] = "LAYER";
  12. /** 叠加在其他view上 */
  13. OPEN_VIEW_OPTION[OPEN_VIEW_OPTION["OVERLAY"] = 1] = "OVERLAY";
  14. /** 独立打开,关闭其他view */
  15. OPEN_VIEW_OPTION[OPEN_VIEW_OPTION["SINGLE"] = 2] = "SINGLE";
  16. })(OPEN_VIEW_OPTION = exports.OPEN_VIEW_OPTION || (exports.OPEN_VIEW_OPTION = {}));
  17. cc._RF.pop();