@dcl/playground-assets 7.22.4 → 7.22.5-24779418349.commit-111fd7e

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.
@@ -97,11 +97,6 @@ declare module "~system/EngineApi" {
97
97
  b: number;
98
98
  a: number;
99
99
  }
100
- /** A range of Color4 values. Randomized or lerped between start and end. */
101
- export interface ColorRange {
102
- start: Color4 | undefined;
103
- end: Color4 | undefined;
104
- }
105
100
 
106
101
  // Function declaration section
107
102
  export interface ECS6Color4 {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcl/sdk",
3
3
  "description": "",
4
- "version": "7.22.4",
4
+ "version": "7.22.5-24779418349.commit-111fd7e",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
7
  "@dcl/ecs": "file:../ecs",
@@ -35,5 +35,5 @@
35
35
  },
36
36
  "types": "./index.d.ts",
37
37
  "typings": "./index.d.ts",
38
- "commit": "1309a552442670f22b64ad4cea1d88136188ad2f"
38
+ "commit": "111fd7e0b0b0fff32756dcb79c342b97a2565a45"
39
39
  }
@@ -7,8 +7,7 @@ import {
7
7
  InputAction,
8
8
  PBPointerEvents_Entry,
9
9
  PointerEvents,
10
- PointerEventType,
11
- InteractionType
10
+ PointerEventType
12
11
  } from '@dcl/sdk/ecs'
13
12
 
14
13
  // Cube factory
@@ -30,10 +29,8 @@ createCube(15, 1, 15, [
30
29
  button: InputAction.IA_PRIMARY,
31
30
  hoverText: 'PrimaryDown',
32
31
  maxDistance: 5,
33
- showFeedback: true,
34
- priority: 0
35
- },
36
- interactionType: InteractionType.CURSOR
32
+ showFeedback: true
33
+ }
37
34
  }
38
35
  ])
39
36
 
@@ -44,11 +41,9 @@ createCube(13, 1, 15, [
44
41
  button: InputAction.IA_SECONDARY,
45
42
  hoverText: 'Secondary Up',
46
43
  maxDistance: 5,
47
- showFeedback: true,
48
- priority: 0
49
- },
50
- interactionType: InteractionType.CURSOR
44
+ showFeedback: true
51
45
  }
46
+ }
52
47
  ])
53
48
 
54
49
  createCube(11, 1, 15, [
@@ -58,9 +53,7 @@ createCube(11, 1, 15, [
58
53
  button: InputAction.IA_ANY,
59
54
  hoverText: 'Infinity Hover',
60
55
  maxDistance: 10000000,
61
- showFeedback: true,
62
- priority: 0
63
- },
64
- interactionType: InteractionType.PROXIMITY
56
+ showFeedback: true
57
+ }
65
58
  }
66
59
  ])