@dcl/playground-assets 7.22.1 → 7.22.2-23601767788.commit-ff97f2f

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.
@@ -1165,6 +1165,417 @@
1165
1165
  "endIndex": 6
1166
1166
  }
1167
1167
  },
1168
+ {
1169
+ "kind": "Variable",
1170
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysis:var",
1171
+ "docComment": "",
1172
+ "excerptTokens": [
1173
+ {
1174
+ "kind": "Content",
1175
+ "text": "AudioAnalysis: "
1176
+ },
1177
+ {
1178
+ "kind": "Reference",
1179
+ "text": "AudioAnalysisComponentDefinitionExtended",
1180
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisComponentDefinitionExtended:interface"
1181
+ }
1182
+ ],
1183
+ "fileUrlPath": "../ecs/dist/index.d.ts",
1184
+ "isReadonly": true,
1185
+ "releaseTag": "Public",
1186
+ "name": "AudioAnalysis",
1187
+ "variableTypeTokenRange": {
1188
+ "startIndex": 1,
1189
+ "endIndex": 2
1190
+ }
1191
+ },
1192
+ {
1193
+ "kind": "Interface",
1194
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisComponentDefinitionExtended:interface",
1195
+ "docComment": "",
1196
+ "excerptTokens": [
1197
+ {
1198
+ "kind": "Content",
1199
+ "text": "export interface AudioAnalysisComponentDefinitionExtended extends "
1200
+ },
1201
+ {
1202
+ "kind": "Reference",
1203
+ "text": "LastWriteWinElementSetComponentDefinition",
1204
+ "canonicalReference": "@dcl/playground-assets!LastWriteWinElementSetComponentDefinition:interface"
1205
+ },
1206
+ {
1207
+ "kind": "Content",
1208
+ "text": "<"
1209
+ },
1210
+ {
1211
+ "kind": "Reference",
1212
+ "text": "PBAudioAnalysis",
1213
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis"
1214
+ },
1215
+ {
1216
+ "kind": "Content",
1217
+ "text": ">"
1218
+ },
1219
+ {
1220
+ "kind": "Content",
1221
+ "text": " "
1222
+ }
1223
+ ],
1224
+ "fileUrlPath": "../ecs/dist/components/extended/AudioAnalysis.d.ts",
1225
+ "releaseTag": "Public",
1226
+ "name": "AudioAnalysisComponentDefinitionExtended",
1227
+ "preserveMemberOrder": false,
1228
+ "members": [
1229
+ {
1230
+ "kind": "MethodSignature",
1231
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisComponentDefinitionExtended#createAudioAnalysis:member(1)",
1232
+ "docComment": "/**\n * Creates an AudioAnalysis component for the given `entity`.\n *\n * If a component already exists on the entity, this call fails (does not replace).\n *\n * @param entity - The entity to attach the component to.\n *\n * @param mode - Analysis mode. Defaults to `PBAudioAnalysisMode.MODE_LOGARITHMIC`.\n *\n * @param amplitudeGain - Optional amplitude gain multiplier.\n *\n * @param bandsGain - Optional gain multiplier applied to all frequency bands.\n */\n",
1233
+ "excerptTokens": [
1234
+ {
1235
+ "kind": "Content",
1236
+ "text": "createAudioAnalysis(entity: "
1237
+ },
1238
+ {
1239
+ "kind": "Reference",
1240
+ "text": "Entity",
1241
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
1242
+ },
1243
+ {
1244
+ "kind": "Content",
1245
+ "text": ", mode?: "
1246
+ },
1247
+ {
1248
+ "kind": "Reference",
1249
+ "text": "PBAudioAnalysisMode",
1250
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode:enum"
1251
+ },
1252
+ {
1253
+ "kind": "Content",
1254
+ "text": ", // default is PBAudioAnalysisMode.MODE_LOGARITHMIC\n amplitudeGain?: "
1255
+ },
1256
+ {
1257
+ "kind": "Content",
1258
+ "text": "number"
1259
+ },
1260
+ {
1261
+ "kind": "Content",
1262
+ "text": ", bandsGain?: "
1263
+ },
1264
+ {
1265
+ "kind": "Content",
1266
+ "text": "number"
1267
+ },
1268
+ {
1269
+ "kind": "Content",
1270
+ "text": "): "
1271
+ },
1272
+ {
1273
+ "kind": "Content",
1274
+ "text": "void"
1275
+ },
1276
+ {
1277
+ "kind": "Content",
1278
+ "text": ";"
1279
+ }
1280
+ ],
1281
+ "isOptional": false,
1282
+ "returnTypeTokenRange": {
1283
+ "startIndex": 9,
1284
+ "endIndex": 10
1285
+ },
1286
+ "releaseTag": "Public",
1287
+ "overloadIndex": 1,
1288
+ "parameters": [
1289
+ {
1290
+ "parameterName": "entity",
1291
+ "parameterTypeTokenRange": {
1292
+ "startIndex": 1,
1293
+ "endIndex": 2
1294
+ },
1295
+ "isOptional": false
1296
+ },
1297
+ {
1298
+ "parameterName": "mode",
1299
+ "parameterTypeTokenRange": {
1300
+ "startIndex": 3,
1301
+ "endIndex": 4
1302
+ },
1303
+ "isOptional": true
1304
+ },
1305
+ {
1306
+ "parameterName": "amplitudeGain",
1307
+ "parameterTypeTokenRange": {
1308
+ "startIndex": 5,
1309
+ "endIndex": 6
1310
+ },
1311
+ "isOptional": true
1312
+ },
1313
+ {
1314
+ "parameterName": "bandsGain",
1315
+ "parameterTypeTokenRange": {
1316
+ "startIndex": 7,
1317
+ "endIndex": 8
1318
+ },
1319
+ "isOptional": true
1320
+ }
1321
+ ],
1322
+ "name": "createAudioAnalysis"
1323
+ },
1324
+ {
1325
+ "kind": "MethodSignature",
1326
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisComponentDefinitionExtended#createOrReplaceAudioAnalysis:member(1)",
1327
+ "docComment": "/**\n * Creates the AudioAnalysis component if missing, or replaces the existing one.\n *\n * @param entity - The target entity.\n *\n * @param mode - Analysis mode. Defaults to `PBAudioAnalysisMode.MODE_LOGARITHMIC`.\n *\n * @param amplitudeGain - Optional amplitude gain multiplier.\n *\n * @param bandsGain - Optional gain multiplier applied to the frequency bands.\n */\n",
1328
+ "excerptTokens": [
1329
+ {
1330
+ "kind": "Content",
1331
+ "text": "createOrReplaceAudioAnalysis(entity: "
1332
+ },
1333
+ {
1334
+ "kind": "Reference",
1335
+ "text": "Entity",
1336
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
1337
+ },
1338
+ {
1339
+ "kind": "Content",
1340
+ "text": ", mode?: "
1341
+ },
1342
+ {
1343
+ "kind": "Reference",
1344
+ "text": "PBAudioAnalysisMode",
1345
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode:enum"
1346
+ },
1347
+ {
1348
+ "kind": "Content",
1349
+ "text": ", // default is PBAudioAnalysisMode.MODE_LOGARITHMIC\n amplitudeGain?: "
1350
+ },
1351
+ {
1352
+ "kind": "Content",
1353
+ "text": "number"
1354
+ },
1355
+ {
1356
+ "kind": "Content",
1357
+ "text": ", bandsGain?: "
1358
+ },
1359
+ {
1360
+ "kind": "Content",
1361
+ "text": "number"
1362
+ },
1363
+ {
1364
+ "kind": "Content",
1365
+ "text": "): "
1366
+ },
1367
+ {
1368
+ "kind": "Content",
1369
+ "text": "void"
1370
+ },
1371
+ {
1372
+ "kind": "Content",
1373
+ "text": ";"
1374
+ }
1375
+ ],
1376
+ "isOptional": false,
1377
+ "returnTypeTokenRange": {
1378
+ "startIndex": 9,
1379
+ "endIndex": 10
1380
+ },
1381
+ "releaseTag": "Public",
1382
+ "overloadIndex": 1,
1383
+ "parameters": [
1384
+ {
1385
+ "parameterName": "entity",
1386
+ "parameterTypeTokenRange": {
1387
+ "startIndex": 1,
1388
+ "endIndex": 2
1389
+ },
1390
+ "isOptional": false
1391
+ },
1392
+ {
1393
+ "parameterName": "mode",
1394
+ "parameterTypeTokenRange": {
1395
+ "startIndex": 3,
1396
+ "endIndex": 4
1397
+ },
1398
+ "isOptional": true
1399
+ },
1400
+ {
1401
+ "parameterName": "amplitudeGain",
1402
+ "parameterTypeTokenRange": {
1403
+ "startIndex": 5,
1404
+ "endIndex": 6
1405
+ },
1406
+ "isOptional": true
1407
+ },
1408
+ {
1409
+ "parameterName": "bandsGain",
1410
+ "parameterTypeTokenRange": {
1411
+ "startIndex": 7,
1412
+ "endIndex": 8
1413
+ },
1414
+ "isOptional": true
1415
+ }
1416
+ ],
1417
+ "name": "createOrReplaceAudioAnalysis"
1418
+ },
1419
+ {
1420
+ "kind": "MethodSignature",
1421
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisComponentDefinitionExtended#readIntoView:member(1)",
1422
+ "docComment": "/**\n * Reads the component data of `entity` into the provided `out` view.\n *\n * @param entity - The entity whose AudioAnalysis data will be read.\n *\n * @param out - An existing AudioAnalysisView to populate with the latest values.\n *\n * @throws\n *\n * Error if the entity does not have an AudioAnalysis component.\n */\n",
1423
+ "excerptTokens": [
1424
+ {
1425
+ "kind": "Content",
1426
+ "text": "readIntoView(entity: "
1427
+ },
1428
+ {
1429
+ "kind": "Reference",
1430
+ "text": "Entity",
1431
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
1432
+ },
1433
+ {
1434
+ "kind": "Content",
1435
+ "text": ", out: "
1436
+ },
1437
+ {
1438
+ "kind": "Reference",
1439
+ "text": "AudioAnalysisView",
1440
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisView:type"
1441
+ },
1442
+ {
1443
+ "kind": "Content",
1444
+ "text": "): "
1445
+ },
1446
+ {
1447
+ "kind": "Content",
1448
+ "text": "void"
1449
+ },
1450
+ {
1451
+ "kind": "Content",
1452
+ "text": ";"
1453
+ }
1454
+ ],
1455
+ "isOptional": false,
1456
+ "returnTypeTokenRange": {
1457
+ "startIndex": 5,
1458
+ "endIndex": 6
1459
+ },
1460
+ "releaseTag": "Public",
1461
+ "overloadIndex": 1,
1462
+ "parameters": [
1463
+ {
1464
+ "parameterName": "entity",
1465
+ "parameterTypeTokenRange": {
1466
+ "startIndex": 1,
1467
+ "endIndex": 2
1468
+ },
1469
+ "isOptional": false
1470
+ },
1471
+ {
1472
+ "parameterName": "out",
1473
+ "parameterTypeTokenRange": {
1474
+ "startIndex": 3,
1475
+ "endIndex": 4
1476
+ },
1477
+ "isOptional": false
1478
+ }
1479
+ ],
1480
+ "name": "readIntoView"
1481
+ },
1482
+ {
1483
+ "kind": "MethodSignature",
1484
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisComponentDefinitionExtended#tryReadIntoView:member(1)",
1485
+ "docComment": "/**\n * Attempts to read the component data of `entity` into the provided `out` view.\n *\n * @param entity - The entity whose AudioAnalysis data will be read.\n *\n * @param out - An existing AudioAnalysisView to populate.\n *\n * @returns `true` if the component exists and data was written into `out`, `false` if the entity does not have an AudioAnalysis component.\n */\n",
1486
+ "excerptTokens": [
1487
+ {
1488
+ "kind": "Content",
1489
+ "text": "tryReadIntoView(entity: "
1490
+ },
1491
+ {
1492
+ "kind": "Reference",
1493
+ "text": "Entity",
1494
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
1495
+ },
1496
+ {
1497
+ "kind": "Content",
1498
+ "text": ", out: "
1499
+ },
1500
+ {
1501
+ "kind": "Reference",
1502
+ "text": "AudioAnalysisView",
1503
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisView:type"
1504
+ },
1505
+ {
1506
+ "kind": "Content",
1507
+ "text": "): "
1508
+ },
1509
+ {
1510
+ "kind": "Content",
1511
+ "text": "boolean"
1512
+ },
1513
+ {
1514
+ "kind": "Content",
1515
+ "text": ";"
1516
+ }
1517
+ ],
1518
+ "isOptional": false,
1519
+ "returnTypeTokenRange": {
1520
+ "startIndex": 5,
1521
+ "endIndex": 6
1522
+ },
1523
+ "releaseTag": "Public",
1524
+ "overloadIndex": 1,
1525
+ "parameters": [
1526
+ {
1527
+ "parameterName": "entity",
1528
+ "parameterTypeTokenRange": {
1529
+ "startIndex": 1,
1530
+ "endIndex": 2
1531
+ },
1532
+ "isOptional": false
1533
+ },
1534
+ {
1535
+ "parameterName": "out",
1536
+ "parameterTypeTokenRange": {
1537
+ "startIndex": 3,
1538
+ "endIndex": 4
1539
+ },
1540
+ "isOptional": false
1541
+ }
1542
+ ],
1543
+ "name": "tryReadIntoView"
1544
+ }
1545
+ ],
1546
+ "extendsTokenRanges": [
1547
+ {
1548
+ "startIndex": 1,
1549
+ "endIndex": 5
1550
+ }
1551
+ ]
1552
+ },
1553
+ {
1554
+ "kind": "TypeAlias",
1555
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisView:type",
1556
+ "docComment": "/**\n * A read-only JavaScript-friendly view of AudioAnalysis ECS data.\n *\n * `amplitude` represents the aggregated signal strength. `bands` represents the processed frequency bands.\n */\n",
1557
+ "excerptTokens": [
1558
+ {
1559
+ "kind": "Content",
1560
+ "text": "export type AudioAnalysisView = "
1561
+ },
1562
+ {
1563
+ "kind": "Content",
1564
+ "text": "{\n amplitude: number;\n bands: number[];\n}"
1565
+ },
1566
+ {
1567
+ "kind": "Content",
1568
+ "text": ";"
1569
+ }
1570
+ ],
1571
+ "fileUrlPath": "../ecs/dist/components/extended/AudioAnalysis.d.ts",
1572
+ "releaseTag": "Public",
1573
+ "name": "AudioAnalysisView",
1574
+ "typeTokenRange": {
1575
+ "startIndex": 1,
1576
+ "endIndex": 2
1577
+ }
1578
+ },
1168
1579
  {
1169
1580
  "kind": "Variable",
1170
1581
  "canonicalReference": "@dcl/playground-assets!AudioEvent:var",
@@ -2242,6 +2653,43 @@
2242
2653
  "endIndex": 5
2243
2654
  }
