@galacean/engine-core 2.0.0-alpha.13 → 2.0.0-alpha.14

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/module.js CHANGED
@@ -1650,6 +1650,14 @@ SystemInfo._initialize();
1650
1650
  return this._height;
1651
1651
  }
1652
1652
  },
1653
+ {
1654
+ key: "colorTextures",
1655
+ get: /**
1656
+ * Render color textures.
1657
+ */ function get() {
1658
+ return this._colorTextures;
1659
+ }
1660
+ },
1653
1661
  {
1654
1662
  key: "colorTextureCount",
1655
1663
  get: /**
@@ -24149,6 +24157,7 @@ PrimitiveChunk.subMeshPool = new ReturnableObjectPool(SubMesh, 10);
24149
24157
  /** AudioClip, include ogg, wav and mp3. */ AssetType["Audio"] = "Audio";
24150
24158
  /** Project asset. */ AssetType["Project"] = "project";
24151
24159
  /** PhysicsMaterial. */ AssetType["PhysicsMaterial"] = "PhysicsMaterial";
24160
+ /** RenderTarget. */ AssetType["RenderTarget"] = "RenderTarget";
24152
24161
  return AssetType;
24153
24162
  }({});
24154
24163