@dcl/playground-assets 7.8.9 → 7.8.10-15453890617.commit-9dc90d3
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 +67 -0
- package/dist/beta.d.ts +67 -0
- package/dist/index.bundled.d.ts +67 -0
- package/dist/index.js +6 -6
- package/dist/index.js.map +4 -4
- package/dist/playground/sdk/apis.d.ts +7 -0
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +67 -0
- package/etc/playground-assets.api.json +428 -8
- package/etc/playground-assets.api.md +26 -7
- package/package.json +4 -4
@@ -648,6 +648,7 @@ export const componentDefinitionByName: {
|
|
648
648
|
"core::PointerEvents": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerEvents>>;
|
649
649
|
"core::PointerEventsResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBPointerEventsResult>>;
|
650
650
|
"core::PointerLock": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerLock>>;
|
651
|
+
"core::PrimaryPointerInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPrimaryPointerInfo>>;
|
651
652
|
"core::Raycast": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRaycast>>;
|
652
653
|
"core::RaycastResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRaycastResult>>;
|
653
654
|
"core::RealmInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRealmInfo>>;
|
@@ -2778,6 +2779,22 @@ export namespace PBPosition {
|
|
2778
2779
|
export function encode(message: PBPosition, writer?: _m0.Writer): _m0.Writer;
|
2779
2780
|
}
|
2780
2781
|
|
2782
|
+
// @public (undocumented)
|
2783
|
+
export interface PBPrimaryPointerInfo {
|
2784
|
+
pointerType?: PointerType | undefined;
|
2785
|
+
screenCoordinates?: PBVector2 | undefined;
|
2786
|
+
screenDelta?: PBVector2 | undefined;
|
2787
|
+
worldRayDirection?: PBVector3 | undefined;
|
2788
|
+
}
|
2789
|
+
|
2790
|
+
// @public (undocumented)
|
2791
|
+
export namespace PBPrimaryPointerInfo {
|
2792
|
+
// (undocumented)
|
2793
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPrimaryPointerInfo;
|
2794
|
+
// (undocumented)
|
2795
|
+
export function encode(message: PBPrimaryPointerInfo, writer?: _m0.Writer): _m0.Writer;
|
2796
|
+
}
|
2797
|
+
|
2781
2798
|
// @public (undocumented)
|
2782
2799
|
export interface PBQuaternion {
|
2783
2800
|
// (undocumented)
|
@@ -2849,19 +2866,12 @@ export namespace PBRaycastResult {
|
|
2849
2866
|
|
2850
2867
|
// @public (undocumented)
|
2851
2868
|
export interface PBRealmInfo {
|
2852
|
-
// (undocumented)
|
2853
2869
|
baseUrl: string;
|
2854
|
-
// (undocumented)
|
2855
2870
|
commsAdapter: string;
|
2856
|
-
// (undocumented)
|
2857
2871
|
isConnectedSceneRoom?: boolean | undefined;
|
2858
|
-
// (undocumented)
|
2859
2872
|
isPreview: boolean;
|
2860
|
-
// (undocumented)
|
2861
2873
|
networkId: number;
|
2862
|
-
// (undocumented)
|
2863
2874
|
realmName: string;
|
2864
|
-
// (undocumented)
|
2865
2875
|
room?: string | undefined;
|
2866
2876
|
}
|
2867
2877
|
|
@@ -3416,6 +3426,12 @@ export type PointerFilterType = 'none' | 'block';
|
|
3416
3426
|
// @public (undocumented)
|
3417
3427
|
export const PointerLock: LastWriteWinElementSetComponentDefinition<PBPointerLock>;
|
3418
3428
|
|
3429
|
+
// @public (undocumented)
|
3430
|
+
export const enum PointerType {
|
3431
|
+
POT_MOUSE = 1,
|
3432
|
+
POT_NONE = 0
|
3433
|
+
}
|
3434
|
+
|
3419
3435
|
// @public
|
3420
3436
|
export interface Position {
|
3421
3437
|
// (undocumented)
|
@@ -3437,6 +3453,9 @@ export type PositionType = 'absolute' | 'relative';
|
|
3437
3453
|
// @public
|
3438
3454
|
export type PositionUnit = `${number}px` | `${number}%` | number | `${number}` | ScaleUnit;
|
3439
3455
|
|
3456
|
+
// @public (undocumented)
|
3457
|
+
export const PrimaryPointerInfo: LastWriteWinElementSetComponentDefinition<PBPrimaryPointerInfo>;
|
3458
|
+
|
3440
3459
|
// Warning: (ae-missing-release-tag) "ProcessMessageResultType" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
|
3441
3460
|
//
|
3442
3461
|
// @public (undocumented)
|
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/playground-assets",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.8.
|
4
|
+
"version": "7.8.10-15453890617.commit-9dc90d3",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"dependencies": {
|
7
|
-
"@dcl/js-runtime": "7.8.
|
8
|
-
"@dcl/sdk": "7.8.
|
7
|
+
"@dcl/js-runtime": "7.8.10-15453890617.commit-9dc90d3",
|
8
|
+
"@dcl/sdk": "7.8.10-15453890617.commit-9dc90d3"
|
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": "9dc90d36557df03682c958b70d7edcc81c1ba711"
|
36
36
|
}
|