@dcl/react-ecs 7.1.15 → 7.1.16-5048531850.commit-b8f8f29

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.
@@ -39,7 +39,7 @@ export type UiTexture = {
39
39
  /**
40
40
  * @public
41
41
  */
42
- export type TextureWrapType = 'repeat' | 'clamp' | 'mirror' | 'mirror-once';
42
+ export type TextureWrapType = 'repeat' | 'clamp' | 'mirror';
43
43
  /**
44
44
  * @public
45
45
  */
@@ -42,8 +42,7 @@ function parseTexture(texture) {
42
42
  const parseWrap = {
43
43
  repeat: 0 /* TextureWrapMode.TWM_REPEAT */,
44
44
  clamp: 1 /* TextureWrapMode.TWM_CLAMP */,
45
- mirror: 2 /* TextureWrapMode.TWM_MIRROR */,
46
- 'mirror-once': 3 /* TextureWrapMode.TWM_MIRROR_ONCE */
45
+ mirror: 2 /* TextureWrapMode.TWM_MIRROR */
47
46
  };
48
47
  const parseFilter = {
49
48
  point: 0 /* TextureFilterMode.TFM_POINT */,
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/react-ecs",
3
3
  "description": "Decentraland ECS",
4
- "version": "7.1.15",
4
+ "version": "7.1.16-5048531850.commit-b8f8f29",
5
5
  "author": "DCL",
6
6
  "bugs": "https://github.com/decentraland/js-sdk-toolchain/issues",
7
7
  "dependencies": {
8
- "@dcl/ecs": "7.1.15",
8
+ "@dcl/ecs": "7.1.16-5048531850.commit-b8f8f29",
9
9
  "react": "^18.2.0",
10
10
  "react-reconciler": "^0.29.0"
11
11
  },
@@ -39,5 +39,5 @@
39
39
  "tsconfig": "./tsconfig.json"
40
40
  },
41
41
  "types": "./dist/index.d.ts",
42
- "commit": "9ee4b849d8955bf05398a7622a863cf0979d718f"
42
+ "commit": "b8f8f290aef93650f8fcc1fb36492f3fee2c2b14"
43
43
  }