@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galacean/engine-core",
3
- "version": "2.0.0-alpha.13",
3
+ "version": "2.0.0-alpha.14",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -18,10 +18,10 @@
18
18
  "types/**/*"
19
19
  ],
20
20
  "dependencies": {
21
- "@galacean/engine-math": "2.0.0-alpha.13"
21
+ "@galacean/engine-math": "2.0.0-alpha.14"
22
22
  },
23
23
  "devDependencies": {
24
- "@galacean/engine-design": "2.0.0-alpha.13"
24
+ "@galacean/engine-design": "2.0.0-alpha.14"
25
25
  },
26
26
  "scripts": {
27
27
  "b:types": "tsc"
@@ -51,5 +51,7 @@ export declare enum AssetType {
51
51
  /** Project asset. */
52
52
  Project = "project",
53
53
  /** PhysicsMaterial. */
54
- PhysicsMaterial = "PhysicsMaterial"
54
+ PhysicsMaterial = "PhysicsMaterial",
55
+ /** RenderTarget. */
56
+ RenderTarget = "RenderTarget"
55
57
  }
@@ -26,6 +26,10 @@ export declare class RenderTarget extends GraphicsResource {
26
26
  * Render target height.
27
27
  */
28
28
  get height(): number;
29
+ /**
30
+ * Render color textures.
31
+ */
32
+ get colorTextures(): ReadonlyArray<Texture>;
29
33
  /**
30
34
  * Render color texture count.
31
35
  */