@dcl/playground-assets 7.10.5 → 7.10.6-18360040798.commit-8d5d559

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
  }
@@ -3970,6 +3995,22 @@ export namespace Rotate {
3970
3995
  export function encode(message: Rotate, writer?: _m0.Writer): _m0.Writer;
3971
3996
  }
3972
3997
 
3998
+ // @public (undocumented)
3999
+ export interface RotateContinuous {
4000
+ // (undocumented)
4001
+ direction: PBQuaternion | undefined;
4002
+ // (undocumented)
4003
+ speed: number;
4004
+ }
4005
+
4006
+ // @public (undocumented)
4007
+ export namespace RotateContinuous {
4008
+ // (undocumented)
4009
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): RotateContinuous;
4010
+ // (undocumented)
4011
+ export function encode(message: RotateContinuous, writer?: _m0.Writer): _m0.Writer;
4012
+ }
4013
+
3973
4014
  // 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
4015
  //
3975
4016
  // @public (undocumented)
@@ -4260,6 +4301,23 @@ export namespace TextureMove {
4260
4301
  export function encode(message: TextureMove, writer?: _m0.Writer): _m0.Writer;
4261
4302
  }
4262
4303
 
4304
+ // @public (undocumented)
4305
+ export interface TextureMoveContinuous {
4306
+ // (undocumented)
4307
+ direction: PBVector2 | undefined;
4308
+ movementType?: TextureMovementType | undefined;
4309
+ // (undocumented)
4310
+ speed: number;
4311
+ }
4312
+
4313
+ // @public (undocumented)
4314
+ export namespace TextureMoveContinuous {
4315
+ // (undocumented)
4316
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): TextureMoveContinuous;
4317
+ // (undocumented)
4318
+ export function encode(message: TextureMoveContinuous, writer?: _m0.Writer): _m0.Writer;
4319
+ }
4320
+
4263
4321
  // @public (undocumented)
4264
4322
  export const enum TextureMovementType {
4265
4323
  TMT_OFFSET = 0,
@@ -4433,6 +4491,13 @@ export const Tween: TweenComponentDefinitionExtended;
4433
4491
  // @public (undocumented)
4434
4492
  export interface TweenComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBTween> {
4435
4493
  Mode: TweenHelper;
4494
+ setMove(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
4495
+ setMoveContinuous(entity: Entity, direction: PBVector3, speed: number, duration?: number): void;
4496
+ setRotate(entity: Entity, start: PBQuaternion, end: PBQuaternion, duration: number, easingFunction?: EasingFunction): void;
4497
+ setRotateContinuous(entity: Entity, direction: PBQuaternion, speed: number, duration?: number): void;
4498
+ setScale(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
4499
+ setTextureMove(entity: Entity, start: PBVector2, end: PBVector2, duration: number, movementType?: TextureMovementType, easingFunction?: EasingFunction): void;
4500
+ setTextureMoveContinuous(entity: Entity, direction: PBVector2, speed: number, movementType?: TextureMovementType, duration?: number): void;
4436
4501
  }
4437
4502
 
4438
4503
  // @public (undocumented)
@@ -4440,11 +4505,17 @@ export interface TweenHelper {
4440
4505
  // (undocumented)
4441
4506
  Move: (move: Move) => PBTween['mode'];
4442
4507
  // (undocumented)
4508
+ MoveContinuous: (move: MoveContinuous) => PBTween['mode'];
4509
+ // (undocumented)
4443
4510
  Rotate: (rotate: Rotate) => PBTween['mode'];
4444
4511
  // (undocumented)
4512
+ RotateContinuous: (rotate: RotateContinuous) => PBTween['mode'];
4513
+ // (undocumented)
4445
4514
  Scale: (scale: Scale) => PBTween['mode'];
4446
4515
  // (undocumented)
4447
4516
  TextureMove: (textureMove: TextureMove) => PBTween['mode'];
4517
+ // (undocumented)
4518
+ TextureMoveContinuous: (textureMove: TextureMoveContinuous) => PBTween['mode'];
4448
4519
  }
4449
4520
 
4450
4521
  // @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-18360040798.commit-8d5d559",
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-18360040798.commit-8d5d559",
8
+ "@dcl/sdk": "7.10.6-18360040798.commit-8d5d559"
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": "8d5d5591584187301bc3522264432b3e7d7ab38f"
36
36
  }