@dcl/playground-assets 7.8.22-16419593165.commit-2dc5189 → 7.8.22-16442069066.commit-9ae2f83
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 +86 -0
- package/dist/beta.d.ts +86 -0
- package/dist/index.bundled.d.ts +86 -0
- package/dist/index.js +5 -5
- package/dist/index.js.map +4 -4
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +86 -0
- package/etc/playground-assets.api.json +927 -56
- package/etc/playground-assets.api.md +57 -0
- package/package.json +4 -4
@@ -638,6 +638,7 @@ export const componentDefinitionByName: {
|
|
638
638
|
"core::EngineInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBEngineInfo>>;
|
639
639
|
"core::GltfContainer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainer>>;
|
640
640
|
"core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
|
641
|
+
"core::GltfNodeModifiers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>>;
|
641
642
|
"core::InputModifier": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBInputModifier>>;
|
642
643
|
"core::MainCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMainCamera>>;
|
643
644
|
"core::Material": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMaterial>>;
|
@@ -652,6 +653,7 @@ export const componentDefinitionByName: {
|
|
652
653
|
"core::Raycast": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRaycast>>;
|
653
654
|
"core::RaycastResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRaycastResult>>;
|
654
655
|
"core::RealmInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRealmInfo>>;
|
656
|
+
"core::SkyboxTime": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBSkyboxTime>>;
|
655
657
|
"core::TextShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextShape>>;
|
656
658
|
"core::Tween": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTween>>;
|
657
659
|
"core::TweenSequence": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenSequence>>;
|
@@ -1221,6 +1223,9 @@ export const GltfContainer: LastWriteWinElementSetComponentDefinition<PBGltfCont
|
|
1221
1223
|
// @public (undocumented)
|
1222
1224
|
export const GltfContainerLoadingState: LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>;
|
1223
1225
|
|
1226
|
+
// @public (undocumented)
|
1227
|
+
export const GltfNodeModifiers: LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>;
|
1228
|
+
|
1224
1229
|
// @public (undocumented)
|
1225
1230
|
export interface GrowOnlyValueSetComponentDefinition<T> extends BaseComponent<T> {
|
1226
1231
|
addValue(entity: Entity, val: DeepReadonly<T>): DeepReadonlySet<T>;
|
@@ -2380,6 +2385,35 @@ export namespace PBGltfContainerLoadingState {
|
|
2380
2385
|
export function encode(message: PBGltfContainerLoadingState, writer?: _m0.Writer): _m0.Writer;
|
2381
2386
|
}
|
2382
2387
|
|
2388
|
+
// @public (undocumented)
|
2389
|
+
export interface PBGltfNodeModifiers {
|
2390
|
+
// (undocumented)
|
2391
|
+
modifiers: PBGltfNodeModifiers_GltfNodeModifier[];
|
2392
|
+
}
|
2393
|
+
|
2394
|
+
// @public (undocumented)
|
2395
|
+
export namespace PBGltfNodeModifiers {
|
2396
|
+
// (undocumented)
|
2397
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfNodeModifiers;
|
2398
|
+
// (undocumented)
|
2399
|
+
export function encode(message: PBGltfNodeModifiers, writer?: _m0.Writer): _m0.Writer;
|
2400
|
+
}
|
2401
|
+
|
2402
|
+
// @public (undocumented)
|
2403
|
+
export interface PBGltfNodeModifiers_GltfNodeModifier {
|
2404
|
+
castShadows?: boolean | undefined;
|
2405
|
+
material?: PBMaterial | undefined;
|
2406
|
+
path: string;
|
2407
|
+
}
|
2408
|
+
|
2409
|
+
// @public (undocumented)
|
2410
|
+
export namespace PBGltfNodeModifiers_GltfNodeModifier {
|
2411
|
+
// (undocumented)
|
2412
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfNodeModifiers_GltfNodeModifier;
|
2413
|
+
// (undocumented)
|
2414
|
+
export function encode(message: PBGltfNodeModifiers_GltfNodeModifier, writer?: _m0.Writer): _m0.Writer;
|
2415
|
+
}
|
2416
|
+
|
2383
2417
|
// @public (undocumented)
|
2384
2418
|
export interface PBInputModifier {
|
2385
2419
|
// (undocumented)
|
@@ -2883,6 +2917,20 @@ export namespace PBRealmInfo {
|
|
2883
2917
|
export function encode(message: PBRealmInfo, writer?: _m0.Writer): _m0.Writer;
|
2884
2918
|
}
|
2885
2919
|
|
2920
|
+
// @public (undocumented)
|
2921
|
+
export interface PBSkyboxTime {
|
2922
|
+
fixedTime: number;
|
2923
|
+
transitionMode?: TransitionMode | undefined;
|
2924
|
+
}
|
2925
|
+
|
2926
|
+
// @public (undocumented)
|
2927
|
+
export namespace PBSkyboxTime {
|
2928
|
+
// (undocumented)
|
2929
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBSkyboxTime;
|
2930
|
+
// (undocumented)
|
2931
|
+
export function encode(message: PBSkyboxTime, writer?: _m0.Writer): _m0.Writer;
|
2932
|
+
}
|
2933
|
+
|
2886
2934
|
// @public (undocumented)
|
2887
2935
|
export interface PBTextShape {
|
2888
2936
|
font?: Font | undefined;
|
@@ -3932,6 +3980,9 @@ export namespace Schemas {
|
|
3932
3980
|
}) => void;
|
3933
3981
|
}
|
3934
3982
|
|
3983
|
+
// @public (undocumented)
|
3984
|
+
export const SkyboxTime: LastWriteWinElementSetComponentDefinition<PBSkyboxTime>;
|
3985
|
+
|
3935
3986
|
// @public (undocumented)
|
3936
3987
|
export interface Spec {
|
3937
3988
|
// (undocumented)
|
@@ -4164,6 +4215,12 @@ export type TransformType = {
|
|
4164
4215
|
// @public (undocumented)
|
4165
4216
|
export type TransformTypeWithOptionals = Partial<TransformType>;
|
4166
4217
|
|
4218
|
+
// @public (undocumented)
|
4219
|
+
export const enum TransitionMode {
|
4220
|
+
TM_BACKWARD = 1,
|
4221
|
+
TM_FORWARD = 0
|
4222
|
+
}
|
4223
|
+
|
4167
4224
|
// @public (undocumented)
|
4168
4225
|
export type Transport = {
|
4169
4226
|
send(message: Uint8Array | Uint8Array[]): Promise<void>;
|
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/playground-assets",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.8.22-
|
4
|
+
"version": "7.8.22-16442069066.commit-9ae2f83",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"dependencies": {
|
7
|
-
"@dcl/js-runtime": "7.8.22-
|
8
|
-
"@dcl/sdk": "7.8.22-
|
7
|
+
"@dcl/js-runtime": "7.8.22-16442069066.commit-9ae2f83",
|
8
|
+
"@dcl/sdk": "7.8.22-16442069066.commit-9ae2f83"
|
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": "9ae2f837d5b7e45dc7eafa88f9a49460b9bf45d7"
|
36
36
|
}
|