2244
2655
  },
2656
+ {
2657
+ "kind": "Variable",
2658
+ "canonicalReference": "@dcl/playground-assets!AvatarLocomotionSettings:var",
2659
+ "docComment": "/**\n * @public\n */\n",
2660
+ "excerptTokens": [
2661
+ {
2662
+ "kind": "Content",
2663
+ "text": "AvatarLocomotionSettings: "
2664
+ },
2665
+ {
2666
+ "kind": "Reference",
2667
+ "text": "LastWriteWinElementSetComponentDefinition",
2668
+ "canonicalReference": "@dcl/playground-assets!LastWriteWinElementSetComponentDefinition:interface"
2669
+ },
2670
+ {
2671
+ "kind": "Content",
2672
+ "text": "<"
2673
+ },
2674
+ {
2675
+ "kind": "Reference",
2676
+ "text": "PBAvatarLocomotionSettings",
2677
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings"
2678
+ },
2679
+ {
2680
+ "kind": "Content",
2681
+ "text": ">"
2682
+ }
2683
+ ],
2684
+ "fileUrlPath": "../ecs/dist/components/generated/global.gen.d.ts",
2685
+ "isReadonly": true,
2686
+ "releaseTag": "Public",
2687
+ "name": "AvatarLocomotionSettings",
2688
+ "variableTypeTokenRange": {
2689
+ "startIndex": 1,
2690
+ "endIndex": 5
2691
+ }
2692
+ },
2245
2693
  {
2246
2694
  "kind": "Variable",
2247
2695
  "canonicalReference": "@dcl/playground-assets!AvatarModifierArea:var",
@@ -12669,6 +13117,33 @@
12669
13117
  "text": "PBAssetLoadLoadingState",
12670
13118
  "canonicalReference": "@dcl/playground-assets!PBAssetLoadLoadingState"
12671
13119
  },
13120
+ {
13121
+ "kind": "Content",
13122
+ "text": ">>;\n \"core::AudioAnalysis\": "
13123
+ },
13124
+ {
13125
+ "kind": "Reference",
13126
+ "text": "LwwComponentGetter",
13127
+ "canonicalReference": "@dcl/playground-assets!LwwComponentGetter:type"
13128
+ },
13129
+ {
13130
+ "kind": "Content",
13131
+ "text": "<"
13132
+ },
13133
+ {
13134
+ "kind": "Reference",
13135
+ "text": "LastWriteWinElementSetComponentDefinition",
13136
+ "canonicalReference": "@dcl/playground-assets!LastWriteWinElementSetComponentDefinition:interface"
13137
+ },
13138
+ {
13139
+ "kind": "Content",
13140
+ "text": "<"
13141
+ },
13142
+ {
13143
+ "kind": "Reference",
13144
+ "text": "PBAudioAnalysis",
13145
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis"
13146
+ },
12672
13147
  {
12673
13148
  "kind": "Content",
12674
13149
  "text": ">>;\n \"core::AudioEvent\": "
@@ -12858,6 +13333,33 @@
12858
13333
  "text": "PBAvatarEquippedData",
12859
13334
  "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData"
12860
13335
  },
13336
+ {
13337
+ "kind": "Content",
13338
+ "text": ">>;\n \"core::AvatarLocomotionSettings\": "
13339
+ },
13340
+ {
13341
+ "kind": "Reference",
13342
+ "text": "LwwComponentGetter",
13343
+ "canonicalReference": "@dcl/playground-assets!LwwComponentGetter:type"
13344
+ },
13345
+ {
13346
+ "kind": "Content",
13347
+ "text": "<"
13348
+ },
13349
+ {
13350
+ "kind": "Reference",
13351
+ "text": "LastWriteWinElementSetComponentDefinition",
13352
+ "canonicalReference": "@dcl/playground-assets!LastWriteWinElementSetComponentDefinition:interface"
13353
+ },
13354
+ {
13355
+ "kind": "Content",
13356
+ "text": "<"
13357
+ },
13358
+ {
13359
+ "kind": "Reference",
13360
+ "text": "PBAvatarLocomotionSettings",
13361
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings"
13362
+ },
12861
13363
  {
12862
13364
  "kind": "Content",
12863
13365
  "text": ">>;\n \"core::AvatarModifierArea\": "
@@ -14084,7 +14586,7 @@
14084
14586
  "name": "componentDefinitionByName",
14085
14587
  "variableTypeTokenRange": {
14086
14588
  "startIndex": 1,
14087
- "endIndex": 332
14589
+ "endIndex": 344
14088
14590
  }
14089
14591
  },
14090
14592
  {
@@ -19775,7 +20277,7 @@
19775
20277
  },
19776
20278
  {
19777
20279
  "kind": "Content",
19778
- "text": ";\n hoverText?: string;\n maxDistance?: number;\n showFeedback?: boolean;\n showHighlight?: boolean;\n maxPlayerDistance?: number;\n}"
20280
+ "text": ";\n hoverText?: string;\n maxDistance?: number;\n showFeedback?: boolean;\n showHighlight?: boolean;\n maxPlayerDistance?: number;\n priority?: number;\n}"
19779
20281
  },
19780
20282
  {
19781
20283
  "kind": "Content",
@@ -24334,6 +24836,27 @@
24334
24836
  "releaseTag": "Public",
24335
24837
  "name": "IA_LEFT"
24336
24838
  },
24839
+ {
24840
+ "kind": "EnumMember",
24841
+ "canonicalReference": "@dcl/playground-assets!InputAction.IA_MODIFIER:member",
24842
+ "docComment": "",
24843
+ "excerptTokens": [
24844
+ {
24845
+ "kind": "Content",
24846
+ "text": "IA_MODIFIER = "
24847
+ },
24848
+ {
24849
+ "kind": "Content",
24850
+ "text": "14"
24851
+ }
24852
+ ],
24853
+ "initializerTokenRange": {
24854
+ "startIndex": 1,
24855
+ "endIndex": 2
24856
+ },
24857
+ "releaseTag": "Public",
24858
+ "name": "IA_MODIFIER"
24859
+ },
24337
24860
  {
24338
24861
  "kind": "EnumMember",
24339
24862
  "canonicalReference": "@dcl/playground-assets!InputAction.IA_POINTER:member",
@@ -24714,6 +25237,65 @@
24714
25237
  "endIndex": 16
24715
25238
  }
24716
25239
  },
