@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/main.js +9 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +9 -0
- package/dist/module.js.map +1 -1
- package/package.json +3 -3
- package/types/asset/AssetType.d.ts +3 -1
- package/types/texture/RenderTarget.d.ts +4 -0
package/dist/main.js
CHANGED
|
@@ -1654,6 +1654,14 @@ SystemInfo._initialize();
|
|
|
1654
1654
|
return this._height;
|
|
1655
1655
|
}
|
|
1656
1656
|
},
|
|
1657
|
+
{
|
|
1658
|
+
key: "colorTextures",
|
|
1659
|
+
get: /**
|
|
1660
|
+
* Render color textures.
|
|
1661
|
+
*/ function get() {
|
|
1662
|
+
return this._colorTextures;
|
|
1663
|
+
}
|
|
1664
|
+
},
|
|
1657
1665
|
{
|
|
1658
1666
|
key: "colorTextureCount",
|
|
1659
1667
|
get: /**
|
|
@@ -24153,6 +24161,7 @@ PrimitiveChunk.subMeshPool = new ReturnableObjectPool(SubMesh, 10);
|
|
|
24153
24161
|
/** AudioClip, include ogg, wav and mp3. */ AssetType["Audio"] = "Audio";
|
|
24154
24162
|
/** Project asset. */ AssetType["Project"] = "project";
|
|
24155
24163
|
/** PhysicsMaterial. */ AssetType["PhysicsMaterial"] = "PhysicsMaterial";
|
|
24164
|
+
/** RenderTarget. */ AssetType["RenderTarget"] = "RenderTarget";
|
|
24156
24165
|
return AssetType;
|
|
24157
24166
|
}({});
|
|
24158
24167
|
|