@galacean/engine-loader 1.1.0-beta.24 → 1.1.0-beta.27

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-loader",
3
- "version": "1.1.0-beta.24",
3
+ "version": "1.1.0-beta.27",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -15,10 +15,10 @@
15
15
  "types/**/*"
16
16
  ],
17
17
  "dependencies": {
18
- "@galacean/engine-core": "1.1.0-beta.24",
19
- "@galacean/engine-draco": "1.1.0-beta.24",
20
- "@galacean/engine-rhi-webgl": "1.1.0-beta.24",
21
- "@galacean/engine-math": "1.1.0-beta.24"
18
+ "@galacean/engine-core": "1.1.0-beta.27",
19
+ "@galacean/engine-math": "1.1.0-beta.27",
20
+ "@galacean/engine-rhi-webgl": "1.1.0-beta.27",
21
+ "@galacean/engine-draco": "1.1.0-beta.27"
22
22
  },
23
23
  "scripts": {
24
24
  "b:types": "tsc"
@@ -1,4 +1,4 @@
1
- import { TextureFormat } from "@galacean/engine-core";
1
+ import { TextureFilterMode, TextureFormat, TextureWrapMode } from "@galacean/engine-core";
2
2
  /**
3
3
  * Texture2D loader params interface.
4
4
  */
@@ -7,4 +7,12 @@ export interface Texture2DParams {
7
7
  format: TextureFormat;
8
8
  /** Whether to use multi-level texture, default is true. */
9
9
  mipmap: boolean;
10
+ /** Wrapping mode for texture coordinate S. */
11
+ wrapModeU: TextureWrapMode;
12
+ /** Wrapping mode for texture coordinate T. */
13
+ wrapModeV: TextureWrapMode;
14
+ /** Filter mode for texture. */
15
+ filterMode: TextureFilterMode;
16
+ /** Anisotropic level for texture. */
17
+ anisoLevel: number;
10
18
  }