@dcl/playground-assets 7.5.1-9235562469.commit-72bf800 → 7.5.1-9236275282.commit-84ad0a4
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 +91 -1
- package/dist/beta.d.ts +91 -1
- package/dist/index.bundled.d.ts +91 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +3 -3
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +91 -1
- package/etc/playground-assets.api.json +1266 -207
- package/etc/playground-assets.api.md +61 -0
- package/package.json +4 -4
@@ -136,6 +136,13 @@ export const AvatarAttach: LastWriteWinElementSetComponentDefinition<PBAvatarAtt
|
|
136
136
|
// @public (undocumented)
|
137
137
|
export const AvatarBase: LastWriteWinElementSetComponentDefinition<PBAvatarBase>;
|
138
138
|
|
139
|
+
// @public (undocumented)
|
140
|
+
export const enum AvatarControlType {
|
141
|
+
CCT_NONE = 0,
|
142
|
+
CCT_RELATIVE = 1,
|
143
|
+
CCT_TANK = 2
|
144
|
+
}
|
145
|
+
|
139
146
|
// @public (undocumented)
|
140
147
|
export const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>;
|
141
148
|
|
@@ -151,6 +158,28 @@ export const enum AvatarModifierType {
|
|
151
158
|
AMT_HIDE_AVATARS = 0
|
152
159
|
}
|
153
160
|
|
161
|
+
// @public (undocumented)
|
162
|
+
export interface AvatarMovementSettings {
|
163
|
+
allowWeightedMovement?: boolean | undefined;
|
164
|
+
// (undocumented)
|
165
|
+
controlMode?: AvatarControlType | undefined;
|
166
|
+
friction?: number | undefined;
|
167
|
+
gravity?: number | undefined;
|
168
|
+
jumpHeight?: number | undefined;
|
169
|
+
maxFallSpeed?: number | undefined;
|
170
|
+
runSpeed?: number | undefined;
|
171
|
+
turnSpeed?: number | undefined;
|
172
|
+
walkSpeed?: number | undefined;
|
173
|
+
}
|
174
|
+
|
175
|
+
// @public (undocumented)
|
176
|
+
export namespace AvatarMovementSettings {
|
177
|
+
// (undocumented)
|
178
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): AvatarMovementSettings;
|
179
|
+
// (undocumented)
|
180
|
+
export function encode(message: AvatarMovementSettings, writer?: _m0.Writer): _m0.Writer;
|
181
|
+
}
|
182
|
+
|
154
183
|
// @public (undocumented)
|
155
184
|
export const AvatarShape: LastWriteWinElementSetComponentDefinition<PBAvatarShape>;
|
156
185
|
|
@@ -367,6 +396,29 @@ export const enum CameraType {
|
|
367
396
|
// @public (undocumented)
|
368
397
|
export type Children = ReactNode;
|
369
398
|
|
399
|
+
// @public (undocumented)
|
400
|
+
export interface CinematicSettings {
|
401
|
+
// Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
|
402
|
+
// Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
|
403
|
+
// Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
|
404
|
+
// Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
|
405
|
+
allowManualRotation?: boolean | undefined;
|
406
|
+
cameraEntity: number;
|
407
|
+
pitchRange?: number | undefined;
|
408
|
+
rollRange?: number | undefined;
|
409
|
+
yawRange?: number | undefined;
|
410
|
+
zoomMax?: number | undefined;
|
411
|
+
zoomMin?: number | undefined;
|
412
|
+
}
|
413
|
+
|
414
|
+
// @public (undocumented)
|
415
|
+
export namespace CinematicSettings {
|
416
|
+
// (undocumented)
|
417
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): CinematicSettings;
|
418
|
+
// (undocumented)
|
419
|
+
export function encode(message: CinematicSettings, writer?: _m0.Writer): _m0.Writer;
|
420
|
+
}
|
421
|
+
|
370
422
|
// @public (undocumented)
|
371
423
|
export const enum ColliderLayer {
|
372
424
|
// (undocumented)
|
@@ -2148,6 +2200,9 @@ export interface PBAvatarModifierArea {
|
|
2148
2200
|
area: PBVector3 | undefined;
|
2149
2201
|
excludeIds: string[];
|
2150
2202
|
modifiers: AvatarModifierType[];
|
2203
|
+
// (undocumented)
|
2204
|
+
movementSettings?: AvatarMovementSettings | undefined;
|
2205
|
+
useColliderRange?: boolean | undefined;
|
2151
2206
|
}
|
2152
2207
|
|
2153
2208
|
// @public (undocumented)
|
@@ -2210,7 +2265,10 @@ export namespace PBCameraMode {
|
|
2210
2265
|
// @public (undocumented)
|
2211
2266
|
export interface PBCameraModeArea {
|
2212
2267
|
area: PBVector3 | undefined;
|
2268
|
+
// (undocumented)
|
2269
|
+
cinematicSettings?: CinematicSettings | undefined;
|
2213
2270
|
mode: CameraType;
|
2271
|
+
useColliderRange?: boolean | undefined;
|
2214
2272
|
}
|
2215
2273
|
|
2216
2274
|
// @public (undocumented)
|
@@ -2947,6 +3005,8 @@ export interface PBUiText {
|
|
2947
3005
|
color?: PBColor4 | undefined;
|
2948
3006
|
font?: Font | undefined;
|
2949
3007
|
fontSize?: number | undefined;
|
3008
|
+
outlineColor?: PBColor4 | undefined;
|
3009
|
+
outlineWidth?: number | undefined;
|
2950
3010
|
textAlign?: TextAlignMode | undefined;
|
2951
3011
|
value: string;
|
2952
3012
|
}
|
@@ -3001,6 +3061,7 @@ export interface PBUiTransform {
|
|
3001
3061
|
// (undocumented)
|
3002
3062
|
minWidth: number;
|
3003
3063
|
minWidthUnit: YGUnit;
|
3064
|
+
opacity?: number | undefined;
|
3004
3065
|
overflow: YGOverflow;
|
3005
3066
|
// (undocumented)
|
3006
3067
|
paddingBottom: number;
|
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/playground-assets",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.5.1-
|
4
|
+
"version": "7.5.1-9236275282.commit-84ad0a4",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"dependencies": {
|
7
|
-
"@dcl/js-runtime": "7.5.1-
|
8
|
-
"@dcl/sdk": "7.5.1-
|
7
|
+
"@dcl/js-runtime": "7.5.1-9236275282.commit-84ad0a4",
|
8
|
+
"@dcl/sdk": "7.5.1-9236275282.commit-84ad0a4"
|
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": "
|
35
|
+
"commit": "84ad0a4b316161c92eff19642926cfcf45a99e2d"
|
36
36
|
}
|