@dcl/playground-assets 7.8.9-15283822925.commit-b281f0c → 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.
@@ -1320,12 +1320,19 @@ declare module "~system/Runtime" {
1320
1320
 
1321
1321
  // Function declaration section
1322
1322
  export interface PBRealmInfo {
1323
+ /** the domain of the realm server */
1323
1324
  baseUrl: string;
1325
+ /** the name of the realm server (more info https://adr.decentraland.org/adr/ADR-110) */
1324
1326
  realmName: string;
1327
+ /** the network id (1=Ethereum, more info https://chainlist.org/) */
1325
1328
  networkId: number;
1329
+ /** comms adapter (more info https://adr.decentraland.org/adr/ADR-180) */
1326
1330
  commsAdapter: string;
1331
+ /** true if the scene is running as a local preview, instead of published in Decentraland. */
1327
1332
  isPreview: boolean;
1333
+ /** the room session id. */
1328
1334
  room?: string | undefined;
1335
+ /** true if the user is connected to the scene room. */
1329
1336
  isConnectedSceneRoom?: boolean | undefined;
1330
1337
  }
1331
1338
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcl/sdk",
3
3
  "description": "",
4
- "version": "7.8.9-15283822925.commit-b281f0c",
4
+ "version": "7.8.10-15453890617.commit-9dc90d3",
5
5
  "author": "Decentraland",
6
6
  "dependencies": {
7
7
  "@dcl/ecs": "file:../ecs",
@@ -35,5 +35,5 @@
35
35
  },
36
36
  "types": "./index.d.ts",
37
37
  "typings": "./index.d.ts",
38
- "commit": "b281f0c54bee6b279799177fbb3f4d86d837a497"
38
+ "commit": "9dc90d36557df03682c958b70d7edcc81c1ba711"
39
39
  }