25240
+ {
25241
+ "kind": "Enum",
25242
+ "canonicalReference": "@dcl/playground-assets!InteractionType:enum",
25243
+ "docComment": "/**\n * @public\n */\n",
25244
+ "excerptTokens": [
25245
+ {
25246
+ "kind": "Content",
25247
+ "text": "export declare const enum InteractionType "
25248
+ }
25249
+ ],
25250
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/common/input_action.gen.d.ts",
25251
+ "releaseTag": "Public",
25252
+ "name": "InteractionType",
25253
+ "preserveMemberOrder": false,
25254
+ "members": [
25255
+ {
25256
+ "kind": "EnumMember",
25257
+ "canonicalReference": "@dcl/playground-assets!InteractionType.CURSOR:member",
25258
+ "docComment": "",
25259
+ "excerptTokens": [
25260
+ {
25261
+ "kind": "Content",
25262
+ "text": "CURSOR = "
25263
+ },
25264
+ {
25265
+ "kind": "Content",
25266
+ "text": "0"
25267
+ }
25268
+ ],
25269
+ "initializerTokenRange": {
25270
+ "startIndex": 1,
25271
+ "endIndex": 2
25272
+ },
25273
+ "releaseTag": "Public",
25274
+ "name": "CURSOR"
25275
+ },
25276
+ {
25277
+ "kind": "EnumMember",
25278
+ "canonicalReference": "@dcl/playground-assets!InteractionType.PROXIMITY:member",
25279
+ "docComment": "",
25280
+ "excerptTokens": [
25281
+ {
25282
+ "kind": "Content",
25283
+ "text": "PROXIMITY = "
25284
+ },
25285
+ {
25286
+ "kind": "Content",
25287
+ "text": "1"
25288
+ }
25289
+ ],
25290
+ "initializerTokenRange": {
25291
+ "startIndex": 1,
25292
+ "endIndex": 2
25293
+ },
25294
+ "releaseTag": "Public",
25295
+ "name": "PROXIMITY"
25296
+ }
25297
+ ]
25298
+ },
24717
25299
  {
24718
25300
  "kind": "Interface",
24719
25301
  "canonicalReference": "@dcl/playground-assets!ISchema:interface",
@@ -40163,6 +40745,559 @@
40163
40745
  }
40164
40746
  ]
40165
40747
  },
40748
+ {
40749
+ "kind": "Interface",
40750
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:interface",
40751
+ "docComment": "/**\n * @public\n */\n",
40752
+ "excerptTokens": [
40753
+ {
40754
+ "kind": "Content",
40755
+ "text": "export interface PBAudioAnalysis "
40756
+ }
40757
+ ],
40758
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
40759
+ "releaseTag": "Public",
40760
+ "name": "PBAudioAnalysis",
40761
+ "preserveMemberOrder": false,
40762
+ "members": [
40763
+ {
40764
+ "kind": "PropertySignature",
40765
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#amplitude:member",
40766
+ "docComment": "/**\n * Result section\n */\n",
40767
+ "excerptTokens": [
40768
+ {
40769
+ "kind": "Content",
40770
+ "text": "amplitude: "
40771
+ },
40772
+ {
40773
+ "kind": "Content",
40774
+ "text": "number"
40775
+ },
40776
+ {
40777
+ "kind": "Content",
40778
+ "text": ";"
40779
+ }
40780
+ ],
40781
+ "isReadonly": false,
40782
+ "isOptional": false,
40783
+ "releaseTag": "Public",
40784
+ "name": "amplitude",
40785
+ "propertyTypeTokenRange": {
40786
+ "startIndex": 1,
40787
+ "endIndex": 2
40788
+ }
40789
+ },
40790
+ {
40791
+ "kind": "PropertySignature",
40792
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#amplitudeGain:member",
40793
+ "docComment": "/**\n * Used only when mode == MODE_LOGARITHMIC\n */\n",
40794
+ "excerptTokens": [
40795
+ {
40796
+ "kind": "Content",
40797
+ "text": "amplitudeGain?: "
40798
+ },
40799
+ {
40800
+ "kind": "Content",
40801
+ "text": "number | undefined"
40802
+ },
40803
+ {
40804
+ "kind": "Content",
40805
+ "text": ";"
40806
+ }
40807
+ ],
40808
+ "isReadonly": false,
40809
+ "isOptional": true,
40810
+ "releaseTag": "Public",
40811
+ "name": "amplitudeGain",
40812
+ "propertyTypeTokenRange": {
40813
+ "startIndex": 1,
40814
+ "endIndex": 2
40815
+ }
40816
+ },
40817
+ {
40818
+ "kind": "PropertySignature",
40819
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band0:member",
40820
+ "docComment": "/**\n * Protobuf doesn't support fixed arrays -> 8 band fields\n */\n",
40821
+ "excerptTokens": [
40822
+ {
40823
+ "kind": "Content",
40824
+ "text": "band0: "
40825
+ },
40826
+ {
40827
+ "kind": "Content",
40828
+ "text": "number"
40829
+ },
40830
+ {
40831
+ "kind": "Content",
40832
+ "text": ";"
40833
+ }
40834
+ ],
40835
+ "isReadonly": false,
40836
+ "isOptional": false,
40837
+ "releaseTag": "Public",
40838
+ "name": "band0",
40839
+ "propertyTypeTokenRange": {
40840
+ "startIndex": 1,
40841
+ "endIndex": 2
40842
+ }
40843
+ },
40844
+ {
40845
+ "kind": "PropertySignature",
40846
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band1:member",
40847
+ "docComment": "",
40848
+ "excerptTokens": [
40849
+ {
40850
+ "kind": "Content",
40851
+ "text": "band1: "
40852
+ },
40853
+ {
40854
+ "kind": "Content",
40855
+ "text": "number"
40856
+ },
40857
+ {
40858
+ "kind": "Content",
40859
+ "text": ";"
40860
+ }
40861
+ ],
40862
+ "isReadonly": false,
40863
+ "isOptional": false,
40864
+ "releaseTag": "Public",
40865
+ "name": "band1",
40866
+ "propertyTypeTokenRange": {
40867
+ "startIndex": 1,
40868
+ "endIndex": 2
40869
+ }
40870
+ },
40871
+ {
40872
+ "kind": "PropertySignature",
40873
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band2:member",
40874
+ "docComment": "",
40875
+ "excerptTokens": [
40876
+ {
40877
+ "kind": "Content",
40878
+ "text": "band2: "
40879
+ },
40880
+ {
40881
+ "kind": "Content",
40882
+ "text": "number"
40883
+ },
40884
+ {
40885
+ "kind": "Content",
40886
+ "text": ";"
40887
+ }
40888
+ ],
40889
+ "isReadonly": false,
40890
+ "isOptional": false,
40891
+ "releaseTag": "Public",
40892
+ "name": "band2",
40893
+ "propertyTypeTokenRange": {
40894
+ "startIndex": 1,
40895
+ "endIndex": 2
40896
+ }
40897
+ },
40898
+ {
40899
+ "kind": "PropertySignature",
40900
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band3:member",
40901
+ "docComment": "",
40902
+ "excerptTokens": [
40903
+ {
40904
+ "kind": "Content",
40905
+ "text": "band3: "
40906
+ },
40907
+ {
40908
+ "kind": "Content",
40909
+ "text": "number"
40910
+ },
40911
+ {
40912
+ "kind": "Content",
40913
+ "text": ";"
40914
+ }
40915
+ ],
40916
+ "isReadonly": false,
40917
+ "isOptional": false,
40918
+ "releaseTag": "Public",
40919
+ "name": "band3",
40920
+ "propertyTypeTokenRange": {
40921
+ "startIndex": 1,
40922
+ "endIndex": 2
40923
+ }
40924
+ },
40925
+ {
40926
+ "kind": "PropertySignature",
40927
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band4:member",
40928
+ "docComment": "",
40929
+ "excerptTokens": [
40930
+ {
40931
+ "kind": "Content",
40932
+ "text": "band4: "
40933
+ },
40934
+ {
40935
+ "kind": "Content",
40936
+ "text": "number"
40937
+ },
40938
+ {
40939
+ "kind": "Content",
40940
+ "text": ";"
40941
+ }
40942
+ ],
40943
+ "isReadonly": false,
40944
+ "isOptional": false,
40945
+ "releaseTag": "Public",
40946
+ "name": "band4",
40947
+ "propertyTypeTokenRange": {
40948
+ "startIndex": 1,
40949
+ "endIndex": 2
40950
+ }
40951
+ },
40952
+ {
40953
+ "kind": "PropertySignature",
40954
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band5:member",
40955
+ "docComment": "",
40956
+ "excerptTokens": [
40957
+ {
40958
+ "kind": "Content",
40959
+ "text": "band5: "
40960
+ },
40961
+ {
40962
+ "kind": "Content",
40963
+ "text": "number"
40964
+ },
40965
+ {
40966
+ "kind": "Content",
40967
+ "text": ";"
40968
+ }
40969
+ ],
40970
+ "isReadonly": false,
40971
+ "isOptional": false,
40972
+ "releaseTag": "Public",
40973
+ "name": "band5",
40974
+ "propertyTypeTokenRange": {
40975
+ "startIndex": 1,
40976
+ "endIndex": 2
40977
+ }
40978
+ },
40979
+ {
40980
+ "kind": "PropertySignature",
40981
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band6:member",
40982
+ "docComment": "",
40983
+ "excerptTokens": [
40984
+ {
40985
+ "kind": "Content",
40986
+ "text": "band6: "
40987
+ },
40988
+ {
40989
+ "kind": "Content",
40990
+ "text": "number"
40991
+ },
40992
+ {
40993
+ "kind": "Content",
40994
+ "text": ";"
40995
+ }
40996
+ ],
40997
+ "isReadonly": false,
40998
+ "isOptional": false,
40999
+ "releaseTag": "Public",
41000
+ "name": "band6",
41001
+ "propertyTypeTokenRange": {
41002
+ "startIndex": 1,
41003
+ "endIndex": 2
41004
+ }
41005
+ },
41006
+ {
41007
+ "kind": "PropertySignature",
41008
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band7:member",
41009
+ "docComment": "",
41010
+ "excerptTokens": [
41011
+ {
41012
+ "kind": "Content",
41013
+ "text": "band7: "
41014
+ },
41015
+ {
41016
+ "kind": "Content",
41017
+ "text": "number"
41018
+ },
41019
+ {
41020
+ "kind": "Content",
41021
+ "text": ";"
41022
+ }
41023
+ ],
41024
+ "isReadonly": false,
41025
+ "isOptional": false,
41026
+ "releaseTag": "Public",
41027
+ "name": "band7",
41028
+ "propertyTypeTokenRange": {
41029
+ "startIndex": 1,
41030
+ "endIndex": 2
41031
+ }
41032
+ },
41033
+ {
41034
+ "kind": "PropertySignature",
41035
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#bandsGain:member",
41036
+ "docComment": "/**\n * End when mode == MODE_LOGARITHMIC\n */\n",
41037
+ "excerptTokens": [
41038
+ {
41039
+ "kind": "Content",
41040
+ "text": "bandsGain?: "
41041
+ },
41042
+ {
41043
+ "kind": "Content",
41044
+ "text": "number | undefined"
41045
+ },
41046
+ {
41047
+ "kind": "Content",
41048
+ "text": ";"
41049
+ }
41050
+ ],
41051
+ "isReadonly": false,
41052
+ "isOptional": true,
41053
+ "releaseTag": "Public",
41054
+ "name": "bandsGain",
41055
+ "propertyTypeTokenRange": {
41056
+ "startIndex": 1,
41057
+ "endIndex": 2
41058
+ }
41059
+ },
41060
+ {
41061
+ "kind": "PropertySignature",
41062
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#mode:member",
41063
+ "docComment": "/**\n * Parameters section\n */\n",
41064
+ "excerptTokens": [
41065
+ {
41066
+ "kind": "Content",
41067
+ "text": "mode: "
41068
+ },
41069
+ {
41070
+ "kind": "Reference",
41071
+ "text": "PBAudioAnalysisMode",
41072
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode:enum"
41073
+ },
41074
+ {
41075
+ "kind": "Content",
41076
+ "text": ";"
41077
+ }
41078
+ ],
41079
+ "isReadonly": false,
41080
+ "isOptional": false,
41081
+ "releaseTag": "Public",
41082
+ "name": "mode",
41083
+ "propertyTypeTokenRange": {
41084
+ "startIndex": 1,
41085
+ "endIndex": 2
41086
+ }
41087
+ }
41088
+ ],
41089
+ "extendsTokenRanges": []
41090
+ },
41091
+ {
41092
+ "kind": "Namespace",
41093
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:namespace",
41094
+ "docComment": "/**\n * @public\n */\n",
41095
+ "excerptTokens": [
41096
+ {
41097
+ "kind": "Content",
41098
+ "text": "export declare namespace PBAudioAnalysis "
41099
+ }
41100
+ ],
41101
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
41102
+ "releaseTag": "Public",
41103
+ "name": "PBAudioAnalysis",
41104
+ "preserveMemberOrder": false,
41105
+ "members": [
41106
+ {
41107
+ "kind": "Function",
41108
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis.decode:function(1)",
41109
+ "docComment": "",
41110
+ "excerptTokens": [
41111
+ {
41112
+ "kind": "Content",
41113
+ "text": "function decode(input: "
41114
+ },
41115
+ {
41116
+ "kind": "Reference",
41117
+ "text": "_m0.Reader",
41118
+ "canonicalReference": "protobufjs!Reader:class"
41119
+ },
41120
+ {
41121
+ "kind": "Content",
41122
+ "text": " | "
41123
+ },
41124
+ {
41125
+ "kind": "Reference",
41126
+ "text": "Uint8Array",
41127
+ "canonicalReference": "!Uint8Array:interface"
41128
+ },
41129
+ {
41130
+ "kind": "Content",
41131
+ "text": ", length?: "
41132
+ },
41133
+ {
41134
+ "kind": "Content",
41135
+ "text": "number"
41136
+ },
41137
+ {
41138
+ "kind": "Content",
41139
+ "text": "): "
41140
+ },
41141
+ {
41142
+ "kind": "Reference",
41143
+ "text": "PBAudioAnalysis",
41144
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:interface"
41145
+ },
41146
+ {
41147
+ "kind": "Content",
41148
+ "text": ";"
41149
+ }
41150
+ ],
41151
+ "returnTypeTokenRange": {
41152
+ "startIndex": 7,
41153
+ "endIndex": 8
41154
+ },
41155
+ "releaseTag": "Public",
41156
+ "overloadIndex": 1,
41157
+ "parameters": [
41158
+ {
41159
+ "parameterName": "input",
41160
+ "parameterTypeTokenRange": {
41161
+ "startIndex": 1,
41162
+ "endIndex": 4
41163
+ },
41164
+ "isOptional": false
41165
+ },
41166
+ {
41167
+ "parameterName": "length",
41168
+ "parameterTypeTokenRange": {
41169
+ "startIndex": 5,
41170
+ "endIndex": 6
41171
+ },
41172
+ "isOptional": true
41173
+ }
41174
+ ],
41175
+ "name": "decode"
41176
+ },
41177
+ {
41178
+ "kind": "Function",
41179
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis.encode:function(1)",
41180
+ "docComment": "",
41181
+ "excerptTokens": [
41182
+ {
41183
+ "kind": "Content",
41184
+ "text": "function encode(message: "
41185
+ },
41186
+ {
41187
+ "kind": "Reference",
41188
+ "text": "PBAudioAnalysis",
41189
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:interface"
41190
+ },
41191
+ {
41192
+ "kind": "Content",
41193
+ "text": ", writer?: "
41194
+ },
41195
+ {
41196
+ "kind": "Reference",
41197
+ "text": "_m0.Writer",
41198
+ "canonicalReference": "protobufjs!Writer:class"
41199
+ },
41200
+ {
41201
+ "kind": "Content",
41202
+ "text": "): "
41203
+ },
41204
+ {
41205
+ "kind": "Reference",
41206
+ "text": "_m0.Writer",
41207
+ "canonicalReference": "protobufjs!Writer:class"
41208
+ },
41209
+ {
41210
+ "kind": "Content",
41211
+ "text": ";"
41212
+ }
41213
+ ],
41214
+ "returnTypeTokenRange": {
41215
+ "startIndex": 5,
41216
+ "endIndex": 6
41217
+ },
41218
+ "releaseTag": "Public",
41219
+ "overloadIndex": 1,
41220
+ "parameters": [
41221
+ {
41222
+ "parameterName": "message",
41223
+ "parameterTypeTokenRange": {
41224
+ "startIndex": 1,
41225
+ "endIndex": 2
41226
+ },
41227
+ "isOptional": false
41228
+ },
41229
+ {
41230
+ "parameterName": "writer",
41231
+ "parameterTypeTokenRange": {
41232
+ "startIndex": 3,
41233
+ "endIndex": 4
41234
+ },
41235
+ "isOptional": true
41236
+ }
41237
+ ],
41238
+ "name": "encode"
41239
+ }
41240
+ ]
41241
+ },
41242
+ {
41243
+ "kind": "Enum",
41244
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode:enum",
41245
+ "docComment": "/**\n * @public\n */\n",
41246
+ "excerptTokens": [
41247
+ {
41248
+ "kind": "Content",
41249
+ "text": "export declare const enum PBAudioAnalysisMode "
41250
+ }
41251
+ ],
41252
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
41253
+ "releaseTag": "Public",
41254
+ "name": "PBAudioAnalysisMode",
41255
+ "preserveMemberOrder": false,
41256
+ "members": [
41257
+ {
41258
+ "kind": "EnumMember",
41259
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode.MODE_LOGARITHMIC:member",
41260
+ "docComment": "",
41261
+ "excerptTokens": [
41262
+ {
41263
+ "kind": "Content",
41264
+ "text": "MODE_LOGARITHMIC = "
41265
+ },
41266
+ {
41267
+ "kind": "Content",
41268
+ "text": "1"
41269
+ }
41270
+ ],
41271
+ "initializerTokenRange": {
41272
+ "startIndex": 1,
41273
+ "endIndex": 2
41274
+ },
41275
+ "releaseTag": "Public",
41276
+ "name": "MODE_LOGARITHMIC"
41277
+ },
41278
+ {
41279
+ "kind": "EnumMember",
41280
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode.MODE_RAW:member",
41281
+ "docComment": "",
41282
+ "excerptTokens": [
41283
+ {
41284
+ "kind": "Content",
41285
+ "text": "MODE_RAW = "
41286
+ },
41287
+ {
41288
+ "kind": "Content",
41289
+ "text": "0"
41290
+ }
41291
+ ],
41292
+ "initializerTokenRange": {
41293
+ "startIndex": 1,
41294
+ "endIndex": 2
41295
+ },
41296
+ "releaseTag": "Public",
41297
+ "name": "MODE_RAW"
41298
+ }
41299
+ ]
41300
+ },
40166
41301
  {
40167
41302
  "kind": "Interface",
40168
41303
  "canonicalReference": "@dcl/playground-assets!PBAudioEvent:interface",
@@ -41871,31 +43006,254 @@
41871
43006
  },
