web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
828 B

  1. "use strict";
  2. exports.__esModule = true;
  3. exports.default = void 0;
  4. var _namespace = _interopRequireDefault(require("./namespace"));
  5. var _types = require("./types");
  6. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  7. function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
  8. var Universal =
  9. /*#__PURE__*/
  10. function (_Namespace) {
  11. _inheritsLoose(Universal, _Namespace);
  12. function Universal(opts) {
  13. var _this;
  14. _this = _Namespace.call(this, opts) || this;
  15. _this.type = _types.UNIVERSAL;
  16. _this.value = '*';
  17. return _this;
  18. }
  19. return Universal;
  20. }(_namespace.default);
  21. exports.default = Universal;
  22. module.exports = exports.default;