@dcl/playground-assets 7.4.8-8332801538.commit-1e8de58 → 7.4.10-8392909116.commit-6487246

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcl/sdk",
3
3
  "description": "",
4
- "version": "7.4.8-8332801538.commit-1e8de58",
4
+ "version": "7.4.10-8392909116.commit-6487246",
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": "1e8de58e5660b4247319ca8594821cd31e8e2e9a"
38
+ "commit": "64872460277fc8eeaacd25ac366eb9e22195dec5"
39
39
  }
@@ -1487,6 +1487,12 @@ export declare function createInputSystem(engine: IEngine): IInputSystem;
1487
1487
  */
1488
1488
  export declare function createPointerEventsSystem(engine: IEngine, inputSystem: IInputSystem): PointerEventsSystem;
1489
1489
 
1490
+ /**
1491
+ * @public
1492
+ * @returns tween helper to be used on the scene
1493
+ */
1494
+ export declare function createTweenSystem(engine: IEngine): TweenSystem;
1495
+
1490
1496
  /**
1491
1497
  * Transform parenting: cyclic dependency checker
1492
1498
  * It checks only in modified Transforms
@@ -1989,6 +1995,7 @@ export declare type GSetComponentGetter<T extends GrowOnlyValueSetComponentDefin
1989
1995
  * @public
1990
1996
  */
1991
1997
  export declare interface IEngine {
1998
+ _id: number;
1992
1999
  /**
1993
2000
  * @public
1994
2001
  * Increment the used entity counter and return the next one.
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.42.3"
8
+ "packageVersion": "7.43.0"
9
9
  }
10
10
  ]
11
11
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "metadata": {
3
3
  "toolPackage": "@microsoft/api-extractor",
4
- "toolVersion": "7.42.3",
4
+ "toolVersion": "7.43.0",
5
5
  "schemaVersion": 1011,
6
6
  "oldestForwardsCompatibleVersion": 1001,
7
7
  "tsdocConfig": {
@@ -14805,6 +14805,53 @@
14805
14805
  ],
14806
14806
  "name": "createPointerEventsSystem"
14807
14807
  },
14808
+ {
14809
+ "kind": "Function",
14810
+ "canonicalReference": "@dcl/playground-assets!createTweenSystem:function(1)",
14811
+ "docComment": "/**\n * @returns tween helper to be used on the scene\n *\n * @public\n */\n",
14812
+ "excerptTokens": [
14813
+ {
14814
+ "kind": "Content",
14815
+ "text": "export declare function createTweenSystem(engine: "
14816
+ },
14817
+ {
14818
+ "kind": "Reference",
14819
+ "text": "IEngine",
14820
+ "canonicalReference": "@dcl/playground-assets!IEngine:interface"
14821
+ },
14822
+ {
14823
+ "kind": "Content",
14824
+ "text": "): "
14825
+ },
14826
+ {
14827
+ "kind": "Reference",
14828
+ "text": "TweenSystem",
14829
+ "canonicalReference": "@dcl/playground-assets!TweenSystem:type"
14830
+ },
14831
+ {
14832
+ "kind": "Content",
14833
+ "text": ";"
14834
+ }
14835
+ ],
14836
+ "fileUrlPath": "../ecs/dist/systems/tween.d.ts",
14837
+ "returnTypeTokenRange": {
14838
+ "startIndex": 3,
14839
+ "endIndex": 4
14840
+ },
14841
+ "releaseTag": "Public",
14842
+ "overloadIndex": 1,
14843
+ "parameters": [
14844
+ {
14845
+ "parameterName": "engine",
14846
+ "parameterTypeTokenRange": {
14847
+ "startIndex": 1,
14848
+ "endIndex": 2
14849
+ },
14850
+ "isOptional": false
14851
+ }
14852
+ ],
14853
+ "name": "createTweenSystem"
14854
+ },
14808
14855
  {
14809
14856
  "kind": "Function",
14810
14857
  "canonicalReference": "@dcl/playground-assets!cyclicParentingChecker:function(1)",
@@ -18899,6 +18946,33 @@
18899
18946
  "name": "IEngine",
18900
18947
  "preserveMemberOrder": false,
18901
18948
  "members": [
18949
+ {
18950
+ "kind": "PropertySignature",
18951
+ "canonicalReference": "@dcl/playground-assets!IEngine#_id:member",
18952
+ "docComment": "",
18953
+ "excerptTokens": [
18954
+ {
18955
+ "kind": "Content",
18956
+ "text": "_id: "
18957
+ },
18958
+ {
18959
+ "kind": "Content",
18960
+ "text": "number"
18961
+ },
18962
+ {
18963
+ "kind": "Content",
18964
+ "text": ";"
18965
+ }
18966
+ ],
18967
+ "isReadonly": false,
18968
+ "isOptional": false,
18969
+ "releaseTag": "Public",
18970
+ "name": "_id",
18971
+ "propertyTypeTokenRange": {
18972
+ "startIndex": 1,
18973
+ "endIndex": 2
18974
+ }
18975
+ },
18902
18976
  {
18903
18977
  "kind": "MethodSignature",
18904
18978
  "canonicalReference": "@dcl/playground-assets!IEngine#addEntity:member(1)",
@@ -751,6 +751,9 @@ export function createInputSystem(engine: IEngine): IInputSystem;
751
751
  // @public
752
752
  export function createPointerEventsSystem(engine: IEngine, inputSystem: IInputSystem): PointerEventsSystem;
753
753
 
754
+ // @public (undocumented)
755
+ export function createTweenSystem(engine: IEngine): TweenSystem;
756
+
754
757
  // Warning: (tsdoc-code-fence-closing-syntax) Unexpected characters after closing delimiter for code fence
755
758
  // Warning: (tsdoc-code-span-missing-delimiter) The code span is missing its closing backtick
756
759
  // Warning: (tsdoc-undefined-tag) The TSDoc tag "@params" is not defined in this configuration
@@ -1158,6 +1161,8 @@ export interface IEngine {
1158
1161
  // @alpha
1159
1162
  getEntityOrNullByName(label: string): Entity | null;
1160
1163
  getEntityState(entity: Entity): EntityState;
1164
+ // (undocumented)
1165
+ _id: number;
1161
1166
  readonly PlayerEntity: Entity;
1162
1167
  registerComponentDefinition<T>(componentName: string, componentDefinition: ComponentDefinition<T>): ComponentDefinition<T>;
1163
1168
  // (undocumented)
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/playground-assets",
3
3
  "description": "",
4
- "version": "7.4.8-8332801538.commit-1e8de58",
4
+ "version": "7.4.10-8392909116.commit-6487246",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
- "@dcl/js-runtime": "7.4.8-8332801538.commit-1e8de58",
8
- "@dcl/sdk": "7.4.8-8332801538.commit-1e8de58"
7
+ "@dcl/js-runtime": "7.4.10-8392909116.commit-6487246",
8
+ "@dcl/sdk": "7.4.10-8392909116.commit-6487246"
9
9
  },
10
10
  "devDependencies": {
11
11
  "@microsoft/api-extractor": "^7.33.8"
@@ -32,5 +32,5 @@
32
32
  },
33
33
  "types": "./dist/index.d.ts",
34
34
  "typings": "./dist/index.d.ts",
35
- "commit": "1e8de58e5660b4247319ca8594821cd31e8e2e9a"
35
+ "commit": "64872460277fc8eeaacd25ac366eb9e22195dec5"
36
36
  }