@dcl/playground-assets 7.8.22-16119591948.commit-9ef869d → 7.8.22-16146892301.commit-2d060b3
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 +0 -146
- package/dist/beta.d.ts +0 -146
- package/dist/index.bundled.d.ts +0 -146
- 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 +0 -146
- package/etc/playground-assets.api.json +1051 -2556
- package/etc/playground-assets.api.md +0 -104
- package/package.json +4 -4
@@ -639,7 +639,6 @@ export const componentDefinitionByName: {
|
|
639
639
|
"core::GltfContainer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainer>>;
|
640
640
|
"core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
|
641
641
|
"core::InputModifier": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBInputModifier>>;
|
642
|
-
"core::LightSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBLightSource>>;
|
643
642
|
"core::MainCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMainCamera>>;
|
644
643
|
"core::Material": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMaterial>>;
|
645
644
|
"core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
|
@@ -653,7 +652,6 @@ export const componentDefinitionByName: {
|
|
653
652
|
"core::Raycast": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRaycast>>;
|
654
653
|
"core::RaycastResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRaycastResult>>;
|
655
654
|
"core::RealmInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRealmInfo>>;
|
656
|
-
"core::SkyboxTime": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBSkyboxTime>>;
|
657
655
|
"core::TextShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextShape>>;
|
658
656
|
"core::Tween": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTween>>;
|
659
657
|
"core::TweenSequence": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenSequence>>;
|
@@ -1575,24 +1573,6 @@ export interface LastWriteWinElementSetComponentDefinition<T> extends BaseCompon
|
|
1575
1573
|
getOrNull(entity: Entity): DeepReadonly<T> | null;
|
1576
1574
|
}
|
1577
1575
|
|
1578
|
-
// Warning: (ae-missing-release-tag) "LightSource" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
|
1579
|
-
//
|
1580
|
-
// @public (undocumented)
|
1581
|
-
export const LightSource: LightSourceComponentDefinitionExtended;
|
1582
|
-
|
1583
|
-
// @public (undocumented)
|
1584
|
-
export interface LightSourceComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBLightSource> {
|
1585
|
-
Type: LightSourceHelper;
|
1586
|
-
}
|
1587
|
-
|
1588
|
-
// @public (undocumented)
|
1589
|
-
export interface LightSourceHelper {
|
1590
|
-
// (undocumented)
|
1591
|
-
Point: (point: PBLightSource_Point) => PBLightSource['type'];
|
1592
|
-
// (undocumented)
|
1593
|
-
Spot: (spot: PBLightSource_Spot) => PBLightSource['type'];
|
1594
|
-
}
|
1595
|
-
|
1596
1576
|
// @public
|
1597
1577
|
export type Listeners = {
|
1598
1578
|
onMouseDown?: Callback;
|
@@ -2441,66 +2421,6 @@ export namespace PBInputModifier_StandardInput {
|
|
2441
2421
|
export function encode(message: PBInputModifier_StandardInput, writer?: _m0.Writer): _m0.Writer;
|
2442
2422
|
}
|
2443
2423
|
|
2444
|
-
// @public (undocumented)
|
2445
|
-
export interface PBLightSource {
|
2446
|
-
active?: boolean | undefined;
|
2447
|
-
brightness?: number | undefined;
|
2448
|
-
color?: PBColor3 | undefined;
|
2449
|
-
range?: number | undefined;
|
2450
|
-
// (undocumented)
|
2451
|
-
type?: {
|
2452
|
-
$case: "point";
|
2453
|
-
point: PBLightSource_Point;
|
2454
|
-
} | {
|
2455
|
-
$case: "spot";
|
2456
|
-
spot: PBLightSource_Spot;
|
2457
|
-
} | undefined;
|
2458
|
-
}
|
2459
|
-
|
2460
|
-
// @public (undocumented)
|
2461
|
-
export namespace PBLightSource {
|
2462
|
-
// (undocumented)
|
2463
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource;
|
2464
|
-
// (undocumented)
|
2465
|
-
export function encode(message: PBLightSource, writer?: _m0.Writer): _m0.Writer;
|
2466
|
-
}
|
2467
|
-
|
2468
|
-
// @public (undocumented)
|
2469
|
-
export interface PBLightSource_Point {
|
2470
|
-
shadow?: PBLightSource_ShadowType | undefined;
|
2471
|
-
}
|
2472
|
-
|
2473
|
-
// @public (undocumented)
|
2474
|
-
export namespace PBLightSource_Point {
|
2475
|
-
// (undocumented)
|
2476
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource_Point;
|
2477
|
-
// (undocumented)
|
2478
|
-
export function encode(message: PBLightSource_Point, writer?: _m0.Writer): _m0.Writer;
|
2479
|
-
}
|
2480
|
-
|
2481
|
-
// @public (undocumented)
|
2482
|
-
export const enum PBLightSource_ShadowType {
|
2483
|
-
ST_HARD = 2,
|
2484
|
-
ST_NONE = 0,
|
2485
|
-
ST_SOFT = 1
|
2486
|
-
}
|
2487
|
-
|
2488
|
-
// @public (undocumented)
|
2489
|
-
export interface PBLightSource_Spot {
|
2490
|
-
innerAngle?: number | undefined;
|
2491
|
-
outerAngle?: number | undefined;
|
2492
|
-
shadow?: PBLightSource_ShadowType | undefined;
|
2493
|
-
shadowMaskTexture?: TextureUnion | undefined;
|
2494
|
-
}
|
2495
|
-
|
2496
|
-
// @public (undocumented)
|
2497
|
-
export namespace PBLightSource_Spot {
|
2498
|
-
// (undocumented)
|
2499
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBLightSource_Spot;
|
2500
|
-
// (undocumented)
|
2501
|
-
export function encode(message: PBLightSource_Spot, writer?: _m0.Writer): _m0.Writer;
|
2502
|
-
}
|
2503
|
-
|
2504
2424
|
// @public (undocumented)
|
2505
2425
|
export interface PBMainCamera {
|
2506
2426
|
virtualCameraEntity?: number | undefined;
|
@@ -2963,20 +2883,6 @@ export namespace PBRealmInfo {
|
|
2963
2883
|
export function encode(message: PBRealmInfo, writer?: _m0.Writer): _m0.Writer;
|
2964
2884
|
}
|
2965
2885
|
|
2966
|
-
// @public (undocumented)
|
2967
|
-
export interface PBSkyboxTime {
|
2968
|
-
fixedTime: number;
|
2969
|
-
transitionMode?: TransitionMode | undefined;
|
2970
|
-
}
|
2971
|
-
|
2972
|
-
// @public (undocumented)
|
2973
|
-
export namespace PBSkyboxTime {
|
2974
|
-
// (undocumented)
|
2975
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBSkyboxTime;
|
2976
|
-
// (undocumented)
|
2977
|
-
export function encode(message: PBSkyboxTime, writer?: _m0.Writer): _m0.Writer;
|
2978
|
-
}
|
2979
|
-
|
2980
2886
|
// @public (undocumented)
|
2981
2887
|
export interface PBTextShape {
|
2982
2888
|
font?: Font | undefined;
|
@@ -3397,7 +3303,6 @@ export namespace PBVideoPlayer {
|
|
3397
3303
|
export interface PBVirtualCamera {
|
3398
3304
|
// (undocumented)
|
3399
3305
|
defaultTransition?: CameraTransition | undefined;
|
3400
|
-
fov?: number | undefined;
|
3401
3306
|
// (undocumented)
|
3402
3307
|
lookAtEntity?: number | undefined;
|
3403
3308
|
}
|
@@ -4027,9 +3932,6 @@ export namespace Schemas {
|
|
4027
3932
|
}) => void;
|
4028
3933
|
}
|
4029
3934
|
|
4030
|
-
// @public (undocumented)
|
4031
|
-
export const SkyboxTime: LastWriteWinElementSetComponentDefinition<PBSkyboxTime>;
|
4032
|
-
|
4033
3935
|
// @public (undocumented)
|
4034
3936
|
export interface Spec {
|
4035
3937
|
// (undocumented)
|
@@ -4262,12 +4164,6 @@ export type TransformType = {
|
|
4262
4164
|
// @public (undocumented)
|
4263
4165
|
export type TransformTypeWithOptionals = Partial<TransformType>;
|
4264
4166
|
|
4265
|
-
// @public (undocumented)
|
4266
|
-
export const enum TransitionMode {
|
4267
|
-
TM_BACKWARD = 1,
|
4268
|
-
TM_FORWARD = 0
|
4269
|
-
}
|
4270
|
-
|
4271
4167
|
// @public (undocumented)
|
4272
4168
|
export type Transport = {
|
4273
4169
|
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-16146892301.commit-2d060b3",
|
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-16146892301.commit-2d060b3",
|
8
|
+
"@dcl/sdk": "7.8.22-16146892301.commit-2d060b3"
|
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": "2d060b3339d846f60cc59b4886aca257ea639018"
|
36
36
|
}
|