@@ -1318,6 +1318,7 @@ export declare const componentDefinitionByName: {
1318
1318
  "core::PointerEvents": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerEvents>>;
1319
1319
  "core::PointerEventsResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBPointerEventsResult>>;
1320
1320
  "core::PointerLock": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerLock>>;
1321
+ "core::PrimaryPointerInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPrimaryPointerInfo>>;
1321
1322
  "core::Raycast": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRaycast>>;
1322
1323
  "core::RaycastResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRaycastResult>>;
1323
1324
  "core::RealmInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRealmInfo>>;
@@ -5052,6 +5053,48 @@ export declare namespace PBPosition {
5052
5053
  export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPosition;
5053
5054
  }
5054
5055
 
5056
+ /**
5057
+ * The PBPrimaryPointerInfo component provides information about the current state of the primary
5058
+ * pointer input device (mouse, touch, gamepad, or VR controller). It tracks the pointer's position,
5059
+ * movement, and interaction capabilities in both 2D screen space and 3D world space.
5060
+ *
5061
+ * This component is essential for:
5062
+ * - Tracking cursor/pointer position and movement
5063
+ * - Converting 2D screen coordinates to 3D world space interactions
5064
+ * - Supporting multiple input methods (mouse, touch, gamepad, VR)
5065
+ * - Enabling ray-based interactions for 3D object selection
5066
+ *
5067
+ * The component can be used to:
5068
+ * - Implement drag-and-drop functionality
5069
+ * - Handle touch interactions on mobile devices
5070
+ * - Support gamepad navigation
5071
+ * - Enable VR controller interactions
5072
+ * - Convert screen coordinates to world space rays for 3D interactions
5073
+ *
5074
+ * Note: Touch, Pad, and Wand support, as well as dragging, will be added later.
5075
+ */
5076
+ /**
5077
+ * @public
5078
+ */
5079
+ export declare interface PBPrimaryPointerInfo {
5080
+ /** The type of input device being used */
5081
+ pointerType?: PointerType | undefined;
5082
+ /** Current position in screen space (pixels) */
5083
+ screenCoordinates?: PBVector2 | undefined;
5084
+ /** Movement since last frame (pixels) */
5085
+ screenDelta?: PBVector2 | undefined;
5086
+ /** Direction vector for 3D ray casting */
5087
+ worldRayDirection?: PBVector3 | undefined;
5088
+ }
5089
+
5090
+ /**
5091
+ * @public
5092
+ */
5093
+ export declare namespace PBPrimaryPointerInfo {
5094
+ export function encode(message: PBPrimaryPointerInfo, writer?: _m0.Writer): _m0.Writer;
5095
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPrimaryPointerInfo;
5096
+ }
5097
+
5055
5098
  /**
5056
5099
  * @public
5057
5100
  */
@@ -5156,12 +5199,19 @@ export declare namespace PBRaycastResult {
5156
5199
  * @public
5157
5200
  */
5158
5201
  export declare interface PBRealmInfo {
5202
+ /** the domain of the realm server */
5159
5203
  baseUrl: string;
5204
+ /** the name of the realm server (more info https://adr.decentraland.org/adr/ADR-110) */
5160
5205
  realmName: string;
5206
+ /** the network id (1=Ethereum, more info https://chainlist.org/) */
5161
5207
  networkId: number;
5208
+ /** comms adapter (more info https://adr.decentraland.org/adr/ADR-180) */
5162
5209
  commsAdapter: string;
5210
+ /** true if the scene is running as a local preview, instead of published in Decentraland. */
5163
5211
  isPreview: boolean;
5212
+ /** the room session id. */
5164
5213
  room?: string | undefined;
5214
+ /** true if the user is connected to the scene room. */
5165
5215
  isConnectedSceneRoom?: boolean | undefined;
5166
5216
  }
5167
5217
 
@@ -5957,6 +6007,20 @@ export declare type PointerFilterType = 'none' | 'block';
5957
6007
  /** @public */
5958
6008
  export declare const PointerLock: LastWriteWinElementSetComponentDefinition<PBPointerLock>;
5959
6009
 
6010
+ /**
6011
+ * PointerType enumerates the different input devices that can be used for pointer interactions.
6012
+ * Each type has specific characteristics and use cases in the virtual world.
6013
+ */
6014
+ /**
6015
+ * @public
6016
+ */
6017
+ export declare const enum PointerType {
6018
+ /** POT_NONE - No pointer input */
6019
+ POT_NONE = 0,
6020
+ /** POT_MOUSE - Traditional mouse input */
6021
+ POT_MOUSE = 1
6022
+ }
6023
+
5960
6024
  /**
5961
6025
  * Type used for defining the position of the element. i.e. margin, padding
5962
6026
  * @public
@@ -5994,6 +6058,9 @@ export declare type PositionType = 'absolute' | 'relative';
5994
6058
  */
5995
6059
  export declare type PositionUnit = `${number}px` | `${number}%` | number | `${number}` | ScaleUnit;
5996
6060
 
6061
+ /** @public */
6062
+ export declare const PrimaryPointerInfo: LastWriteWinElementSetComponentDefinition<PBPrimaryPointerInfo>;
6063
+
5997
6064
  export declare enum ProcessMessageResultType {
5998
6065
  /**
5999
6066
  * Typical message and new state set.
@@ -13005,6 +13005,33 @@
13005
13005
  "text": "PBPointerLock",
13006
13006
  "canonicalReference": "@dcl/playground-assets!PBPointerLock"
13007
13007
  },
13008
+ {
13009
+ "kind": "Content",
13010
+ "text": ">>;\n \"core::PrimaryPointerInfo\": "
13011
+ },
13012
+ {
13013
+ "kind": "Reference",
13014
+ "text": "LwwComponentGetter",
13015
+ "canonicalReference": "@dcl/playground-assets!LwwComponentGetter:type"
13016
+ },
13017
+ {
13018
+ "kind": "Content",
13019
+ "text": "<"
13020
+ },
13021
+ {
13022
+ "kind": "Reference",
13023
+ "text": "LastWriteWinElementSetComponentDefinition",
13024
+ "canonicalReference": "@dcl/playground-assets!LastWriteWinElementSetComponentDefinition:interface"
13025
+ },
13026
+ {
13027
+ "kind": "Content",
13028
+ "text": "<"
13029
+ },
13030
+ {
13031
+ "kind": "Reference",
13032
+ "text": "PBPrimaryPointerInfo",
13033
+ "canonicalReference": "@dcl/playground-assets!PBPrimaryPointerInfo"
13034
+ },
13008
13035
  {
13009
13036
  "kind": "Content",
13010
13037
  "text": ">>;\n \"core::Raycast\": "
@@ -13529,7 +13556,7 @@
13529
13556
  "name": "componentDefinitionByName",
13530
13557
  "variableTypeTokenRange": {
13531
13558
  "startIndex": 1,
13532
- "endIndex": 272
13559
+ "endIndex": 278
13533
13560
  }
13534
13561
  },
13535
13562
  {
@@ -47282,6 +47309,303 @@
47282
47309
  }
47283
47310
  ]
47284
47311
  },
47312
+ {
47313
+ "kind": "Interface",
47314
+ "canonicalReference": "@dcl/playground-assets!PBPrimaryPointerInfo:interface",
47315
+ "docComment": "/**\n * @public\n */\n",
47316
+ "excerptTokens": [
47317
+ {
47318
+ "kind": "Content",
47319
+ "text": "export interface PBPrimaryPointerInfo "
47320
+ }
47321
+ ],
47322
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/primary_pointer_info.gen.d.ts",
47323
+ "releaseTag": "Public",
47324
+ "name": "PBPrimaryPointerInfo",
47325
+ "preserveMemberOrder": false,
47326
+ "members": [
47327
+ {
47328
+ "kind": "PropertySignature",
47329
+ "canonicalReference": "@dcl/playground-assets!PBPrimaryPointerInfo#pointerType:member",
47330
+ "docComment": "/**\n * The type of input device being used\n */\n",
47331
+ "excerptTokens": [
47332
+ {
47333
+ "kind": "Content",
47334
+ "text": "pointerType?: "
47335
+ },
47336
+ {
47337
+ "kind": "Reference",
47338
+ "text": "PointerType",
47339
+ "canonicalReference": "@dcl/playground-assets!PointerType:enum"
47340
+ },
47341
+ {
47342
+ "kind": "Content",
47343
+ "text": " | undefined"
47344
+ },
47345
+ {
47346
+ "kind": "Content",
47347
+ "text": ";"
47348
+ }
47349
+ ],
47350
+ "isReadonly": false,
47351
+ "isOptional": true,
47352
+ "releaseTag": "Public",
47353
+ "name": "pointerType",
47354
+ "propertyTypeTokenRange": {
47355
+ "startIndex": 1,
47356
+ "endIndex": 3
47357
+ }
47358
+ },
47359
+ {
47360
+ "kind": "PropertySignature",
47361
+ "canonicalReference": "@dcl/playground-assets!PBPrimaryPointerInfo#screenCoordinates:member",
47362
+ "docComment": "/**\n * Current position in screen space (pixels)\n */\n",
47363
+ "excerptTokens": [
47364
+ {
47365
+ "kind": "Content",
47366
+ "text": "screenCoordinates?: "
47367
+ },
47368
+ {
47369
+ "kind": "Reference",
47370
+ "text": "Vector2",
47371
+ "canonicalReference": "@dcl/playground-assets!Vector2"
47372
+ },
47373
+ {
47374
+ "kind": "Content",
47375
+ "text": " | undefined"
47376
+ },
47377
+ {
47378
+ "kind": "Content",
47379
+ "text": ";"
47380
+ }
47381
+ ],
47382
+ "isReadonly": false,
47383
+ "isOptional": true,
47384
+ "releaseTag": "Public",
47385
+ "name": "screenCoordinates",
47386
+ "propertyTypeTokenRange": {
47387
+ "startIndex": 1,
47388
+ "endIndex": 3
47389
+ }
47390
+ },
47391
+ {
47392
+ "kind": "PropertySignature",
47393
+ "canonicalReference": "@dcl/playground-assets!PBPrimaryPointerInfo#screenDelta:member",
47394
+ "docComment": "/**\n * Movement since last frame (pixels)\n */\n",
47395
+ "excerptTokens": [
47396
+ {
47397
+ "kind": "Content",
47398
+ "text": "screenDelta?: "
47399
+ },
47400
+ {
47401
+ "kind": "Reference",
47402
+ "text": "Vector2",
47403
+ "canonicalReference": "@dcl/playground-assets!Vector2"
47404
+ },
47405
+ {
47406
+ "kind": "Content",
47407
+ "text": " | undefined"
47408
+ },
47409
+ {
47410
+ "kind": "Content",
47411
+ "text": ";"
47412
+ }
47413
+ ],
47414
+ "isReadonly": false,
47415
+ "isOptional": true,
47416
+ "releaseTag": "Public",
47417
+ "name": "screenDelta",
47418
+ "propertyTypeTokenRange": {
47419
+ "startIndex": 1,
47420
+ "endIndex": 3
47421
+ }
47422
+ },
47423
+ {
47424
+ "kind": "PropertySignature",
47425
+ "canonicalReference": "@dcl/playground-assets!PBPrimaryPointerInfo#worldRayDirection:member",
47426
+ "docComment": "/**\n * Direction vector for 3D ray casting\n */\n",
47427
+ "excerptTokens": [
47428
+ {
47429
+ "kind": "Content",
47430
+ "text": "worldRayDirection?: "
47431
+ },
47432
+ {
47433
+ "kind": "Reference",
47434
+ "text": "Vector3",
47435
+ "canonicalReference": "@dcl/playground-assets!Vector3"
47436
+ },
47437
+ {
47438
+ "kind": "Content",
47439
+ "text": " | undefined"
47440
+ },
47441
+ {
47442
+ "kind": "Content",
47443
+ "text": ";"
47444
+ }
47445
+ ],
47446
+ "isReadonly": false,
47447
+ "isOptional": true,
47448
+ "releaseTag": "Public",
47449
+ "name": "worldRayDirection",
47450
+ "propertyTypeTokenRange": {
47451
+ "startIndex": 1,
47452
+ "endIndex": 3
47453
+ }
47454
+ }
47455
+ ],
47456
+ "extendsTokenRanges": []
47457
+ },
47458
+ {
47459
+ "kind": "Namespace",
47460
+ "canonicalReference": "@dcl/playground-assets!PBPrimaryPointerInfo:namespace",
47461
+ "docComment": "/**\n * @public\n */\n",
47462
+ "excerptTokens": [
47463
+ {
47464
+ "kind": "Content",
47465
+ "text": "export declare namespace PBPrimaryPointerInfo "
47466
+ }
47467
+ ],
47468
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/primary_pointer_info.gen.d.ts",
47469
+ "releaseTag": "Public",
47470
+ "name": "PBPrimaryPointerInfo",
47471
+ "preserveMemberOrder": false,
47472
+ "members": [
47473
+ {
47474
+ "kind": "Function",
47475
+ "canonicalReference": "@dcl/playground-assets!PBPrimaryPointerInfo.decode:function(1)",
47476
+ "docComment": "",
47477
+ "excerptTokens": [
47478
+ {
47479
+ "kind": "Content",
47480
+ "text": "function decode(input: "
47481
+ },
47482
+ {
47483
+ "kind": "Reference",
47484
+ "text": "_m0.Reader",
47485
+ "canonicalReference": "protobufjs!Reader:class"
47486
+ },
47487
+ {
47488
+ "kind": "Content",
47489
+ "text": " | "
47490
+ },
47491
+ {
47492
+ "kind": "Reference",
47493
+ "text": "Uint8Array",
47494
+ "canonicalReference": "!Uint8Array:interface"
47495
+ },
47496
+ {
47497
+ "kind": "Content",
47498
+ "text": ", length?: "
47499
+ },
47500
+ {
47501
+ "kind": "Content",
47502
+ "text": "number"
47503
+ },
47504
+ {
47505
+ "kind": "Content",
47506
+ "text": "): "
47507
+ },
47508
+ {
47509
+ "kind": "Reference",
47510
+ "text": "PBPrimaryPointerInfo",
47511
+ "canonicalReference": "@dcl/playground-assets!PBPrimaryPointerInfo:interface"
47512
+ },
47513
+ {
47514
+ "kind": "Content",
47515
+ "text": ";"
47516
+ }
47517
+ ],
47518
+ "returnTypeTokenRange": {
47519
+ "startIndex": 7,
47520
+ "endIndex": 8
47521
+ },
47522
+ "releaseTag": "Public",
47523
+ "overloadIndex": 1,
47524
+ "parameters": [
47525
+ {
47526
+ "parameterName": "input",
47527
+ "parameterTypeTokenRange": {
47528
+ "startIndex": 1,
47529
+ "endIndex": 4
47530
+ },
47531
+ "isOptional": false
47532
+ },
47533
+ {
47534
+ "parameterName": "length",
47535
+ "parameterTypeTokenRange": {
47536
+ "startIndex": 5,
47537
+ "endIndex": 6
47538
+ },
47539
+ "isOptional": true
47540
+ }
47541
+ ],
47542
+ "name": "decode"
47543
+ },
47544
+ {
47545
+ "kind": "Function",
47546
+ "canonicalReference": "@dcl/playground-assets!PBPrimaryPointerInfo.encode:function(1)",
47547
+ "docComment": "",
47548
+ "excerptTokens": [
47549
+ {
47550
+ "kind": "Content",
47551
+ "text": "function encode(message: "
47552
+ },
47553
+ {
47554
+ "kind": "Reference",
47555
+ "text": "PBPrimaryPointerInfo",
47556
+ "canonicalReference": "@dcl/playground-assets!PBPrimaryPointerInfo:interface"
47557
+ },
47558
+ {
47559
+ "kind": "Content",
47560
+ "text": ", writer?: "
47561
+ },
47562
+ {
47563
+ "kind": "Reference",
47564
+ "text": "_m0.Writer",
47565
+ "canonicalReference": "protobufjs!Writer:class"
47566
+ },
47567
+ {
47568
+ "kind": "Content",
47569
+ "text": "): "
47570
+ },
47571
+ {
47572
+ "kind": "Reference",
47573
+ "text": "_m0.Writer",
47574
+ "canonicalReference": "protobufjs!Writer:class"
47575
+ },
47576
+ {
47577
+ "kind": "Content",
47578
+ "text": ";"
47579
+ }
47580
+ ],
47581
+ "returnTypeTokenRange": {
47582
+ "startIndex": 5,
47583
+ "endIndex": 6
47584
+ },
47585
+ "releaseTag": "Public",
47586
+ "overloadIndex": 1,
47587
+ "parameters": [
47588
+ {
47589
+ "parameterName": "message",
47590
+ "parameterTypeTokenRange": {
47591
+ "startIndex": 1,
47592
+ "endIndex": 2
47593
+ },
47594
+ "isOptional": false
47595
+ },
47596
+ {
47597
+ "parameterName": "writer",
47598
+ "parameterTypeTokenRange": {
47599
+ "startIndex": 3,
47600
+ "endIndex": 4
47601
+ },
47602
+ "isOptional": true
47603
+ }
47604
+ ],
47605
+ "name": "encode"
47606
+ }
47607
+ ]
47608
+ },
47285
47609
  {
47286
47610
  "kind": "Interface",
47287
47611
  "canonicalReference": "@dcl/playground-assets!PBQuaternion:interface",
@@ -48287,7 +48611,7 @@
48287
48611
  {
48288
48612
  "kind": "PropertySignature",
48289
48613
  "canonicalReference": "@dcl/playground-assets!PBRealmInfo#baseUrl:member",
48290
- "docComment": "",
48614
+ "docComment": "/**\n * the domain of the realm server\n */\n",
48291
48615
  "excerptTokens": [
48292
48616
  {
48293
48617
  "kind": "Content",
@@ -48314,7 +48638,7 @@
48314
48638
  {
48315
48639
  "kind": "PropertySignature",
48316
48640
  "canonicalReference": "@dcl/playground-assets!PBRealmInfo#commsAdapter:member",
48317
- "docComment": "",
48641
+ "docComment": "/**\n * comms adapter (more info https://adr.decentraland.org/adr/ADR-180)\n */\n",
48318
48642
  "excerptTokens": [
48319
48643
  {
48320
48644
  "kind": "Content",
@@ -48341,7 +48665,7 @@
48341
48665
  {
48342
48666
  "kind": "PropertySignature",
48343
48667
  "canonicalReference": "@dcl/playground-assets!PBRealmInfo#isConnectedSceneRoom:member",
48344
- "docComment": "",
48668
+ "docComment": "/**\n * true if the user is connected to the scene room.\n */\n",
48345
48669
  "excerptTokens": [
48346
48670
  {
48347
48671
  "kind": "Content",
@@ -48368,7 +48692,7 @@
48368
48692
  {
48369
48693
  "kind": "PropertySignature",
48370
48694
  "canonicalReference": "@dcl/playground-assets!PBRealmInfo#isPreview:member",
48371
- "docComment": "",
48695
+ "docComment": "/**\n * true if the scene is running as a local preview, instead of published in Decentraland.\n */\n",
48372
48696
  "excerptTokens": [
48373
48697
  {
48374
48698
  "kind": "Content",
@@ -48395,7 +48719,7 @@
48395
48719
  {
48396
48720
  "kind": "PropertySignature",
48397
48721
  "canonicalReference": "@dcl/playground-assets!PBRealmInfo#networkId:member",
48398
- "docComment": "",
48722
+ "docComment": "/**\n * the network id (1=Ethereum, more info https://chainlist.org/)\n */\n",
48399
48723
  "excerptTokens": [
48400
48724
  {
48401
48725
  "kind": "Content",
@@ -48422,7 +48746,7 @@
48422
48746
  {
48423
48747
  "kind": "PropertySignature",
48424
48748
  "canonicalReference": "@dcl/playground-assets!PBRealmInfo#realmName:member",
48425
- "docComment": "",
48749
+ "docComment": "/**\n * the name of the realm server (more info https://adr.decentraland.org/adr/ADR-110)\n */\n",
48426
48750
  "excerptTokens": [
48427
48751
  {
48428
48752
  "kind": "Content",
@@ -48449,7 +48773,7 @@
48449
48773
  {
48450
48774
  "kind": "PropertySignature",
48451
48775
  "canonicalReference": "@dcl/playground-assets!PBRealmInfo#room:member",
48452
- "docComment": "",
48776
+ "docComment": "/**\n * the room session id.\n */\n",
48453
48777
  "excerptTokens": [
48454
48778
  {
48455
48779
  "kind": "Content",
@@ -58223,6 +58547,65 @@
58223
58547
  "endIndex": 5
58224
58548
  }
58225
58549
  },
58550
+ {
58551
+ "kind": "Enum",
58552
+ "canonicalReference": "@dcl/playground-assets!PointerType:enum",
58553
+ "docComment": "/**\n * @public\n */\n",
58554
+ "excerptTokens": [
58555
+ {
58556
+ "kind": "Content",
58557
+ "text": "export declare const enum PointerType "
58558
+ }
58559
+ ],
58560
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/primary_pointer_info.gen.d.ts",
58561
+ "releaseTag": "Public",
58562
+ "name": "PointerType",
58563
+ "preserveMemberOrder": false,
58564
+ "members": [
58565
+ {
58566
+ "kind": "EnumMember",
58567
+ "canonicalReference": "@dcl/playground-assets!PointerType.POT_MOUSE:member",
58568
+ "docComment": "/**\n * POT_MOUSE - Traditional mouse input\n */\n",
58569
+ "excerptTokens": [
58570
+ {
58571
+ "kind": "Content",
58572
+ "text": "POT_MOUSE = "
58573
+ },
58574
+ {
58575
+ "kind": "Content",
58576
+ "text": "1"
58577
+ }
58578
+ ],
58579
+ "initializerTokenRange": {
58580
+ "startIndex": 1,
58581
+ "endIndex": 2
58582
+ },
58583
+ "releaseTag": "Public",
58584
+ "name": "POT_MOUSE"
58585
+ },
58586
+ {
58587
+ "kind": "EnumMember",
58588
+ "canonicalReference": "@dcl/playground-assets!PointerType.POT_NONE:member",
58589
+ "docComment": "/**\n * POT_NONE - No pointer input\n */\n",
58590
+ "excerptTokens": [
58591
+ {
58592
+ "kind": "Content",
58593
+ "text": "POT_NONE = "
58594
+ },
58595
+ {
58596
+ "kind": "Content",
58597
+ "text": "0"
58598
+ }
58599
+ ],
58600
+ "initializerTokenRange": {
58601
+ "startIndex": 1,
58602
+ "endIndex": 2
58603
+ },
58604
+ "releaseTag": "Public",
58605
+ "name": "POT_NONE"
58606
+ }
58607
+ ]
58608
+ },
58226
58609
  {
58227
58610
  "kind": "Interface",
58228
58611
  "canonicalReference": "@dcl/playground-assets!Position:interface",
@@ -58522,6 +58905,43 @@
58522
58905
  "endIndex": 3
58523
58906
  }
58524
58907
  },
58908
+ {
58909
+ "kind": "Variable",
58910
+ "canonicalReference": "@dcl/playground-assets!PrimaryPointerInfo:var",
58911
+ "docComment": "/**\n * @public\n */\n",
58912
+ "excerptTokens": [
58913
+ {
58914
+ "kind": "Content",
58915
+ "text": "PrimaryPointerInfo: "
58916
+ },
58917
+ {
58918
+ "kind": "Reference",
58919
+ "text": "LastWriteWinElementSetComponentDefinition",
58920
+ "canonicalReference": "@dcl/playground-assets!LastWriteWinElementSetComponentDefinition:interface"
58921
+ },
58922
+ {
58923
+ "kind": "Content",
58924
+ "text": "<"
58925
+ },
58926
+ {
58927
+ "kind": "Reference",
58928
+ "text": "PBPrimaryPointerInfo",
58929
+ "canonicalReference": "@dcl/playground-assets!PBPrimaryPointerInfo"
58930
+ },
58931
+ {
58932
+ "kind": "Content",
58933
+ "text": ">"
58934
+ }
58935
+ ],
58936
+ "fileUrlPath": "../ecs/dist/components/generated/global.gen.d.ts",
58937
+ "isReadonly": true,
58938
+ "releaseTag": "Public",
58939
+ "name": "PrimaryPointerInfo",
58940
+ "variableTypeTokenRange": {
58941
+ "startIndex": 1,
58942
+ "endIndex": 5
58943
+ }
58944
+ },
58525
58945
  {
58526
58946
  "kind": "Enum",
58527
58947
  "canonicalReference": "@dcl/playground-assets!ProcessMessageResultType:enum",