@galacean/effects-threejs 1.4.5-alpha.0 → 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.5-alpha.0
6
+ * Version: v1.4.5
7
7
  */
8
8
 
9
9
  'use strict';
@@ -720,7 +720,7 @@ function isValidFontFamily(fontFamily) {
720
720
  * Name: @galacean/effects-specification
721
721
  * Description: Galacean Effects JSON Specification
722
722
  * Author: Ant Group CO., Ltd.
723
- * Version: v1.3.0-alpha.0
723
+ * Version: v1.2.0
724
724
  */
725
725
 
726
726
  /*********************************************/
@@ -21901,7 +21901,7 @@ var filters = {
21901
21901
  * Name: @galacean/effects-specification
21902
21902
  * Description: Galacean Effects JSON Specification
21903
21903
  * Author: Ant Group CO., Ltd.
21904
- * Version: v1.3.0-alpha.0
21904
+ * Version: v1.2.0
21905
21905
  */
21906
21906
 
21907
21907
  /*********************************************/
@@ -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.5-alpha.0";
27425
+ var version = "1.4.5";
27422
27426
  logger.info('THREEJS plugin version: ' + version);
27423
27427
 
27424
27428
  exports.AbstractPlugin = AbstractPlugin;