@galacean/effects-threejs 1.4.4 → 1.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@
3
3
  * Description: Galacean Effects runtime threejs plugin for the web
4
4
  * Author: Ant Group CO., Ltd.
5
5
  * Contributors: 燃然,飂兮,十弦,云垣,茂安,意绮
6
- * Version: v1.4.4
6
+ * Version: v1.4.5
7
7
  */
8
8
 
9
9
  'use strict';
@@ -25665,7 +25665,7 @@ var Composition = /** @class */ (function () {
25665
25665
  }());
25666
25666
 
25667
25667
  /**
25668
- * Engine 基类,负责维护所有 GPU 资源的销毁
25668
+ * Engine 基类,负责维护所有 GPU 资源的管理及销毁
25669
25669
  */
25670
25670
  var Engine = /** @class */ (function () {
25671
25671
  function Engine() {
@@ -25675,6 +25675,10 @@ var Engine = /** @class */ (function () {
25675
25675
  this.geometries = [];
25676
25676
  this.meshes = [];
25677
25677
  this.renderPasses = [];
25678
+ /**
25679
+ * 渲染过程中错误队列
25680
+ */
25681
+ this.renderErrors = new Set();
25678
25682
  }
25679
25683
  Engine.prototype.addTexture = function (tex) {
25680
25684
  if (this.destroyed) {
@@ -27418,7 +27422,7 @@ Geometry.create = function (engine, options) {
27418
27422
  Mesh.create = function (engine, props) {
27419
27423
  return new ThreeMesh(engine, props);
27420
27424
  };
27421
- var version = "1.4.4";
27425
+ var version = "1.4.5";
27422
27426
  logger.info('THREEJS plugin version: ' + version);
27423
27427
 
27424
27428
  exports.AbstractPlugin = AbstractPlugin;