41872
43007
  {
41873
43008
  "kind": "Interface",
41874
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:interface",
43009
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:interface",
43010
+ "docComment": "/**\n * @public\n */\n",
43011
+ "excerptTokens": [
43012
+ {
43013
+ "kind": "Content",
43014
+ "text": "export interface PBAvatarEquippedData "
43015
+ }
43016
+ ],
43017
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_equipped_data.gen.d.ts",
43018
+ "releaseTag": "Public",
43019
+ "name": "PBAvatarEquippedData",
43020
+ "preserveMemberOrder": false,
43021
+ "members": [
43022
+ {
43023
+ "kind": "PropertySignature",
43024
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData#emoteUrns:member",
43025
+ "docComment": "",
43026
+ "excerptTokens": [
43027
+ {
43028
+ "kind": "Content",
43029
+ "text": "emoteUrns: "
43030
+ },
43031
+ {
43032
+ "kind": "Content",
43033
+ "text": "string[]"
43034
+ },
43035
+ {
43036
+ "kind": "Content",
43037
+ "text": ";"
43038
+ }
43039
+ ],
43040
+ "isReadonly": false,
43041
+ "isOptional": false,
43042
+ "releaseTag": "Public",
43043
+ "name": "emoteUrns",
43044
+ "propertyTypeTokenRange": {
43045
+ "startIndex": 1,
43046
+ "endIndex": 2
43047
+ }
43048
+ },
43049
+ {
43050
+ "kind": "PropertySignature",
43051
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData#wearableUrns:member",
43052
+ "docComment": "",
43053
+ "excerptTokens": [
43054
+ {
43055
+ "kind": "Content",
43056
+ "text": "wearableUrns: "
43057
+ },
43058
+ {
43059
+ "kind": "Content",
43060
+ "text": "string[]"
43061
+ },
43062
+ {
43063
+ "kind": "Content",
43064
+ "text": ";"
43065
+ }
43066
+ ],
43067
+ "isReadonly": false,
43068
+ "isOptional": false,
43069
+ "releaseTag": "Public",
43070
+ "name": "wearableUrns",
43071
+ "propertyTypeTokenRange": {
43072
+ "startIndex": 1,
43073
+ "endIndex": 2
43074
+ }
43075
+ }
43076
+ ],
43077
+ "extendsTokenRanges": []
43078
+ },
43079
+ {
43080
+ "kind": "Namespace",
43081
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:namespace",
43082
+ "docComment": "/**\n * @public\n */\n",
43083
+ "excerptTokens": [
43084
+ {
43085
+ "kind": "Content",
43086
+ "text": "export declare namespace PBAvatarEquippedData "
43087
+ }
43088
+ ],
43089
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_equipped_data.gen.d.ts",
43090
+ "releaseTag": "Public",
43091
+ "name": "PBAvatarEquippedData",
43092
+ "preserveMemberOrder": false,
43093
+ "members": [
43094
+ {
43095
+ "kind": "Function",
43096
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData.decode:function(1)",
43097
+ "docComment": "",
43098
+ "excerptTokens": [
43099
+ {
43100
+ "kind": "Content",
43101
+ "text": "function decode(input: "
43102
+ },
43103
+ {
43104
+ "kind": "Reference",
43105
+ "text": "_m0.Reader",
43106
+ "canonicalReference": "protobufjs!Reader:class"
43107
+ },
43108
+ {
43109
+ "kind": "Content",
43110
+ "text": " | "
43111
+ },
43112
+ {
43113
+ "kind": "Reference",
43114
+ "text": "Uint8Array",
43115
+ "canonicalReference": "!Uint8Array:interface"
43116
+ },
43117
+ {
43118
+ "kind": "Content",
43119
+ "text": ", length?: "
43120
+ },
43121
+ {
43122
+ "kind": "Content",
43123
+ "text": "number"
43124
+ },
43125
+ {
43126
+ "kind": "Content",
43127
+ "text": "): "
43128
+ },
43129
+ {
43130
+ "kind": "Reference",
43131
+ "text": "PBAvatarEquippedData",
43132
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:interface"
43133
+ },
43134
+ {
43135
+ "kind": "Content",
43136
+ "text": ";"
43137
+ }
43138
+ ],
43139
+ "returnTypeTokenRange": {
43140
+ "startIndex": 7,
43141
+ "endIndex": 8
43142
+ },
43143
+ "releaseTag": "Public",
43144
+ "overloadIndex": 1,
43145
+ "parameters": [
43146
+ {
43147
+ "parameterName": "input",
43148
+ "parameterTypeTokenRange": {
43149
+ "startIndex": 1,
43150
+ "endIndex": 4
43151
+ },
43152
+ "isOptional": false
43153
+ },
43154
+ {
43155
+ "parameterName": "length",
43156
+ "parameterTypeTokenRange": {
43157
+ "startIndex": 5,
43158
+ "endIndex": 6
43159
+ },
43160
+ "isOptional": true
43161
+ }
43162
+ ],
43163
+ "name": "decode"
43164
+ },
43165
+ {
43166
+ "kind": "Function",
43167
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData.encode:function(1)",
43168
+ "docComment": "",
43169
+ "excerptTokens": [
43170
+ {
43171
+ "kind": "Content",
43172
+ "text": "function encode(message: "
43173
+ },
43174
+ {
43175
+ "kind": "Reference",
43176
+ "text": "PBAvatarEquippedData",
43177
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:interface"
43178
+ },
43179
+ {
43180
+ "kind": "Content",
43181
+ "text": ", writer?: "
43182
+ },
43183
+ {
43184
+ "kind": "Reference",
43185
+ "text": "_m0.Writer",
43186
+ "canonicalReference": "protobufjs!Writer:class"
43187
+ },
43188
+ {
43189
+ "kind": "Content",
43190
+ "text": "): "
43191
+ },
43192
+ {
43193
+ "kind": "Reference",
43194
+ "text": "_m0.Writer",
43195
+ "canonicalReference": "protobufjs!Writer:class"
43196
+ },
43197
+ {
43198
+ "kind": "Content",
43199
+ "text": ";"
43200
+ }
43201
+ ],
43202
+ "returnTypeTokenRange": {
43203
+ "startIndex": 5,
43204
+ "endIndex": 6
43205
+ },
43206
+ "releaseTag": "Public",
43207
+ "overloadIndex": 1,
43208
+ "parameters": [
43209
+ {
43210
+ "parameterName": "message",
43211
+ "parameterTypeTokenRange": {
43212
+ "startIndex": 1,
43213
+ "endIndex": 2
43214
+ },
43215
+ "isOptional": false
43216
+ },
43217
+ {
43218
+ "parameterName": "writer",
43219
+ "parameterTypeTokenRange": {
43220
+ "startIndex": 3,
43221
+ "endIndex": 4
43222
+ },
43223
+ "isOptional": true
43224
+ }
43225
+ ],
43226
+ "name": "encode"
43227
+ }
43228
+ ]
43229
+ },
43230
+ {
43231
+ "kind": "Interface",
43232
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface",
41875
43233
  "docComment": "/**\n * @public\n */\n",
41876
43234
  "excerptTokens": [
41877
43235
  {
41878
43236
  "kind": "Content",
41879
- "text": "export interface PBAvatarEquippedData "
43237
+ "text": "export interface PBAvatarLocomotionSettings "
41880
43238
  }
41881
43239
  ],
41882
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_equipped_data.gen.d.ts",
43240
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_locomotion_settings.gen.d.ts",
41883
43241
  "releaseTag": "Public",
41884
- "name": "PBAvatarEquippedData",
43242
+ "name": "PBAvatarLocomotionSettings",
41885
43243
  "preserveMemberOrder": false,
41886
43244
  "members": [
41887
43245
  {
41888
43246
  "kind": "PropertySignature",
41889
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData#emoteUrns:member",
41890
- "docComment": "",
43247
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#doubleJumpHeight:member",
43248
+ "docComment": "/**\n * Height of the double jump (in meters)\n */\n",
41891
43249
  "excerptTokens": [
41892
43250
  {
41893
43251
  "kind": "Content",
41894
- "text": "emoteUrns: "
43252
+ "text": "doubleJumpHeight?: "
41895
43253
  },
41896
43254
  {
41897
43255
  "kind": "Content",
41898
- "text": "string[]"
43256
+ "text": "number | undefined"
41899
43257
  },
41900
43258
  {
41901
43259
  "kind": "Content",
@@ -41903,9 +43261,9 @@
41903
43261
  }
41904
43262
  ],
41905
43263
  "isReadonly": false,
41906
- "isOptional": false,
43264
+ "isOptional": true,
41907
43265
  "releaseTag": "Public",
41908
- "name": "emoteUrns",
43266
+ "name": "doubleJumpHeight",
41909
43267
  "propertyTypeTokenRange": {
41910
43268
  "startIndex": 1,
41911
43269
  "endIndex": 2
@@ -41913,16 +43271,16 @@
41913
43271
  },
41914
43272
  {
41915
43273
  "kind": "PropertySignature",
41916
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData#wearableUrns:member",
41917
- "docComment": "",
43274
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#glidingFallingSpeed:member",
43275
+ "docComment": "/**\n * Maximum falling speed when gliding (in meters per second)\n */\n",
41918
43276
  "excerptTokens": [
41919
43277
  {
41920
43278
  "kind": "Content",
41921
- "text": "wearableUrns: "
43279
+ "text": "glidingFallingSpeed?: "
41922
43280
  },
41923
43281
  {
41924
43282
  "kind": "Content",
41925
- "text": "string[]"
43283
+ "text": "number | undefined"
41926
43284
  },
41927
43285
  {
41928
43286
  "kind": "Content",
@@ -41930,9 +43288,198 @@
41930
43288
  }
41931
43289
  ],
41932
43290
  "isReadonly": false,
41933
- "isOptional": false,
43291
+ "isOptional": true,
41934
43292
  "releaseTag": "Public",
41935
- "name": "wearableUrns",
43293
+ "name": "glidingFallingSpeed",
43294
+ "propertyTypeTokenRange": {
43295
+ "startIndex": 1,
43296
+ "endIndex": 2
43297
+ }
43298
+ },
43299
+ {
43300
+ "kind": "PropertySignature",
43301
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#glidingSpeed:member",
43302
+ "docComment": "/**\n * Maximum speed when gliding (in meters per second)\n */\n",
43303
+ "excerptTokens": [
43304
+ {
43305
+ "kind": "Content",
43306
+ "text": "glidingSpeed?: "
43307
+ },
43308
+ {
43309
+ "kind": "Content",
43310
+ "text": "number | undefined"
43311
+ },
43312
+ {
43313
+ "kind": "Content",
43314
+ "text": ";"
43315
+ }
43316
+ ],
43317
+ "isReadonly": false,
43318
+ "isOptional": true,
43319
+ "releaseTag": "Public",
43320
+ "name": "glidingSpeed",
43321
+ "propertyTypeTokenRange": {
43322
+ "startIndex": 1,
43323
+ "endIndex": 2
43324
+ }
43325
+ },
43326
+ {
43327
+ "kind": "PropertySignature",
43328
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#hardLandingCooldown:member",
43329
+ "docComment": "/**\n * Cooldown time after a hard landing before the avatar can move again (in seconds)\n */\n",
43330
+ "excerptTokens": [
43331
+ {
43332
+ "kind": "Content",
43333
+ "text": "hardLandingCooldown?: "
43334
+ },
43335
+ {
43336
+ "kind": "Content",
43337
+ "text": "number | undefined"
43338
+ },
43339
+ {
43340
+ "kind": "Content",
43341
+ "text": ";"
43342
+ }
43343
+ ],
43344
+ "isReadonly": false,
43345
+ "isOptional": true,
43346
+ "releaseTag": "Public",
43347
+ "name": "hardLandingCooldown",
43348
+ "propertyTypeTokenRange": {
43349
+ "startIndex": 1,
43350
+ "endIndex": 2
43351
+ }
43352
+ },
43353
+ {
43354
+ "kind": "PropertySignature",
43355
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#jogSpeed:member",
43356
+ "docComment": "/**\n * Maximum speed when jogging (in meters per second)\n */\n",
43357
+ "excerptTokens": [
43358
+ {
43359
+ "kind": "Content",
43360
+ "text": "jogSpeed?: "
43361
+ },
43362
+ {
43363
+ "kind": "Content",
43364
+ "text": "number | undefined"
43365
+ },
43366
+ {
43367
+ "kind": "Content",
43368
+ "text": ";"
43369
+ }
43370
+ ],
43371
+ "isReadonly": false,
43372
+ "isOptional": true,
43373
+ "releaseTag": "Public",
43374
+ "name": "jogSpeed",
43375
+ "propertyTypeTokenRange": {
43376
+ "startIndex": 1,
43377
+ "endIndex": 2
43378
+ }
43379
+ },
43380
+ {
43381
+ "kind": "PropertySignature",
43382
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#jumpHeight:member",
43383
+ "docComment": "/**\n * Height of a regular jump (in meters)\n */\n",
43384
+ "excerptTokens": [
43385
+ {
43386
+ "kind": "Content",
43387
+ "text": "jumpHeight?: "
43388
+ },
43389
+ {
43390
+ "kind": "Content",
43391
+ "text": "number | undefined"
43392
+ },
43393
+ {
43394
+ "kind": "Content",
43395
+ "text": ";"
43396
+ }
43397
+ ],
43398
+ "isReadonly": false,
43399
+ "isOptional": true,
43400
+ "releaseTag": "Public",
43401
+ "name": "jumpHeight",
43402
+ "propertyTypeTokenRange": {
43403
+ "startIndex": 1,
43404
+ "endIndex": 2
43405
+ }
43406
+ },
43407
+ {
43408
+ "kind": "PropertySignature",
43409
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#runJumpHeight:member",
43410
+ "docComment": "/**\n * Height of a jump while running (in meters)\n */\n",
43411
+ "excerptTokens": [
43412
+ {
43413
+ "kind": "Content",
43414
+ "text": "runJumpHeight?: "
43415
+ },
43416
+ {
43417
+ "kind": "Content",
43418
+ "text": "number | undefined"
43419
+ },
43420
+ {
43421
+ "kind": "Content",
43422
+ "text": ";"
43423
+ }
43424
+ ],
43425
+ "isReadonly": false,
43426
+ "isOptional": true,
43427
+ "releaseTag": "Public",
43428
+ "name": "runJumpHeight",
43429
+ "propertyTypeTokenRange": {
43430
+ "startIndex": 1,
43431
+ "endIndex": 2
43432
+ }
43433
+ },
43434
+ {
43435
+ "kind": "PropertySignature",
43436
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#runSpeed:member",
43437
+ "docComment": "/**\n * Maximum speed when running (in meters per second)\n */\n",
43438
+ "excerptTokens": [
43439
+ {
43440
+ "kind": "Content",
43441
+ "text": "runSpeed?: "
43442
+ },
43443
+ {
43444
+ "kind": "Content",
43445
+ "text": "number | undefined"
43446
+ },
43447
+ {
43448
+ "kind": "Content",
43449
+ "text": ";"
43450
+ }
43451
+ ],
43452
+ "isReadonly": false,
43453
+ "isOptional": true,
43454
+ "releaseTag": "Public",
43455
+ "name": "runSpeed",
43456
+ "propertyTypeTokenRange": {
43457
+ "startIndex": 1,
43458
+ "endIndex": 2
43459
+ }
43460
+ },
43461
+ {
43462
+ "kind": "PropertySignature",
43463
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#walkSpeed:member",
43464
+ "docComment": "/**\n * Maximum speed when walking (in meters per second)\n */\n",
43465
+ "excerptTokens": [
43466
+ {
43467
+ "kind": "Content",
43468
+ "text": "walkSpeed?: "
43469
+ },
43470
+ {
43471
+ "kind": "Content",
43472
+ "text": "number | undefined"
43473
+ },
43474
+ {
43475
+ "kind": "Content",
43476
+ "text": ";"
43477
+ }
43478
+ ],
43479
+ "isReadonly": false,
43480
+ "isOptional": true,
43481
+ "releaseTag": "Public",
43482
+ "name": "walkSpeed",
41936
43483
  "propertyTypeTokenRange": {
41937
43484
  "startIndex": 1,
41938
43485
  "endIndex": 2
@@ -41943,22 +43490,22 @@
41943
43490
  },
41944
43491
  {
41945
43492
  "kind": "Namespace",
41946
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:namespace",
43493
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:namespace",
41947
43494
  "docComment": "/**\n * @public\n */\n",
41948
43495
  "excerptTokens": [
41949
43496
  {
41950
43497
  "kind": "Content",
41951
- "text": "export declare namespace PBAvatarEquippedData "
43498
+ "text": "export declare namespace PBAvatarLocomotionSettings "
41952
43499
  }
41953
43500
  ],
41954
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_equipped_data.gen.d.ts",
43501
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_locomotion_settings.gen.d.ts",
41955
43502
  "releaseTag": "Public",
41956
- "name": "PBAvatarEquippedData",
43503
+ "name": "PBAvatarLocomotionSettings",
41957
43504
  "preserveMemberOrder": false,
41958
43505
  "members": [
41959
43506
  {
41960
43507
  "kind": "Function",
41961
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData.decode:function(1)",
43508
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings.decode:function(1)",
41962
43509
  "docComment": "",
41963
43510
  "excerptTokens": [
41964
43511
  {
@@ -41993,8 +43540,8 @@
41993
43540
  },
41994
43541
  {
41995
43542
  "kind": "Reference",
41996
- "text": "PBAvatarEquippedData",
41997
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:interface"
43543
+ "text": "PBAvatarLocomotionSettings",
43544
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface"
41998
43545
  },
41999
43546
  {
42000
43547
  "kind": "Content",
@@ -42029,7 +43576,7 @@
42029
43576
  },
42030
43577
  {
42031
43578
  "kind": "Function",
42032
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData.encode:function(1)",
43579
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings.encode:function(1)",
42033
43580
  "docComment": "",
42034
43581
  "excerptTokens": [
42035
43582
  {
@@ -42038,8 +43585,8 @@
42038
43585
  },
42039
43586
  {
42040
43587
  "kind": "Reference",
42041
- "text": "PBAvatarEquippedData",
42042
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:interface"
43588
+ "text": "PBAvatarLocomotionSettings",
43589
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface"
42043
43590
  },
42044
43591
  {
42045
43592
  "kind": "Content",
@@ -50864,6 +52411,38 @@
50864
52411
  "startIndex": 1,
50865
52412
  "endIndex": 2
50866
52413
  }
52414
+ },
52415
+ {
52416
+ "kind": "PropertySignature",
52417
+ "canonicalReference": "@dcl/playground-assets!PBPointerEvents_Entry#interactionType:member",
52418
+ "docComment": "/**\n * the type of interaction source (default 0 == CURSOR)\n */\n",
52419
+ "excerptTokens": [
52420
+ {
52421
+ "kind": "Content",
52422
+ "text": "interactionType?: "
52423
+ },
52424
+ {
52425
+ "kind": "Reference",
52426
+ "text": "InteractionType",
52427
+ "canonicalReference": "@dcl/playground-assets!InteractionType:enum"
52428
+ },
52429
+ {
52430
+ "kind": "Content",
52431
+ "text": " | undefined"
52432
+ },
52433
+ {
52434
+ "kind": "Content",
52435
+ "text": ";"
52436
+ }
52437
+ ],
52438
+ "isReadonly": false,
52439
+ "isOptional": true,
52440
+ "releaseTag": "Public",
52441
+ "name": "interactionType",
52442
+ "propertyTypeTokenRange": {
52443
+ "startIndex": 1,
52444
+ "endIndex": 3
52445
+ }
50867
52446
  }
50868
52447
  ],
50869
52448
  "extendsTokenRanges": []
@@ -51147,6 +52726,33 @@
51147
52726
  "endIndex": 2
51148
52727
  }
51149
52728
  },
52729
+ {
52730
+ "kind": "PropertySignature",
52731
+ "canonicalReference": "@dcl/playground-assets!PBPointerEvents_Info#priority:member",
52732
+ "docComment": "/**\n * resolution order when multiple events overlap, higher wins (default 0)\n */\n",
52733
+ "excerptTokens": [
52734
+ {
52735
+ "kind": "Content",
52736
+ "text": "priority?: "
52737
+ },
52738
+ {
52739
+ "kind": "Content",
52740
+ "text": "number | undefined"
52741
+ },
52742
+ {
52743
+ "kind": "Content",
52744
+ "text": ";"
52745
+ }
52746
+ ],
52747
+ "isReadonly": false,
52748
+ "isOptional": true,
52749
+ "releaseTag": "Public",
52750
+ "name": "priority",
52751
+ "propertyTypeTokenRange": {
52752
+ "startIndex": 1,
52753
+ "endIndex": 2
52754
+ }
52755
+ },
51150
52756
  {
51151
52757
  "kind": "PropertySignature",
51152
52758
  "canonicalReference": "@dcl/playground-assets!PBPointerEvents_Info#showFeedback:member",
@@ -62412,6 +64018,33 @@
62412
64018
  "endIndex": 3
62413
64019
  }
62414
64020
  },
64021
+ {
64022
+ "kind": "PropertySignature",
64023
+ "canonicalReference": "@dcl/playground-assets!PBVirtualCamera#fov:member",
64024
+ "docComment": "/**\n * default: 60\n */\n",
64025
+ "excerptTokens": [
64026
+ {
64027
+ "kind": "Content",
64028
+ "text": "fov?: "
64029
+ },
64030
+ {
64031
+ "kind": "Content",
64032
+ "text": "number | undefined"
64033
+ },
64034
+ {
64035
+ "kind": "Content",
64036
+ "text": ";"
64037
+ }
64038
+ ],
64039
+ "isReadonly": false,
64040
+ "isOptional": true,
64041
+ "releaseTag": "Public",
64042
+ "name": "fov",
64043
+ "propertyTypeTokenRange": {
64044
+ "startIndex": 1,
64045
+ "endIndex": 2
64046
+ }
64047
+ },
62415
64048
  {
62416
64049
  "kind": "PropertySignature",
62417
64050
  "canonicalReference": "@dcl/playground-assets!PBVirtualCamera#lookAtEntity:member",
@@ -65073,16 +66706,376 @@
65073
66706
  "isOptional": false
65074
66707
  }
65075
66708
  ],
65076
- "name": "onPointerHoverLeave"
66709
+ "name": "onPointerHoverLeave"
66710
+ },
66711
+ {
66712
+ "kind": "MethodSignature",
66713
+ "canonicalReference": "@dcl/playground-assets!PointerEventsSystem#onPointerUp:member(1)",
66714
+ "docComment": "/**\n * Execute callback when the user releases the InputButton pointing at the entity\n *\n * @param pointerData - Entity to attach the callback - Opts to trigger Feedback and Button\n *\n * @param cb - Function to execute when click fires\n *\n * @public\n */\n",
66715
+ "excerptTokens": [
66716
+ {
66717
+ "kind": "Content",
66718
+ "text": "onPointerUp(pointerData: "
66719
+ },
66720
+ {
66721
+ "kind": "Content",
66722
+ "text": "{\n entity: "
66723
+ },
66724
+ {
66725
+ "kind": "Reference",
66726
+ "text": "Entity",
66727
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
66728
+ },
66729
+ {
66730
+ "kind": "Content",
66731
+ "text": ";\n opts?: "
66732
+ },
66733
+ {
66734
+ "kind": "Reference",
66735
+ "text": "Partial",
66736
+ "canonicalReference": "!Partial:type"
66737
+ },
66738
+ {
66739
+ "kind": "Content",
66740
+ "text": "<"
66741
+ },
66742
+ {
66743
+ "kind": "Reference",
66744
+ "text": "EventSystemOptions",
66745
+ "canonicalReference": "@dcl/playground-assets!EventSystemOptions:type"
66746
+ },
66747
+ {
66748
+ "kind": "Content",
66749
+ "text": ">;\n }"
66750
+ },
66751
+ {
66752
+ "kind": "Content",
66753
+ "text": ", cb: "
66754
+ },
66755
+ {
66756
+ "kind": "Reference",
66757
+ "text": "EventSystemCallback",
66758
+ "canonicalReference": "@dcl/playground-assets!EventSystemCallback:type"
66759
+ },
66760
+ {
66761
+ "kind": "Content",
66762
+ "text": "): "
66763
+ },
66764
+ {
66765
+ "kind": "Content",
66766
+ "text": "void"
66767
+ },
66768
+ {
66769
+ "kind": "Content",
66770
+ "text": ";"
66771
+ }
66772
+ ],
66773
+ "isOptional": false,
66774
+ "returnTypeTokenRange": {
66775
+ "startIndex": 11,
66776
+ "endIndex": 12
66777
+ },
66778
+ "releaseTag": "Public",
66779
+ "overloadIndex": 1,
66780
+ "parameters": [
66781
+ {
66782
+ "parameterName": "pointerData",
66783
+ "parameterTypeTokenRange": {
66784
+ "startIndex": 1,
66785
+ "endIndex": 8
66786
+ },
66787
+ "isOptional": false
66788
+ },
66789
+ {
66790
+ "parameterName": "cb",
66791
+ "parameterTypeTokenRange": {
66792
+ "startIndex": 9,
66793
+ "endIndex": 10
66794
+ },
66795
+ "isOptional": false
66796
+ }
66797
+ ],
66798
+ "name": "onPointerUp"
66799
+ },
66800
+ {
66801
+ "kind": "MethodSignature",
66802
+ "canonicalReference": "@dcl/playground-assets!PointerEventsSystem#onPointerUp:member(2)",
66803
+ "docComment": "/**\n * @deprecated\n *\n * Use onPointerUp with (pointerData, cb)\n *\n * @param entity - Entity to attach the callback\n *\n * @param cb - Function to execute when click fires\n *\n * @param opts - Opts to trigger Feedback and Button\n */\n",
66804
+ "excerptTokens": [
66805
+ {
66806
+ "kind": "Content",
66807
+ "text": "onPointerUp(entity: "
66808
+ },
66809
+ {
66810
+ "kind": "Reference",
66811
+ "text": "Entity",
66812
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
66813
+ },
66814
+ {
66815
+ "kind": "Content",
66816
+ "text": ", cb: "
66817
+ },
66818
+ {
66819
+ "kind": "Reference",
66820
+ "text": "EventSystemCallback",
66821
+ "canonicalReference": "@dcl/playground-assets!EventSystemCallback:type"
66822
+ },
66823
+ {
66824
+ "kind": "Content",
66825
+ "text": ", opts?: "
66826
+ },
66827
+ {
66828
+ "kind": "Reference",
66829
+ "text": "Partial",
66830
+ "canonicalReference": "!Partial:type"
66831
+ },
66832
+ {
66833
+ "kind": "Content",
66834
+ "text": "<"
66835
+ },
66836
+ {
66837
+ "kind": "Reference",
66838
+ "text": "EventSystemOptions",
66839
+ "canonicalReference": "@dcl/playground-assets!EventSystemOptions:type"
66840
+ },
66841
+ {
66842
+ "kind": "Content",
66843
+ "text": ">"
66844
+ },
66845
+ {
66846
+ "kind": "Content",
66847
+ "text": "): "
66848
+ },
66849
+ {
66850
+ "kind": "Content",
66851
+ "text": "void"
66852
+ },
66853
+ {
66854
+ "kind": "Content",
66855
+ "text": ";"
66856
+ }
66857
+ ],
66858
+ "isOptional": false,
66859
+ "returnTypeTokenRange": {
66860
+ "startIndex": 10,
66861
+ "endIndex": 11
66862
+ },
66863
+ "releaseTag": "Public",
66864
+ "overloadIndex": 2,
66865
+ "parameters": [
66866
+ {
66867
+ "parameterName": "entity",
66868
+ "parameterTypeTokenRange": {
66869
+ "startIndex": 1,
66870
+ "endIndex": 2
66871
+ },
66872
+ "isOptional": false
66873
+ },
66874
+ {
66875
+ "parameterName": "cb",
66876
+ "parameterTypeTokenRange": {
66877
+ "startIndex": 3,
66878
+ "endIndex": 4
66879
+ },
66880
+ "isOptional": false
66881
+ },
66882
+ {
66883
+ "parameterName": "opts",
66884
+ "parameterTypeTokenRange": {
66885
+ "startIndex": 5,
66886
+ "endIndex": 9
66887
+ },
66888
+ "isOptional": true
66889
+ }
66890
+ ],
66891
+ "name": "onPointerUp"
66892
+ },
66893
+ {
66894
+ "kind": "MethodSignature",
66895
+ "canonicalReference": "@dcl/playground-assets!PointerEventsSystem#onProximityDown:member(1)",
66896
+ "docComment": "/**\n * Execute callback when the user presses the proximity button on the entity\n *\n * @param pointerData - Entity to attach the callback - Opts to trigger Feedback and Button\n *\n * @param cb - Function to execute when click fires\n *\n * @public\n */\n",
66897
+ "excerptTokens": [
66898
+ {
66899
+ "kind": "Content",
66900
+ "text": "onProximityDown(pointerData: "
66901
+ },
66902
+ {
66903
+ "kind": "Content",
66904
+ "text": "{\n entity: "
66905
+ },
66906
+ {
66907
+ "kind": "Reference",
66908
+ "text": "Entity",
66909
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
66910
+ },
66911
+ {
66912
+ "kind": "Content",
66913
+ "text": ";\n opts?: "
66914
+ },
66915
+ {
66916
+ "kind": "Reference",
66917
+ "text": "Partial",
66918
+ "canonicalReference": "!Partial:type"
66919
+ },
66920
+ {
66921
+ "kind": "Content",
66922
+ "text": "<"
66923
+ },
66924
+ {
66925
+ "kind": "Reference",
66926
+ "text": "EventSystemOptions",
66927
+ "canonicalReference": "@dcl/playground-assets!EventSystemOptions:type"
66928
+ },
66929
+ {
66930
+ "kind": "Content",
66931
+ "text": ">;\n }"
66932
+ },
66933
+ {
66934
+ "kind": "Content",
66935
+ "text": ", cb: "
66936
+ },
66937
+ {
66938
+ "kind": "Reference",
66939
+ "text": "EventSystemCallback",
66940
+ "canonicalReference": "@dcl/playground-assets!EventSystemCallback:type"
66941
+ },
66942
+ {
66943
+ "kind": "Content",
66944
+ "text": "): "
66945
+ },
66946
+ {
66947
+ "kind": "Content",
66948
+ "text": "void"
66949
+ },
66950
+ {
66951
+ "kind": "Content",
66952
+ "text": ";"
66953
+ }
66954
+ ],
66955
+ "isOptional": false,
66956
+ "returnTypeTokenRange": {
66957
+ "startIndex": 11,
66958
+ "endIndex": 12
66959
+ },
66960
+ "releaseTag": "Public",
66961
+ "overloadIndex": 1,
66962
+ "parameters": [
66963
+ {
66964
+ "parameterName": "pointerData",
66965
+ "parameterTypeTokenRange": {
66966
+ "startIndex": 1,
66967
+ "endIndex": 8
66968
+ },
66969
+ "isOptional": false
66970
+ },
66971
+ {
66972
+ "parameterName": "cb",
66973
+ "parameterTypeTokenRange": {
66974
+ "startIndex": 9,
66975
+ "endIndex": 10
66976
+ },
66977
+ "isOptional": false
66978
+ }
66979
+ ],
66980
+ "name": "onProximityDown"
66981
+ },
66982
+ {
66983
+ "kind": "MethodSignature",
66984
+ "canonicalReference": "@dcl/playground-assets!PointerEventsSystem#onProximityEnter:member(1)",
66985
+ "docComment": "/**\n * Execute callback when the entity enters the proximity zone of the user\n *\n * @param pointerData - Entity to attach the callback - Opts to trigger Feedback and Button\n *\n * @param cb - Function to execute when event fires\n *\n * @public\n */\n",
66986
+ "excerptTokens": [
66987
+ {
66988
+ "kind": "Content",
66989
+ "text": "onProximityEnter(pointerData: "
66990
+ },
66991
+ {
66992
+ "kind": "Content",
66993
+ "text": "{\n entity: "
66994
+ },
66995
+ {
66996
+ "kind": "Reference",
66997
+ "text": "Entity",
66998
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
66999
+ },
67000
+ {
67001
+ "kind": "Content",
67002
+ "text": ";\n opts?: "
67003
+ },
67004
+ {
67005
+ "kind": "Reference",
67006
+ "text": "Partial",
67007
+ "canonicalReference": "!Partial:type"
67008
+ },
67009
+ {
67010
+ "kind": "Content",
67011
+ "text": "<"
67012
+ },
67013
+ {
67014
+ "kind": "Reference",
67015
+ "text": "EventSystemOptions",
67016
+ "canonicalReference": "@dcl/playground-assets!EventSystemOptions:type"
67017
+ },
67018
+ {
67019
+ "kind": "Content",
67020
+ "text": ">;\n }"
67021
+ },
67022
+ {
67023
+ "kind": "Content",
67024
+ "text": ", cb: "
67025
+ },
67026
+ {
67027
+ "kind": "Reference",
67028
+ "text": "EventSystemCallback",
67029
+ "canonicalReference": "@dcl/playground-assets!EventSystemCallback:type"
67030
+ },
67031
+ {
67032
+ "kind": "Content",
67033
+ "text": "): "
67034
+ },
67035
+ {
67036
+ "kind": "Content",
67037
+ "text": "void"
67038
+ },
67039
+ {
67040
+ "kind": "Content",
67041
+ "text": ";"
67042
+ }
67043
+ ],
67044
+ "isOptional": false,
67045
+ "returnTypeTokenRange": {
67046
+ "startIndex": 11,
67047
+ "endIndex": 12
67048
+ },
67049
+ "releaseTag": "Public",
67050
+ "overloadIndex": 1,
67051
+ "parameters": [
67052
+ {
67053
+ "parameterName": "pointerData",
67054
+ "parameterTypeTokenRange": {
67055
+ "startIndex": 1,
67056
+ "endIndex": 8
67057
+ },
67058
+ "isOptional": false
67059
+ },
67060
+ {
67061
+ "parameterName": "cb",
67062
+ "parameterTypeTokenRange": {
67063
+ "startIndex": 9,
67064
+ "endIndex": 10
67065
+ },
67066
+ "isOptional": false
67067
+ }
67068
+ ],
67069
+ "name": "onProximityEnter"
65077
67070
  },
65078
67071
  {
65079
67072
  "kind": "MethodSignature",
65080
- "canonicalReference": "@dcl/playground-assets!PointerEventsSystem#onPointerUp:member(1)",
65081
- "docComment": "/**\n * Execute callback when the user releases the InputButton pointing at the entity\n *\n * @param pointerData - Entity to attach the callback - Opts to trigger Feedback and Button\n *\n * @param cb - Function to execute when click fires\n *\n * @public\n */\n",
67073
+ "canonicalReference": "@dcl/playground-assets!PointerEventsSystem#onProximityLeave:member(1)",
67074
+ "docComment": "/**\n * Execute callback when the entity leaves the proximity zone of the user\n *\n * @param pointerData - Entity to attach the callback - Opts to trigger Feedback and Button\n *\n * @param cb - Function to execute when event fires\n *\n * @public\n */\n",
65082
67075
  "excerptTokens": [
65083
67076
  {
65084
67077
  "kind": "Content",
65085
- "text": "onPointerUp(pointerData: "
67078
+ "text": "onProximityLeave(pointerData: "
65086
67079
  },
65087
67080
  {
65088
67081
  "kind": "Content",
@@ -65162,34 +67155,29 @@
65162
67155
  "isOptional": false
65163
67156
  }
65164
67157
  ],
65165
- "name": "onPointerUp"
67158
+ "name": "onProximityLeave"
65166
67159
  },
65167
67160
  {
65168
67161
  "kind": "MethodSignature",
65169
- "canonicalReference": "@dcl/playground-assets!PointerEventsSystem#onPointerUp:member(2)",
65170
- "docComment": "/**\n * @deprecated\n *\n * Use onPointerUp with (pointerData, cb)\n *\n * @param entity - Entity to attach the callback\n *\n * @param cb - Function to execute when click fires\n *\n * @param opts - Opts to trigger Feedback and Button\n */\n",
67162
+ "canonicalReference": "@dcl/playground-assets!PointerEventsSystem#onProximityUp:member(1)",
67163
+ "docComment": "/**\n * Execute callback when the user releases the proximity button on the entity\n *\n * @param pointerData - Entity to attach the callback - Opts to trigger Feedback and Button\n *\n * @param cb - Function to execute when event fires\n *\n * @public\n */\n",
65171
67164
  "excerptTokens": [
65172
67165
  {
65173
67166
  "kind": "Content",
65174
- "text": "onPointerUp(entity: "
65175
- },
65176
- {
65177
- "kind": "Reference",
65178
- "text": "Entity",
65179
- "canonicalReference": "@dcl/playground-assets!Entity:type"
67167
+ "text": "onProximityUp(pointerData: "
65180
67168
  },
65181
67169
  {
65182
67170
  "kind": "Content",
65183
- "text": ", cb: "
67171
+ "text": "{\n entity: "
65184
67172
  },
65185
67173
  {
65186
67174
  "kind": "Reference",
65187
- "text": "EventSystemCallback",
65188
- "canonicalReference": "@dcl/playground-assets!EventSystemCallback:type"
67175
+ "text": "Entity",
67176
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
65189
67177
  },
65190
67178
  {
65191
67179
  "kind": "Content",
65192
- "text": ", opts?: "
67180
+ "text": ";\n opts?: "
65193
67181
  },
65194
67182
  {
65195
67183
  "kind": "Reference",
@@ -65207,7 +67195,16 @@
65207
67195
  },
65208
67196
  {
65209
67197
  "kind": "Content",
65210
- "text": ">"
67198
+ "text": ">;\n }"
67199
+ },
67200
+ {
67201
+ "kind": "Content",
67202
+ "text": ", cb: "
67203
+ },
67204
+ {
67205
+ "kind": "Reference",
67206
+ "text": "EventSystemCallback",
67207
+ "canonicalReference": "@dcl/playground-assets!EventSystemCallback:type"
65211
67208
  },
65212
67209
  {
65213
67210
  "kind": "Content",
@@ -65224,38 +67221,30 @@
65224
67221
  ],
65225
67222
  "isOptional": false,
65226
67223
  "returnTypeTokenRange": {
65227
- "startIndex": 10,
65228
- "endIndex": 11
67224
+ "startIndex": 11,
67225
+ "endIndex": 12
65229
67226
  },
65230
67227
  "releaseTag": "Public",
65231
- "overloadIndex": 2,
67228
+ "overloadIndex": 1,
65232
67229
  "parameters": [
65233
67230
  {
65234
- "parameterName": "entity",
67231
+ "parameterName": "pointerData",
65235
67232
  "parameterTypeTokenRange": {
65236
67233
  "startIndex": 1,
65237
- "endIndex": 2
67234
+ "endIndex": 8
65238
67235
  },
65239
67236
  "isOptional": false
65240
67237
  },
65241
67238
  {
65242
67239
  "parameterName": "cb",
65243
67240
  "parameterTypeTokenRange": {
65244
- "startIndex": 3,
65245
- "endIndex": 4
67241
+ "startIndex": 9,
67242
+ "endIndex": 10
65246
67243
  },
65247
67244
  "isOptional": false
65248
- },
65249
- {
65250
- "parameterName": "opts",
65251
- "parameterTypeTokenRange": {
65252
- "startIndex": 5,
65253
- "endIndex": 9
65254
- },
65255
- "isOptional": true
65256
67245
  }
65257
67246
  ],
65258
- "name": "onPointerUp"
67247
+ "name": "onProximityUp"
65259
67248
  },
65260
67249
  {
65261
67250
  "kind": "MethodSignature",
@@ -65440,6 +67429,190 @@
65440
67429
  }
65441
67430
  ],
65442
67431
  "name": "removeOnPointerUp"
67432
+ },
67433
+ {
67434
+ "kind": "MethodSignature",
67435
+ "canonicalReference": "@dcl/playground-assets!PointerEventsSystem#removeOnProximityDown:member(1)",
67436
+ "docComment": "/**\n * Remove the callback for onProximityDown event\n *\n * @param entity - Entity where the callback was attached\n *\n * @public\n */\n",
67437
+ "excerptTokens": [
67438
+ {
67439
+ "kind": "Content",
67440
+ "text": "removeOnProximityDown(entity: "
67441
+ },
67442
+ {
67443
+ "kind": "Reference",
67444
+ "text": "Entity",
67445
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
67446
+ },
67447
+ {
67448
+ "kind": "Content",
67449
+ "text": "): "
67450
+ },
67451
+ {
67452
+ "kind": "Content",
67453
+ "text": "void"
67454
+ },
67455
+ {
67456
+ "kind": "Content",
67457
+ "text": ";"
67458
+ }
67459
+ ],
67460
+ "isOptional": false,
67461
+ "returnTypeTokenRange": {
67462
+ "startIndex": 3,
67463
+ "endIndex": 4
67464
+ },
67465
+ "releaseTag": "Public",
67466
+ "overloadIndex": 1,
67467
+ "parameters": [
67468
+ {
67469
+ "parameterName": "entity",
67470
+ "parameterTypeTokenRange": {
67471
+ "startIndex": 1,
67472
+ "endIndex": 2
67473
+ },
67474
+ "isOptional": false
67475
+ }
67476
+ ],
67477
+ "name": "removeOnProximityDown"
67478
+ },
67479
+ {
67480
+ "kind": "MethodSignature",
67481
+ "canonicalReference": "@dcl/playground-assets!PointerEventsSystem#removeOnProximityEnter:member(1)",
67482
+ "docComment": "/**\n * Remove the callback for onProximityEnter event\n *\n * @param entity - Entity where the callback was attached\n *\n * @public\n */\n",
67483
+ "excerptTokens": [
67484
+ {
67485
+ "kind": "Content",
67486
+ "text": "removeOnProximityEnter(entity: "
67487
+ },
67488
+ {
67489
+ "kind": "Reference",
67490
+ "text": "Entity",
67491
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
67492
+ },
67493
+ {
67494
+ "kind": "Content",
67495
+ "text": "): "
67496
+ },
67497
+ {
67498
+ "kind": "Content",
67499
+ "text": "void"
67500
+ },
67501
+ {
67502
+ "kind": "Content",
67503
+ "text": ";"
67504
+ }
67505
+ ],
67506
+ "isOptional": false,
67507
+ "returnTypeTokenRange": {
67508
+ "startIndex": 3,
67509
+ "endIndex": 4
67510
+ },
67511
+ "releaseTag": "Public",
67512
+ "overloadIndex": 1,
67513
+ "parameters": [
67514
+ {
67515
+ "parameterName": "entity",
67516
+ "parameterTypeTokenRange": {
67517
+ "startIndex": 1,
67518
+ "endIndex": 2
67519
+ },
67520
+ "isOptional": false
67521
+ }
67522
+ ],
67523
+ "name": "removeOnProximityEnter"
67524
+ },
67525
+ {
67526
+ "kind": "MethodSignature",
67527
+ "canonicalReference": "@dcl/playground-assets!PointerEventsSystem#removeOnProximityLeave:member(1)",
67528
+ "docComment": "/**\n * Remove the callback for onProximityLeave event\n *\n * @param entity - Entity where the callback was attached\n *\n * @public\n */\n",
67529
+ "excerptTokens": [
67530
+ {
67531
+ "kind": "Content",
67532
+ "text": "removeOnProximityLeave(entity: "
67533
+ },
67534
+ {
67535
+ "kind": "Reference",
67536
+ "text": "Entity",
67537
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
67538
+ },
67539
+ {
67540
+ "kind": "Content",
67541
+ "text": "): "
67542
+ },
67543
+ {
67544
+ "kind": "Content",
67545
+ "text": "void"
67546
+ },
67547
+ {
67548
+ "kind": "Content",
67549
+ "text": ";"
67550
+ }
67551
+ ],
67552
+ "isOptional": false,
67553
+ "returnTypeTokenRange": {
67554
+ "startIndex": 3,
67555
+ "endIndex": 4
67556
+ },
67557
+ "releaseTag": "Public",
67558
+ "overloadIndex": 1,
67559
+ "parameters": [
67560
+ {
67561
+ "parameterName": "entity",
67562
+ "parameterTypeTokenRange": {
67563
+ "startIndex": 1,
67564
+ "endIndex": 2
67565
+ },
67566
+ "isOptional": false
67567
+ }
67568
+ ],
67569
+ "name": "removeOnProximityLeave"
67570
+ },
67571
+ {
67572
+ "kind": "MethodSignature",
67573
+ "canonicalReference": "@dcl/playground-assets!PointerEventsSystem#removeOnProximityUp:member(1)",
67574
+ "docComment": "/**\n * Remove the callback for onProximityUp event\n *\n * @param entity - Entity where the callback was attached\n *\n * @public\n */\n",
67575
+ "excerptTokens": [
67576
+ {
67577
+ "kind": "Content",
67578
+ "text": "removeOnProximityUp(entity: "
67579
+ },
67580
+ {
67581
+ "kind": "Reference",
67582
+ "text": "Entity",
67583
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
67584
+ },
67585
+ {
67586
+ "kind": "Content",
67587
+ "text": "): "
67588
+ },
67589
+ {
67590
+ "kind": "Content",
67591
+ "text": "void"
67592
+ },
67593
+ {
67594
+ "kind": "Content",
67595
+ "text": ";"
67596
+ }
67597
+ ],
67598
+ "isOptional": false,
67599
+ "returnTypeTokenRange": {
67600
+ "startIndex": 3,
67601
+ "endIndex": 4
67602
+ },
67603
+ "releaseTag": "Public",
67604
+ "overloadIndex": 1,
67605
+ "parameters": [
67606
+ {
67607
+ "parameterName": "entity",
67608
+ "parameterTypeTokenRange": {
67609
+ "startIndex": 1,
67610
+ "endIndex": 2
67611
+ },
67612
+ "isOptional": false
67613
+ }
67614
+ ],
67615
+ "name": "removeOnProximityUp"
65443
67616
  }
65444
67617
  ],
65445
67618
  "extendsTokenRanges": []
@@ -65546,6 +67719,48 @@
65546
67719
  "releaseTag": "Public",
65547
67720
  "name": "PET_HOVER_LEAVE"
65548
67721
  },
