@dcl/playground-assets 7.10.5 → 7.10.6-18360453790.commit-2ff55cb

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.
@@ -1888,6 +1888,22 @@ export namespace Move {
1888
1888
  export function encode(message: Move, writer?: _m0.Writer): _m0.Writer;
1889
1889
  }
1890
1890
 
1891
+ // @public (undocumented)
1892
+ export interface MoveContinuous {
1893
+ // (undocumented)
1894
+ direction: PBVector3 | undefined;
1895
+ // (undocumented)
1896
+ speed: number;
1897
+ }
1898
+
1899
+ // @public (undocumented)
1900
+ export namespace MoveContinuous {
1901
+ // (undocumented)
1902
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): MoveContinuous;
1903
+ // (undocumented)
1904
+ export function encode(message: MoveContinuous, writer?: _m0.Writer): _m0.Writer;
1905
+ }
1906
+
1891
1907
  // Warning: (ae-missing-release-tag) "Name" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
1892
1908
  //
1893
1909
  // @public (undocumented)
@@ -3107,6 +3123,15 @@ export interface PBTween {
3107
3123
  } | {
3108
3124
  $case: "textureMove";
3109
3125
  textureMove: TextureMove;
3126
+ } | {
3127
+ $case: "rotateContinuous";
3128
+ rotateContinuous: RotateContinuous;
3129
+ } | {
3130
+ $case: "moveContinuous";
3131
+ moveContinuous: MoveContinuous;
3132
+ } | {
3133
+ $case: "textureMoveContinuous";
3134
+ textureMoveContinuous: TextureMoveContinuous;
3110
3135
  } | undefined;
3111
3136
  playing?: boolean | undefined;
3112
3137
  }
@@ -3475,6 +3500,7 @@ export namespace PBVideoPlayer {
3475
3500
  export interface PBVirtualCamera {
3476
3501
  // (undocumented)
3477
3502
  defaultTransition?: CameraTransition | undefined;
3503
+ fov?: number | undefined;
3478
3504
  // (undocumented)
3479
3505
  lookAtEntity?: number | undefined;
3480
3506
  }
@@ -3970,6 +3996,22 @@ export namespace Rotate {
3970
3996
  export function encode(message: Rotate, writer?: _m0.Writer): _m0.Writer;
3971
3997
  }
3972
3998
 
3999
+ // @public (undocumented)
4000
+ export interface RotateContinuous {
4001
+ // (undocumented)
4002
+ direction: PBQuaternion | undefined;
4003
+ // (undocumented)
4004
+ speed: number;
4005
+ }
4006
+
4007
+ // @public (undocumented)
4008
+ export namespace RotateContinuous {
4009
+ // (undocumented)
4010
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): RotateContinuous;
4011
+ // (undocumented)
4012
+ export function encode(message: RotateContinuous, writer?: _m0.Writer): _m0.Writer;
4013
+ }
4014
+
3973
4015
  // Warning: (ae-missing-release-tag) "RPCSendableMessage" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
3974
4016
  //
3975
4017
  // @public (undocumented)
@@ -4260,6 +4302,23 @@ export namespace TextureMove {
4260
4302
  export function encode(message: TextureMove, writer?: _m0.Writer): _m0.Writer;
4261
4303
  }
4262
4304
 
4305
+ // @public (undocumented)
4306
+ export interface TextureMoveContinuous {
4307
+ // (undocumented)
4308
+ direction: PBVector2 | undefined;
4309
+ movementType?: TextureMovementType | undefined;
4310
+ // (undocumented)
4311
+ speed: number;
4312
+ }
4313
+
4314
+ // @public (undocumented)
4315
+ export namespace TextureMoveContinuous {
4316
+ // (undocumented)
4317
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): TextureMoveContinuous;
4318
+ // (undocumented)
4319
+ export function encode(message: TextureMoveContinuous, writer?: _m0.Writer): _m0.Writer;
4320
+ }
4321
+
4263
4322
  // @public (undocumented)
4264
4323
  export const enum TextureMovementType {
4265
4324
  TMT_OFFSET = 0,
@@ -4433,6 +4492,13 @@ export const Tween: TweenComponentDefinitionExtended;
4433
4492
  // @public (undocumented)
4434
4493
  export interface TweenComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBTween> {
4435
4494
  Mode: TweenHelper;
4495
+ setMove(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
4496
+ setMoveContinuous(entity: Entity, direction: PBVector3, speed: number, duration?: number): void;
4497
+ setRotate(entity: Entity, start: PBQuaternion, end: PBQuaternion, duration: number, easingFunction?: EasingFunction): void;
4498
+ setRotateContinuous(entity: Entity, direction: PBQuaternion, speed: number, duration?: number): void;
4499
+ setScale(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
4500
+ setTextureMove(entity: Entity, start: PBVector2, end: PBVector2, duration: number, movementType?: TextureMovementType, easingFunction?: EasingFunction): void;
4501
+ setTextureMoveContinuous(entity: Entity, direction: PBVector2, speed: number, movementType?: TextureMovementType, duration?: number): void;
4436
4502
  }
4437
4503
 
4438
4504
  // @public (undocumented)
@@ -4440,11 +4506,17 @@ export interface TweenHelper {
4440
4506
  // (undocumented)
4441
4507
  Move: (move: Move) => PBTween['mode'];
4442
4508
  // (undocumented)
4509
+ MoveContinuous: (move: MoveContinuous) => PBTween['mode'];
4510
+ // (undocumented)
4443
4511
  Rotate: (rotate: Rotate) => PBTween['mode'];
4444
4512
  // (undocumented)
4513
+ RotateContinuous: (rotate: RotateContinuous) => PBTween['mode'];
4514
+ // (undocumented)
4445
4515
  Scale: (scale: Scale) => PBTween['mode'];
4446
4516
  // (undocumented)
4447
4517
  TextureMove: (textureMove: TextureMove) => PBTween['mode'];
4518
+ // (undocumented)
4519
+ TextureMoveContinuous: (textureMove: TextureMoveContinuous) => PBTween['mode'];
4448
4520
  }
4449
4521
 
4450
4522
  // @public (undocumented)
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/playground-assets",
3
3
  "description": "",
4
- "version": "7.10.5",
4
+ "version": "7.10.6-18360453790.commit-2ff55cb",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
- "@dcl/js-runtime": "7.10.5",
8
- "@dcl/sdk": "7.10.5"
7
+ "@dcl/js-runtime": "7.10.6-18360453790.commit-2ff55cb",
8
+ "@dcl/sdk": "7.10.6-18360453790.commit-2ff55cb"
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": "e0bb8d6f8ff5e9b69ba25bf8309a0b36a7f48d61"
35
+ "commit": "2ff55cbeb34156a809f1d8dcb4b3f27434d644f3"
36
36
  }