@dcl/playground-assets 7.23.4-26955626649.commit-5d040fd → 7.24.1-27169868884.commit-5ca22be
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.
- package/dist/alpha.d.ts +18 -0
- package/dist/beta.d.ts +18 -0
- package/dist/index.bundled.d.ts +18 -0
- package/dist/index.js +5 -5
- package/dist/playground/sdk/apis.d.ts +6 -0
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +18 -0
- package/dist/tsdoc-metadata.json +1 -1
- package/etc/playground-assets.api.json +168 -1
- package/etc/playground-assets.api.md +12 -0
- package/package.json +4 -4
package/dist/alpha.d.ts
CHANGED
|
@@ -261,6 +261,15 @@ export declare const AvatarBase: LastWriteWinElementSetComponentDefinition<PBAva
|
|
|
261
261
|
/** @public */
|
|
262
262
|
export declare const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>;
|
|
263
263
|
|
|
264
|
+
/** Mask for which bones an animation applies to. */
|
|
265
|
+
/**
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
268
|
+
export declare const enum AvatarEmoteMask {
|
|
269
|
+
AEM_FULL_BODY = 0,
|
|
270
|
+
AEM_UPPER_BODY = 1
|
|
271
|
+
}
|
|
272
|
+
|
|
264
273
|
/** @public */
|
|
265
274
|
export declare const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
|
|
266
275
|
|
|
@@ -4848,6 +4857,12 @@ export declare interface PBAvatarLocomotionSettings {
|
|
|
4848
4857
|
runJumpHeight?: number | undefined;
|
|
4849
4858
|
/** Cooldown time after a hard landing before the avatar can move again (in seconds) */
|
|
4850
4859
|
hardLandingCooldown?: number | undefined;
|
|
4860
|
+
/** Height of the double jump (in meters) */
|
|
4861
|
+
doubleJumpHeight?: number | undefined;
|
|
4862
|
+
/** Maximum speed when gliding (in meters per second) */
|
|
4863
|
+
glidingSpeed?: number | undefined;
|
|
4864
|
+
/** Maximum falling speed when gliding (in meters per second) */
|
|
4865
|
+
glidingFallingSpeed?: number | undefined;
|
|
4851
4866
|
}
|
|
4852
4867
|
|
|
4853
4868
|
/**
|
|
@@ -6940,6 +6955,7 @@ export declare namespace PBVideoPlayer {
|
|
|
6940
6955
|
* an 'instant' transition (like using speed/time = 0)
|
|
6941
6956
|
* * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
|
|
6942
6957
|
* the holding entity transform).
|
|
6958
|
+
* * The fov defines the Field of View of the virtual camera
|
|
6943
6959
|
*/
|
|
6944
6960
|
/**
|
|
6945
6961
|
* @public
|
|
@@ -6947,6 +6963,8 @@ export declare namespace PBVideoPlayer {
|
|
|
6947
6963
|
export declare interface PBVirtualCamera {
|
|
6948
6964
|
defaultTransition?: CameraTransition | undefined;
|
|
6949
6965
|
lookAtEntity?: number | undefined;
|
|
6966
|
+
/** default: 60 */
|
|
6967
|
+
fov?: number | undefined;
|
|
6950
6968
|
}
|
|
6951
6969
|
|
|
6952
6970
|
/**
|
package/dist/beta.d.ts
CHANGED
|
@@ -261,6 +261,15 @@ export declare const AvatarBase: LastWriteWinElementSetComponentDefinition<PBAva
|
|
|
261
261
|
/** @public */
|
|
262
262
|
export declare const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>;
|
|
263
263
|
|
|
264
|
+
/** Mask for which bones an animation applies to. */
|
|
265
|
+
/**
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
268
|
+
export declare const enum AvatarEmoteMask {
|
|
269
|
+
AEM_FULL_BODY = 0,
|
|
270
|
+
AEM_UPPER_BODY = 1
|
|
271
|
+
}
|
|
272
|
+
|
|
264
273
|
/** @public */
|
|
265
274
|
export declare const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
|
|
266
275
|
|
|
@@ -4820,6 +4829,12 @@ export declare interface PBAvatarLocomotionSettings {
|
|
|
4820
4829
|
runJumpHeight?: number | undefined;
|
|
4821
4830
|
/** Cooldown time after a hard landing before the avatar can move again (in seconds) */
|
|
4822
4831
|
hardLandingCooldown?: number | undefined;
|
|
4832
|
+
/** Height of the double jump (in meters) */
|
|
4833
|
+
doubleJumpHeight?: number | undefined;
|
|
4834
|
+
/** Maximum speed when gliding (in meters per second) */
|
|
4835
|
+
glidingSpeed?: number | undefined;
|
|
4836
|
+
/** Maximum falling speed when gliding (in meters per second) */
|
|
4837
|
+
glidingFallingSpeed?: number | undefined;
|
|
4823
4838
|
}
|
|
4824
4839
|
|
|
4825
4840
|
/**
|
|
@@ -6912,6 +6927,7 @@ export declare namespace PBVideoPlayer {
|
|
|
6912
6927
|
* an 'instant' transition (like using speed/time = 0)
|
|
6913
6928
|
* * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
|
|
6914
6929
|
* the holding entity transform).
|
|
6930
|
+
* * The fov defines the Field of View of the virtual camera
|
|
6915
6931
|
*/
|
|
6916
6932
|
/**
|
|
6917
6933
|
* @public
|
|
@@ -6919,6 +6935,8 @@ export declare namespace PBVideoPlayer {
|
|
|
6919
6935
|
export declare interface PBVirtualCamera {
|
|
6920
6936
|
defaultTransition?: CameraTransition | undefined;
|
|
6921
6937
|
lookAtEntity?: number | undefined;
|
|
6938
|
+
/** default: 60 */
|
|
6939
|
+
fov?: number | undefined;
|
|
6922
6940
|
}
|
|
6923
6941
|
|
|
6924
6942
|
/**
|
package/dist/index.bundled.d.ts
CHANGED
|
@@ -261,6 +261,15 @@ export declare const AvatarBase: LastWriteWinElementSetComponentDefinition<PBAva
|
|
|
261
261
|
/** @public */
|
|
262
262
|
export declare const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>;
|
|
263
263
|
|
|
264
|
+
/** Mask for which bones an animation applies to. */
|
|
265
|
+
/**
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
268
|
+
export declare const enum AvatarEmoteMask {
|
|
269
|
+
AEM_FULL_BODY = 0,
|
|
270
|
+
AEM_UPPER_BODY = 1
|
|
271
|
+
}
|
|
272
|
+
|
|
264
273
|
/** @public */
|
|
265
274
|
export declare const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
|
|
266
275
|
|
|
@@ -4820,6 +4829,12 @@ export declare interface PBAvatarLocomotionSettings {
|
|
|
4820
4829
|
runJumpHeight?: number | undefined;
|
|
4821
4830
|
/** Cooldown time after a hard landing before the avatar can move again (in seconds) */
|
|
4822
4831
|
hardLandingCooldown?: number | undefined;
|
|
4832
|
+
/** Height of the double jump (in meters) */
|
|
4833
|
+
doubleJumpHeight?: number | undefined;
|
|
4834
|
+
/** Maximum speed when gliding (in meters per second) */
|
|
4835
|
+
glidingSpeed?: number | undefined;
|
|
4836
|
+
/** Maximum falling speed when gliding (in meters per second) */
|
|
4837
|
+
glidingFallingSpeed?: number | undefined;
|
|
4823
4838
|
}
|
|
4824
4839
|
|
|
4825
4840
|
/**
|
|
@@ -6912,6 +6927,7 @@ export declare namespace PBVideoPlayer {
|
|
|
6912
6927
|
* an 'instant' transition (like using speed/time = 0)
|
|
6913
6928
|
* * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
|
|
6914
6929
|
* the holding entity transform).
|
|
6930
|
+
* * The fov defines the Field of View of the virtual camera
|
|
6915
6931
|
*/
|
|
6916
6932
|
/**
|
|
6917
6933
|
* @public
|
|
@@ -6919,6 +6935,8 @@ export declare namespace PBVideoPlayer {
|
|
|
6919
6935
|
export declare interface PBVirtualCamera {
|
|
6920
6936
|
defaultTransition?: CameraTransition | undefined;
|
|
6921
6937
|
lookAtEntity?: number | undefined;
|
|
6938
|
+
/** default: 60 */
|
|
6939
|
+
fov?: number | undefined;
|
|
6922
6940
|
}
|
|
6923
6941
|
|
|
6924
6942
|
/**
|