67722
+ {
67723
+ "kind": "EnumMember",
67724
+ "canonicalReference": "@dcl/playground-assets!PointerEventType.PET_PROXIMITY_ENTER:member",
67725
+ "docComment": "",
67726
+ "excerptTokens": [
67727
+ {
67728
+ "kind": "Content",
67729
+ "text": "PET_PROXIMITY_ENTER = "
67730
+ },
67731
+ {
67732
+ "kind": "Content",
67733
+ "text": "4"
67734
+ }
67735
+ ],
67736
+ "initializerTokenRange": {
67737
+ "startIndex": 1,
67738
+ "endIndex": 2
67739
+ },
67740
+ "releaseTag": "Public",
67741
+ "name": "PET_PROXIMITY_ENTER"
67742
+ },
67743
+ {
67744
+ "kind": "EnumMember",
67745
+ "canonicalReference": "@dcl/playground-assets!PointerEventType.PET_PROXIMITY_LEAVE:member",
67746
+ "docComment": "",
67747
+ "excerptTokens": [
67748
+ {
67749
+ "kind": "Content",
67750
+ "text": "PET_PROXIMITY_LEAVE = "
67751
+ },
67752
+ {
67753
+ "kind": "Content",
67754
+ "text": "5"
67755
+ }
67756
+ ],
67757
+ "initializerTokenRange": {
67758
+ "startIndex": 1,
67759
+ "endIndex": 2
67760
+ },
67761
+ "releaseTag": "Public",
67762
+ "name": "PET_PROXIMITY_LEAVE"
67763
+ },
65549
67764
  {
65550
67765
  "kind": "EnumMember",
65551
67766
  "canonicalReference": "@dcl/playground-assets!PointerEventType.PET_UP:member",