@dcl/playground-assets 7.10.6-18360453790.commit-2ff55cb → 7.10.7-18377295679.commit-e7598c1

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.10.6-18360453790.commit-2ff55cb",
4
+ "version": "7.10.7-18377295679.commit-e7598c1",
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": "2ff55cbeb34156a809f1d8dcb4b3f27434d644f3"
38
+ "commit": "e7598c1acdb7c47c3b37c6d4c80a2a6de1a5455d"
39
39
  }
@@ -6014,7 +6014,6 @@ export declare namespace PBVideoPlayer {
6014
6014
  * an 'instant' transition (like using speed/time = 0)
6015
6015
  * * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
6016
6016
  * the holding entity transform).
6017
- * * The fov defines the Field of View of the virtual camera
6018
6017
  */
6019
6018
  /**
6020
6019
  * @public
@@ -6022,8 +6021,6 @@ export declare namespace PBVideoPlayer {
6022
6021
  export declare interface PBVirtualCamera {
6023
6022
  defaultTransition?: CameraTransition | undefined;
6024
6023
  lookAtEntity?: number | undefined;
6025
- /** default: 60 */
6026
- fov?: number | undefined;
6027
6024
  }
6028
6025
 
6029
6026
  /**
@@ -7840,7 +7837,7 @@ export declare interface TweenComponentDefinitionExtended extends LastWriteWinEl
7840
7837
  * @param entity - entity to apply the tween to
7841
7838
  * @param start - starting position vector
7842
7839
  * @param end - ending position vector
7843
- * @param duration - duration of the tween in seconds
7840
+ * @param duration - duration of the tween in milliseconds
7844
7841
  * @param easingFunction - easing function to use (defaults to EF_LINEAR)
7845
7842
  */
7846
7843
  setMove(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
@@ -7851,7 +7848,7 @@ export declare interface TweenComponentDefinitionExtended extends LastWriteWinEl
7851
7848
  * @param entity - entity to apply the tween to
7852
7849
  * @param start - starting scale vector
7853
7850
  * @param end - ending scale vector
7854
- * @param duration - duration of the tween in seconds
7851
+ * @param duration - duration of the tween in milliseconds
7855
7852
  * @param easingFunction - easing function to use (defaults to EF_LINEAR)
7856
7853
  */
7857
7854
  setScale(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
@@ -7862,7 +7859,7 @@ export declare interface TweenComponentDefinitionExtended extends LastWriteWinEl
7862
7859
  * @param entity - entity to apply the tween to
7863
7860
  * @param start - starting rotation quaternion
7864
7861
  * @param end - ending rotation quaternion
7865
- * @param duration - duration of the tween in seconds
7862
+ * @param duration - duration of the tween in milliseconds
7866
7863
  * @param easingFunction - easing function to use (defaults to EF_LINEAR)
7867
7864
  */
7868
7865
  setRotate(entity: Entity, start: PBQuaternion, end: PBQuaternion, duration: number, easingFunction?: EasingFunction): void;
@@ -7873,7 +7870,7 @@ export declare interface TweenComponentDefinitionExtended extends LastWriteWinEl
7873
7870
  * @param entity - entity to apply the tween to
7874
7871
  * @param start - starting UV coordinates
7875
7872
  * @param end - ending UV coordinates
7876
- * @param duration - duration of the tween in seconds
7873
+ * @param duration - duration of the tween in milliseconds
7877
7874
  * @param movementType - type of texture movement (defaults to TMT_OFFSET)
7878
7875
  * @param easingFunction - easing function to use (defaults to EF_LINEAR)
7879
7876
  */
@@ -7885,7 +7882,7 @@ export declare interface TweenComponentDefinitionExtended extends LastWriteWinEl
7885
7882
  * @param entity - entity to apply the tween to
7886
7883
  * @param direction - direction vector to move towards
7887
7884
  * @param speed - speed of movement per second
7888
- * @param duration - duration of the tween in seconds (defaults to 0 for infinite)
7885
+ * @param duration - duration of the tween in milliseconds (defaults to 0 for infinite)
7889
7886
  */
7890
7887
  setMoveContinuous(entity: Entity, direction: PBVector3, speed: number, duration?: number): void;
7891
7888
  /**
@@ -7895,7 +7892,7 @@ export declare interface TweenComponentDefinitionExtended extends LastWriteWinEl
7895
7892
  * @param entity - entity to apply the tween to
7896
7893
  * @param direction - rotation direction quaternion
7897
7894
  * @param speed - speed of rotation per second
7898
- * @param duration - duration of the tween in seconds (defaults to 0 for infinite)
7895
+ * @param duration - duration of the tween in milliseconds (defaults to 0 for infinite)
7899
7896
  */
7900
7897
  setRotateContinuous(entity: Entity, direction: PBQuaternion, speed: number, duration?: number): void;
7901
7898
  /**
@@ -7906,7 +7903,7 @@ export declare interface TweenComponentDefinitionExtended extends LastWriteWinEl
7906
7903
  * @param direction - direction vector for UV movement
7907
7904
  * @param speed - speed of UV movement per second
7908
7905
  * @param movementType - type of texture movement (defaults to TMT_OFFSET)
7909
- * @param duration - duration of the tween in seconds (defaults to 0 for infinite)
7906
+ * @param duration - duration of the tween in milliseconds (defaults to 0 for infinite)
7910
7907
  */
7911
7908
  setTextureMoveContinuous(entity: Entity, direction: PBVector2, speed: number, movementType?: TextureMovementType, duration?: number): void;
7912
7909
  }
@@ -59215,33 +59215,6 @@
59215
59215
  "endIndex": 3
59216
59216
  }
