@dcl/playground-assets 7.23.2 → 7.23.3-25829613631.commit-ac51407
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/etc/playground-assets.api.json +167 -0
- 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
|
|
|
@@ -4834,6 +4843,12 @@ export declare interface PBAvatarLocomotionSettings {
|
|
|
4834
4843
|
runJumpHeight?: number | undefined;
|
|
4835
4844
|
/** Cooldown time after a hard landing before the avatar can move again (in seconds) */
|
|
4836
4845
|
hardLandingCooldown?: number | undefined;
|
|
4846
|
+
/** Height of the double jump (in meters) */
|
|
4847
|
+
doubleJumpHeight?: number | undefined;
|
|
4848
|
+
/** Maximum speed when gliding (in meters per second) */
|
|
4849
|
+
glidingSpeed?: number | undefined;
|
|
4850
|
+
/** Maximum falling speed when gliding (in meters per second) */
|
|
4851
|
+
glidingFallingSpeed?: number | undefined;
|
|
4837
4852
|
}
|
|
4838
4853
|
|
|
4839
4854
|
/**
|
|
@@ -6918,6 +6933,7 @@ export declare namespace PBVideoPlayer {
|
|
|
6918
6933
|
* an 'instant' transition (like using speed/time = 0)
|
|
6919
6934
|
* * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
|
|
6920
6935
|
* the holding entity transform).
|
|
6936
|
+
* * The fov defines the Field of View of the virtual camera
|
|
6921
6937
|
*/
|
|
6922
6938
|
/**
|
|
6923
6939
|
* @public
|
|
@@ -6925,6 +6941,8 @@ export declare namespace PBVideoPlayer {
|
|
|
6925
6941
|
export declare interface PBVirtualCamera {
|
|
6926
6942
|
defaultTransition?: CameraTransition | undefined;
|
|
6927
6943
|
lookAtEntity?: number | undefined;
|
|
6944
|
+
/** default: 60 */
|
|
6945
|
+
fov?: number | undefined;
|
|
6928
6946
|
}
|
|
6929
6947
|
|
|
6930
6948
|
/**
|
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
|
|
|
@@ -4806,6 +4815,12 @@ export declare interface PBAvatarLocomotionSettings {
|
|
|
4806
4815
|
runJumpHeight?: number | undefined;
|
|
4807
4816
|
/** Cooldown time after a hard landing before the avatar can move again (in seconds) */
|
|
4808
4817
|
hardLandingCooldown?: number | undefined;
|
|
4818
|
+
/** Height of the double jump (in meters) */
|
|
4819
|
+
doubleJumpHeight?: number | undefined;
|
|
4820
|
+
/** Maximum speed when gliding (in meters per second) */
|
|
4821
|
+
glidingSpeed?: number | undefined;
|
|
4822
|
+
/** Maximum falling speed when gliding (in meters per second) */
|
|
4823
|
+
glidingFallingSpeed?: number | undefined;
|
|
4809
4824
|
}
|
|
4810
4825
|
|
|
4811
4826
|
/**
|
|
@@ -6890,6 +6905,7 @@ export declare namespace PBVideoPlayer {
|
|
|
6890
6905
|
* an 'instant' transition (like using speed/time = 0)
|
|
6891
6906
|
* * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
|
|
6892
6907
|
* the holding entity transform).
|
|
6908
|
+
* * The fov defines the Field of View of the virtual camera
|
|
6893
6909
|
*/
|
|
6894
6910
|
/**
|
|
6895
6911
|
* @public
|
|
@@ -6897,6 +6913,8 @@ export declare namespace PBVideoPlayer {
|
|
|
6897
6913
|
export declare interface PBVirtualCamera {
|
|
6898
6914
|
defaultTransition?: CameraTransition | undefined;
|
|
6899
6915
|
lookAtEntity?: number | undefined;
|
|
6916
|
+
/** default: 60 */
|
|
6917
|
+
fov?: number | undefined;
|
|
6900
6918
|
}
|
|
6901
6919
|
|
|
6902
6920
|
/**
|
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
|
|
|
@@ -4806,6 +4815,12 @@ export declare interface PBAvatarLocomotionSettings {
|
|
|
4806
4815
|
runJumpHeight?: number | undefined;
|
|
4807
4816
|
/** Cooldown time after a hard landing before the avatar can move again (in seconds) */
|
|
4808
4817
|
hardLandingCooldown?: number | undefined;
|
|
4818
|
+
/** Height of the double jump (in meters) */
|
|
4819
|
+
doubleJumpHeight?: number | undefined;
|
|
4820
|
+
/** Maximum speed when gliding (in meters per second) */
|
|
4821
|
+
glidingSpeed?: number | undefined;
|
|
4822
|
+
/** Maximum falling speed when gliding (in meters per second) */
|
|
4823
|
+
glidingFallingSpeed?: number | undefined;
|
|
4809
4824
|
}
|
|
4810
4825
|
|
|
4811
4826
|
/**
|
|
@@ -6890,6 +6905,7 @@ export declare namespace PBVideoPlayer {
|
|
|
6890
6905
|
* an 'instant' transition (like using speed/time = 0)
|
|
6891
6906
|
* * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
|
|
6892
6907
|
* the holding entity transform).
|
|
6908
|
+
* * The fov defines the Field of View of the virtual camera
|
|
6893
6909
|
*/
|
|
6894
6910
|
/**
|
|
6895
6911
|
* @public
|
|
@@ -6897,6 +6913,8 @@ export declare namespace PBVideoPlayer {
|
|
|
6897
6913
|
export declare interface PBVirtualCamera {
|
|
6898
6914
|
defaultTransition?: CameraTransition | undefined;
|
|
6899
6915
|
lookAtEntity?: number | undefined;
|
|
6916
|
+
/** default: 60 */
|
|
6917
|
+
fov?: number | undefined;
|
|
6900
6918
|
}
|
|
6901
6919
|
|
|
6902
6920
|
/**
|