59217
59217
  },
59218
- {
59219
- "kind": "PropertySignature",
59220
- "canonicalReference": "@dcl/playground-assets!PBVirtualCamera#fov:member",
59221
- "docComment": "/**\n * default: 60\n */\n",
59222
- "excerptTokens": [
59223
- {
59224
- "kind": "Content",
59225
- "text": "fov?: "
59226
- },
59227
- {
59228
- "kind": "Content",
59229
- "text": "number | undefined"
59230
- },
59231
- {
59232
- "kind": "Content",
59233
- "text": ";"
59234
- }
59235
- ],
59236
- "isReadonly": false,
59237
- "isOptional": true,
59238
- "releaseTag": "Public",
59239
- "name": "fov",
59240
- "propertyTypeTokenRange": {
59241
- "startIndex": 1,
59242
- "endIndex": 2
59243
- }
59244
- },
59245
59218
  {
59246
59219
  "kind": "PropertySignature",
59247
59220
  "canonicalReference": "@dcl/playground-assets!PBVirtualCamera#lookAtEntity:member",
@@ -75289,7 +75262,7 @@
75289
75262
  {
75290
75263
  "kind": "MethodSignature",
75291
75264
  "canonicalReference": "@dcl/playground-assets!TweenComponentDefinitionExtended#setMove:member(1)",
75292
- "docComment": "/**\n * Creates or replaces a move tween component that animates an entity's position from start to end\n *\n * @param entity - entity to apply the tween to\n *\n * @param start - starting position vector\n *\n * @param end - ending position vector\n *\n * @param duration - duration of the tween in seconds\n *\n * @param easingFunction - easing function to use (defaults to EF_LINEAR)\n *\n * @public\n */\n",
75265
+ "docComment": "/**\n * Creates or replaces a move tween component that animates an entity's position from start to end\n *\n * @param entity - entity to apply the tween to\n *\n * @param start - starting position vector\n *\n * @param end - ending position vector\n *\n * @param duration - duration of the tween in milliseconds\n *\n * @param easingFunction - easing function to use (defaults to EF_LINEAR)\n *\n * @public\n */\n",
75293
75266
  "excerptTokens": [
75294
75267
  {
75295
75268
  "kind": "Content",
@@ -75402,7 +75375,7 @@
75402
75375
  {
75403
75376
  "kind": "MethodSignature",
75404
75377
  "canonicalReference": "@dcl/playground-assets!TweenComponentDefinitionExtended#setMoveContinuous:member(1)",
75405
- "docComment": "/**\n * Creates or replaces a continuous move tween component that moves an entity continuously in a direction\n *\n * @param entity - entity to apply the tween to\n *\n * @param direction - direction vector to move towards\n *\n * @param speed - speed of movement per second\n *\n * @param duration - duration of the tween in seconds (defaults to 0 for infinite)\n *\n * @public\n */\n",
75378
+ "docComment": "/**\n * Creates or replaces a continuous move tween component that moves an entity continuously in a direction\n *\n * @param entity - entity to apply the tween to\n *\n * @param direction - direction vector to move towards\n *\n * @param speed - speed of movement per second\n *\n * @param duration - duration of the tween in milliseconds (defaults to 0 for infinite)\n *\n * @public\n */\n",
75406
75379
  "excerptTokens": [
75407
75380
  {
75408
75381
  "kind": "Content",
@@ -75497,7 +75470,7 @@
75497
75470
  {
75498
75471
  "kind": "MethodSignature",
75499
75472
  "canonicalReference": "@dcl/playground-assets!TweenComponentDefinitionExtended#setRotate:member(1)",
75500
- "docComment": "/**\n * Creates or replaces a rotation tween component that animates an entity's rotation from start to end\n *\n * @param entity - entity to apply the tween to\n *\n * @param start - starting rotation quaternion\n *\n * @param end - ending rotation quaternion\n *\n * @param duration - duration of the tween in seconds\n *\n * @param easingFunction - easing function to use (defaults to EF_LINEAR)\n *\n * @public\n */\n",
75473
+ "docComment": "/**\n * Creates or replaces a rotation tween component that animates an entity's rotation from start to end\n *\n * @param entity - entity to apply the tween to\n *\n * @param start - starting rotation quaternion\n *\n * @param end - ending rotation quaternion\n *\n * @param duration - duration of the tween in milliseconds\n *\n * @param easingFunction - easing function to use (defaults to EF_LINEAR)\n *\n * @public\n */\n",
75501
75474
  "excerptTokens": [
75502
75475
  {
75503
75476
  "kind": "Content",
@@ -75610,7 +75583,7 @@
75610
75583
  {
75611
75584
  "kind": "MethodSignature",
75612
75585
  "canonicalReference": "@dcl/playground-assets!TweenComponentDefinitionExtended#setRotateContinuous:member(1)",
75613
- "docComment": "/**\n * Creates or replaces a continuous rotation tween component that rotates an entity continuously\n *\n * @param entity - entity to apply the tween to\n *\n * @param direction - rotation direction quaternion\n *\n * @param speed - speed of rotation per second\n *\n * @param duration - duration of the tween in seconds (defaults to 0 for infinite)\n *\n * @public\n */\n",
75586
+ "docComment": "/**\n * Creates or replaces a continuous rotation tween component that rotates an entity continuously\n *\n * @param entity - entity to apply the tween to\n *\n * @param direction - rotation direction quaternion\n *\n * @param speed - speed of rotation per second\n *\n * @param duration - duration of the tween in milliseconds (defaults to 0 for infinite)\n *\n * @public\n */\n",
75614
75587
  "excerptTokens": [
75615
75588
  {
75616
75589
  "kind": "Content",
@@ -75705,7 +75678,7 @@
75705
75678
  {
75706
75679
  "kind": "MethodSignature",
75707
75680
  "canonicalReference": "@dcl/playground-assets!TweenComponentDefinitionExtended#setScale:member(1)",
75708
- "docComment": "/**\n * Creates or replaces a scale tween component that animates an entity's scale from start to end\n *\n * @param entity - entity to apply the tween to\n *\n * @param start - starting scale vector\n *\n * @param end - ending scale vector\n *\n * @param duration - duration of the tween in seconds\n *\n * @param easingFunction - easing function to use (defaults to EF_LINEAR)\n *\n * @public\n */\n",
75681
+ "docComment": "/**\n * Creates or replaces a scale tween component that animates an entity's scale from start to end\n *\n * @param entity - entity to apply the tween to\n *\n * @param start - starting scale vector\n *\n * @param end - ending scale vector\n *\n * @param duration - duration of the tween in milliseconds\n *\n * @param easingFunction - easing function to use (defaults to EF_LINEAR)\n *\n * @public\n */\n",
75709
75682
  "excerptTokens": [
75710
75683
  {
75711
75684
  "kind": "Content",
@@ -75818,7 +75791,7 @@
75818
75791
  {
75819
75792
  "kind": "MethodSignature",
75820
75793
  "canonicalReference": "@dcl/playground-assets!TweenComponentDefinitionExtended#setTextureMove:member(1)",
75821
- "docComment": "/**\n * Creates or replaces a texture move tween component that animates texture UV coordinates from start to end\n *\n * @param entity - entity to apply the tween to\n *\n * @param start - starting UV coordinates\n *\n * @param end - ending UV coordinates\n *\n * @param duration - duration of the tween in seconds\n *\n * @param movementType - type of texture movement (defaults to TMT_OFFSET)\n *\n * @param easingFunction - easing function to use (defaults to EF_LINEAR)\n *\n * @public\n */\n",
75794
+ "docComment": "/**\n * Creates or replaces a texture move tween component that animates texture UV coordinates from start to end\n *\n * @param entity - entity to apply the tween to\n *\n * @param start - starting UV coordinates\n *\n * @param end - ending UV coordinates\n *\n * @param duration - duration of the tween in milliseconds\n *\n * @param movementType - type of texture movement (defaults to TMT_OFFSET)\n *\n * @param easingFunction - easing function to use (defaults to EF_LINEAR)\n *\n * @public\n */\n",
75822
75795
  "excerptTokens": [
75823
75796
  {
75824
75797
  "kind": "Content",
@@ -75948,7 +75921,7 @@
75948
75921
  {
75949
75922
  "kind": "MethodSignature",
75950
75923
  "canonicalReference": "@dcl/playground-assets!TweenComponentDefinitionExtended#setTextureMoveContinuous:member(1)",
75951
- "docComment": "/**\n * Creates or replaces a continuous texture move tween component that moves texture UV coordinates continuously\n *\n * @param entity - entity to apply the tween to\n *\n * @param direction - direction vector for UV movement\n *\n * @param speed - speed of UV movement per second\n *\n * @param movementType - type of texture movement (defaults to TMT_OFFSET)\n *\n * @param duration - duration of the tween in seconds (defaults to 0 for infinite)\n *\n * @public\n */\n",
75924
+ "docComment": "/**\n * Creates or replaces a continuous texture move tween component that moves texture UV coordinates continuously\n *\n * @param entity - entity to apply the tween to\n *\n * @param direction - direction vector for UV movement\n *\n * @param speed - speed of UV movement per second\n *\n * @param movementType - type of texture movement (defaults to TMT_OFFSET)\n *\n * @param duration - duration of the tween in milliseconds (defaults to 0 for infinite)\n *\n * @public\n */\n",
75952
75925
  "excerptTokens": [
75953
75926
  {
75954
75927
  "kind": "Content",
@@ -3500,7 +3500,6 @@ export namespace PBVideoPlayer {
3500
3500
  export interface PBVirtualCamera {
3501
3501
  // (undocumented)
3502
3502
  defaultTransition?: CameraTransition | undefined;
3503
- fov?: number | undefined;
3504
3503
  // (undocumented)
3505
3504
  lookAtEntity?: number | undefined;
3506
3505
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/playground-assets",
3
3
  "description": "",
4
- "version": "7.10.6-18360453790.commit-2ff55cb",
4
+ "version": "7.10.7-18377295679.commit-e7598c1",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
- "@dcl/js-runtime": "7.10.6-18360453790.commit-2ff55cb",
8
- "@dcl/sdk": "7.10.6-18360453790.commit-2ff55cb"
7
+ "@dcl/js-runtime": "7.10.7-18377295679.commit-e7598c1",
8
+ "@dcl/sdk": "7.10.7-18377295679.commit-e7598c1"
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": "2ff55cbeb34156a809f1d8dcb4b3f27434d644f3"
35
+ "commit": "e7598c1acdb7c47c3b37c6d4c80a2a6de1a5455d"
36
36
  }