@dcl/playground-assets 7.20.1 → 7.20.2-22104870534.commit-0df3cc0

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\": "
@@ -14030,7 +14532,7 @@
14030
14532
  "name": "componentDefinitionByName",
14031
14533
  "variableTypeTokenRange": {
14032
14534
  "startIndex": 1,
14033
- "endIndex": 320
14535
+ "endIndex": 332
14034
14536
  }
14035
14537
  },
14036
14538
  {
@@ -24222,6 +24724,27 @@
24222
24724
  "releaseTag": "Public",
24223
24725
  "name": "IA_LEFT"
24224
24726
  },
24727
+ {
24728
+ "kind": "EnumMember",
24729
+ "canonicalReference": "@dcl/playground-assets!InputAction.IA_MODIFIER:member",
24730
+ "docComment": "",
24731
+ "excerptTokens": [
24732
+ {
24733
+ "kind": "Content",
24734
+ "text": "IA_MODIFIER = "
24735
+ },
24736
+ {
24737
+ "kind": "Content",
24738
+ "text": "14"
24739
+ }
24740
+ ],
24741
+ "initializerTokenRange": {
24742
+ "startIndex": 1,
24743
+ "endIndex": 2
24744
+ },
24745
+ "releaseTag": "Public",
24746
+ "name": "IA_MODIFIER"
24747
+ },
24225
24748
  {
24226
24749
  "kind": "EnumMember",
24227
24750
  "canonicalReference": "@dcl/playground-assets!InputAction.IA_POINTER:member",
@@ -39457,6 +39980,559 @@
39457
39980
  }
39458
39981
  ]
39459
39982
  },
39983
+ {
39984
+ "kind": "Interface",
39985
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:interface",
39986
+ "docComment": "/**\n * @public\n */\n",
39987
+ "excerptTokens": [
39988
+ {
39989
+ "kind": "Content",
39990
+ "text": "export interface PBAudioAnalysis "
39991
+ }
39992
+ ],
39993
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
39994
+ "releaseTag": "Public",
39995
+ "name": "PBAudioAnalysis",
39996
+ "preserveMemberOrder": false,
39997
+ "members": [
39998
+ {
39999
+ "kind": "PropertySignature",
40000
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#amplitude:member",
40001
+ "docComment": "/**\n * Result section\n */\n",
40002
+ "excerptTokens": [
40003
+ {
40004
+ "kind": "Content",
40005
+ "text": "amplitude: "
40006
+ },
40007
+ {
40008
+ "kind": "Content",
40009
+ "text": "number"
40010
+ },
40011
+ {
40012
+ "kind": "Content",
40013
+ "text": ";"
40014
+ }
40015
+ ],
40016
+ "isReadonly": false,
40017
+ "isOptional": false,
40018
+ "releaseTag": "Public",
40019
+ "name": "amplitude",
40020
+ "propertyTypeTokenRange": {
40021
+ "startIndex": 1,
40022
+ "endIndex": 2
40023
+ }
40024
+ },
40025
+ {
40026
+ "kind": "PropertySignature",
40027
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#amplitudeGain:member",
40028
+ "docComment": "/**\n * Used only when mode == MODE_LOGARITHMIC\n */\n",
40029
+ "excerptTokens": [
40030
+ {
40031
+ "kind": "Content",
40032
+ "text": "amplitudeGain?: "
40033
+ },
40034
+ {
40035
+ "kind": "Content",
40036
+ "text": "number | undefined"
40037
+ },
40038
+ {
40039
+ "kind": "Content",
40040
+ "text": ";"
40041
+ }
40042
+ ],
40043
+ "isReadonly": false,
40044
+ "isOptional": true,
40045
+ "releaseTag": "Public",
40046
+ "name": "amplitudeGain",
40047
+ "propertyTypeTokenRange": {
40048
+ "startIndex": 1,
40049
+ "endIndex": 2
40050
+ }
40051
+ },
40052
+ {
40053
+ "kind": "PropertySignature",
40054
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band0:member",
40055
+ "docComment": "/**\n * Protobuf doesn't support fixed arrays -> 8 band fields\n */\n",
40056
+ "excerptTokens": [
40057
+ {
40058
+ "kind": "Content",
40059
+ "text": "band0: "
40060
+ },
40061
+ {
40062
+ "kind": "Content",
40063
+ "text": "number"
40064
+ },
40065
+ {
40066
+ "kind": "Content",
40067
+ "text": ";"
40068
+ }
40069
+ ],
40070
+ "isReadonly": false,
40071
+ "isOptional": false,
40072
+ "releaseTag": "Public",
40073
+ "name": "band0",
40074
+ "propertyTypeTokenRange": {
40075
+ "startIndex": 1,
40076
+ "endIndex": 2
40077
+ }
40078
+ },
40079
+ {
40080
+ "kind": "PropertySignature",
40081
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band1:member",
40082
+ "docComment": "",
40083
+ "excerptTokens": [
40084
+ {
40085
+ "kind": "Content",
40086
+ "text": "band1: "
40087
+ },
40088
+ {
40089
+ "kind": "Content",
40090
+ "text": "number"
40091
+ },
40092
+ {
40093
+ "kind": "Content",
40094
+ "text": ";"
40095
+ }
40096
+ ],
40097
+ "isReadonly": false,
40098
+ "isOptional": false,
40099
+ "releaseTag": "Public",
40100
+ "name": "band1",
40101
+ "propertyTypeTokenRange": {
40102
+ "startIndex": 1,
40103
+ "endIndex": 2
40104
+ }
40105
+ },
40106
+ {
40107
+ "kind": "PropertySignature",
40108
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band2:member",
40109
+ "docComment": "",
40110
+ "excerptTokens": [
40111
+ {
40112
+ "kind": "Content",
40113
+ "text": "band2: "
40114
+ },
40115
+ {
40116
+ "kind": "Content",
40117
+ "text": "number"
40118
+ },
40119
+ {
40120
+ "kind": "Content",
40121
+ "text": ";"
40122
+ }
40123
+ ],
40124
+ "isReadonly": false,
40125
+ "isOptional": false,
40126
+ "releaseTag": "Public",
40127
+ "name": "band2",
40128
+ "propertyTypeTokenRange": {
40129
+ "startIndex": 1,
40130
+ "endIndex": 2
40131
+ }
40132
+ },
40133
+ {
40134
+ "kind": "PropertySignature",
40135
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band3:member",
40136
+ "docComment": "",
40137
+ "excerptTokens": [
40138
+ {
40139
+ "kind": "Content",
40140
+ "text": "band3: "
40141
+ },
40142
+ {
40143
+ "kind": "Content",
40144
+ "text": "number"
40145
+ },
40146
+ {
40147
+ "kind": "Content",
40148
+ "text": ";"
40149
+ }
40150
+ ],
40151
+ "isReadonly": false,
40152
+ "isOptional": false,
40153
+ "releaseTag": "Public",
40154
+ "name": "band3",
40155
+ "propertyTypeTokenRange": {
40156
+ "startIndex": 1,
40157
+ "endIndex": 2
40158
+ }
40159
+ },
40160
+ {
40161
+ "kind": "PropertySignature",
40162
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band4:member",
40163
+ "docComment": "",
40164
+ "excerptTokens": [
40165
+ {
40166
+ "kind": "Content",
40167
+ "text": "band4: "
40168
+ },
40169
+ {
40170
+ "kind": "Content",
40171
+ "text": "number"
40172
+ },
40173
+ {
40174
+ "kind": "Content",
40175
+ "text": ";"
40176
+ }
40177
+ ],
40178
+ "isReadonly": false,
40179
+ "isOptional": false,
40180
+ "releaseTag": "Public",
40181
+ "name": "band4",
40182
+ "propertyTypeTokenRange": {
40183
+ "startIndex": 1,
40184
+ "endIndex": 2
40185
+ }
40186
+ },
40187
+ {
40188
+ "kind": "PropertySignature",
40189
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band5:member",
40190
+ "docComment": "",
40191
+ "excerptTokens": [
40192
+ {
40193
+ "kind": "Content",
40194
+ "text": "band5: "
40195
+ },
40196
+ {
40197
+ "kind": "Content",
40198
+ "text": "number"
40199
+ },
40200
+ {
40201
+ "kind": "Content",
40202
+ "text": ";"
40203
+ }
40204
+ ],
40205
+ "isReadonly": false,
40206
+ "isOptional": false,
40207
+ "releaseTag": "Public",
40208
+ "name": "band5",
40209
+ "propertyTypeTokenRange": {
40210
+ "startIndex": 1,
40211
+ "endIndex": 2
40212
+ }
40213
+ },
40214
+ {
40215
+ "kind": "PropertySignature",
40216
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band6:member",
40217
+ "docComment": "",
40218
+ "excerptTokens": [
40219
+ {
40220
+ "kind": "Content",
40221
+ "text": "band6: "
40222
+ },
40223
+ {
40224
+ "kind": "Content",
40225
+ "text": "number"
40226
+ },
40227
+ {
40228
+ "kind": "Content",
40229
+ "text": ";"
40230
+ }
40231
+ ],
40232
+ "isReadonly": false,
40233
+ "isOptional": false,
40234
+ "releaseTag": "Public",
40235
+ "name": "band6",
40236
+ "propertyTypeTokenRange": {
40237
+ "startIndex": 1,
40238
+ "endIndex": 2
40239
+ }
40240
+ },
40241
+ {
40242
+ "kind": "PropertySignature",
40243
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band7:member",
40244
+ "docComment": "",
40245
+ "excerptTokens": [
40246
+ {
40247
+ "kind": "Content",
40248
+ "text": "band7: "
40249
+ },
40250
+ {
40251
+ "kind": "Content",
40252
+ "text": "number"
40253
+ },
40254
+ {
40255
+ "kind": "Content",
40256
+ "text": ";"
40257
+ }
40258
+ ],
40259
+ "isReadonly": false,
40260
+ "isOptional": false,
40261
+ "releaseTag": "Public",
40262
+ "name": "band7",
40263
+ "propertyTypeTokenRange": {
40264
+ "startIndex": 1,
40265
+ "endIndex": 2
40266
+ }
40267
+ },
40268
+ {
40269
+ "kind": "PropertySignature",
40270
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#bandsGain:member",
40271
+ "docComment": "/**\n * End when mode == MODE_LOGARITHMIC\n */\n",
40272
+ "excerptTokens": [
40273
+ {
40274
+ "kind": "Content",
40275
+ "text": "bandsGain?: "
40276
+ },
40277
+ {
40278
+ "kind": "Content",
40279
+ "text": "number | undefined"
40280
+ },
40281
+ {
40282
+ "kind": "Content",
40283
+ "text": ";"
40284
+ }
40285
+ ],
40286
+ "isReadonly": false,
40287
+ "isOptional": true,
40288
+ "releaseTag": "Public",
40289
+ "name": "bandsGain",
40290
+ "propertyTypeTokenRange": {
40291
+ "startIndex": 1,
40292
+ "endIndex": 2
40293
+ }
40294
+ },
40295
+ {
40296
+ "kind": "PropertySignature",
40297
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#mode:member",
40298
+ "docComment": "/**\n * Parameters section\n */\n",
40299
+ "excerptTokens": [
40300
+ {
40301
+ "kind": "Content",
40302
+ "text": "mode: "
40303
+ },
40304
+ {
40305
+ "kind": "Reference",
40306
+ "text": "PBAudioAnalysisMode",
40307
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode:enum"
40308
+ },
40309
+ {
40310
+ "kind": "Content",
40311
+ "text": ";"
40312
+ }
40313
+ ],
40314
+ "isReadonly": false,
40315
+ "isOptional": false,
40316
+ "releaseTag": "Public",
40317
+ "name": "mode",
40318
+ "propertyTypeTokenRange": {
40319
+ "startIndex": 1,
40320
+ "endIndex": 2
40321
+ }
40322
+ }
40323
+ ],
40324
+ "extendsTokenRanges": []
40325
+ },
40326
+ {
40327
+ "kind": "Namespace",
40328
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:namespace",
40329
+ "docComment": "/**\n * @public\n */\n",
40330
+ "excerptTokens": [
40331
+ {
40332
+ "kind": "Content",
40333
+ "text": "export declare namespace PBAudioAnalysis "
40334
+ }
40335
+ ],
40336
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
40337
+ "releaseTag": "Public",
40338
+ "name": "PBAudioAnalysis",
40339
+ "preserveMemberOrder": false,
40340
+ "members": [
40341
+ {
40342
+ "kind": "Function",
40343
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis.decode:function(1)",
40344
+ "docComment": "",
40345
+ "excerptTokens": [
40346
+ {
40347
+ "kind": "Content",
40348
+ "text": "function decode(input: "
40349
+ },
40350
+ {
40351
+ "kind": "Reference",
40352
+ "text": "_m0.Reader",
40353
+ "canonicalReference": "protobufjs!Reader:class"
40354
+ },
40355
+ {
40356
+ "kind": "Content",
40357
+ "text": " | "
40358
+ },
40359
+ {
40360
+ "kind": "Reference",
40361
+ "text": "Uint8Array",
40362
+ "canonicalReference": "!Uint8Array:interface"
40363
+ },
40364
+ {
40365
+ "kind": "Content",
40366
+ "text": ", length?: "
40367
+ },
40368
+ {
40369
+ "kind": "Content",
40370
+ "text": "number"
40371
+ },
40372
+ {
40373
+ "kind": "Content",
40374
+ "text": "): "
40375
+ },
40376
+ {
40377
+ "kind": "Reference",
40378
+ "text": "PBAudioAnalysis",
40379
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:interface"
40380
+ },
40381
+ {
40382
+ "kind": "Content",
40383
+ "text": ";"
40384
+ }
40385
+ ],
40386
+ "returnTypeTokenRange": {
40387
+ "startIndex": 7,
40388
+ "endIndex": 8
40389
+ },
40390
+ "releaseTag": "Public",
40391
+ "overloadIndex": 1,
40392
+ "parameters": [
40393
+ {
40394
+ "parameterName": "input",
40395
+ "parameterTypeTokenRange": {
40396
+ "startIndex": 1,
40397
+ "endIndex": 4
40398
+ },
40399
+ "isOptional": false
40400
+ },
40401
+ {
40402
+ "parameterName": "length",
40403
+ "parameterTypeTokenRange": {
40404
+ "startIndex": 5,
40405
+ "endIndex": 6
40406
+ },
40407
+ "isOptional": true
40408
+ }
40409
+ ],
40410
+ "name": "decode"
40411
+ },
40412
+ {
40413
+ "kind": "Function",
40414
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis.encode:function(1)",
40415
+ "docComment": "",
40416
+ "excerptTokens": [
40417
+ {
40418
+ "kind": "Content",
40419
+ "text": "function encode(message: "
40420
+ },
40421
+ {
40422
+ "kind": "Reference",
40423
+ "text": "PBAudioAnalysis",
40424
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:interface"
40425
+ },
40426
+ {
40427
+ "kind": "Content",
40428
+ "text": ", writer?: "
40429
+ },
40430
+ {
40431
+ "kind": "Reference",
40432
+ "text": "_m0.Writer",
40433
+ "canonicalReference": "protobufjs!Writer:class"
40434
+ },
40435
+ {
40436
+ "kind": "Content",
40437
+ "text": "): "
40438
+ },
40439
+ {
40440
+ "kind": "Reference",
40441
+ "text": "_m0.Writer",
40442
+ "canonicalReference": "protobufjs!Writer:class"
40443
+ },
40444
+ {
40445
+ "kind": "Content",
40446
+ "text": ";"
40447
+ }
40448
+ ],
40449
+ "returnTypeTokenRange": {
40450
+ "startIndex": 5,
40451
+ "endIndex": 6
40452
+ },
40453
+ "releaseTag": "Public",
40454
+ "overloadIndex": 1,
40455
+ "parameters": [
40456
+ {
40457
+ "parameterName": "message",
40458
+ "parameterTypeTokenRange": {
40459
+ "startIndex": 1,
40460
+ "endIndex": 2
40461
+ },
40462
+ "isOptional": false
40463
+ },
40464
+ {
40465
+ "parameterName": "writer",
40466
+ "parameterTypeTokenRange": {
40467
+ "startIndex": 3,
40468
+ "endIndex": 4
40469
+ },
40470
+ "isOptional": true
40471
+ }
40472
+ ],
40473
+ "name": "encode"
40474
+ }
40475
+ ]
40476
+ },
40477
+ {
40478
+ "kind": "Enum",
40479
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode:enum",
40480
+ "docComment": "/**\n * @public\n */\n",
40481
+ "excerptTokens": [
40482
+ {
40483
+ "kind": "Content",
40484
+ "text": "export declare const enum PBAudioAnalysisMode "
40485
+ }
40486
+ ],
40487
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
40488
+ "releaseTag": "Public",
40489
+ "name": "PBAudioAnalysisMode",
40490
+ "preserveMemberOrder": false,
40491
+ "members": [
40492
+ {
40493
+ "kind": "EnumMember",
40494
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode.MODE_LOGARITHMIC:member",
40495
+ "docComment": "",
40496
+ "excerptTokens": [
40497
+ {
40498
+ "kind": "Content",
40499
+ "text": "MODE_LOGARITHMIC = "
40500
+ },
40501
+ {
40502
+ "kind": "Content",
40503
+ "text": "1"
40504
+ }
40505
+ ],
40506
+ "initializerTokenRange": {
40507
+ "startIndex": 1,
40508
+ "endIndex": 2
40509
+ },
40510
+ "releaseTag": "Public",
40511
+ "name": "MODE_LOGARITHMIC"
40512
+ },
40513
+ {
40514
+ "kind": "EnumMember",
40515
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode.MODE_RAW:member",
40516
+ "docComment": "",
40517
+ "excerptTokens": [
40518
+ {
40519
+ "kind": "Content",
40520
+ "text": "MODE_RAW = "
40521
+ },
40522
+ {
40523
+ "kind": "Content",
40524
+ "text": "0"
40525
+ }
40526
+ ],
40527
+ "initializerTokenRange": {
40528
+ "startIndex": 1,
40529
+ "endIndex": 2
40530
+ },
40531
+ "releaseTag": "Public",
40532
+ "name": "MODE_RAW"
40533
+ }
40534
+ ]
40535
+ },
39460
40536
  {
39461
40537
  "kind": "Interface",
39462
40538
  "canonicalReference": "@dcl/playground-assets!PBAudioEvent:interface",
@@ -41386,6 +42462,337 @@
41386
42462
  }
41387
42463
  ]
41388
42464
  },
42465
+ {
42466
+ "kind": "Interface",
42467
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface",
42468
+ "docComment": "/**\n * @public\n */\n",
42469
+ "excerptTokens": [
42470
+ {
42471
+ "kind": "Content",
42472
+ "text": "export interface PBAvatarLocomotionSettings "
42473
+ }
42474
+ ],
42475
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_locomotion_settings.gen.d.ts",
42476
+ "releaseTag": "Public",
42477
+ "name": "PBAvatarLocomotionSettings",
42478
+ "preserveMemberOrder": false,
42479
+ "members": [
42480
+ {
42481
+ "kind": "PropertySignature",
42482
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#hardLandingCooldown:member",
42483
+ "docComment": "/**\n * Cooldown time after a hard landing before the avatar can move again (in seconds)\n */\n",
42484
+ "excerptTokens": [
42485
+ {
42486
+ "kind": "Content",
42487
+ "text": "hardLandingCooldown?: "
42488
+ },
42489
+ {
42490
+ "kind": "Content",
42491
+ "text": "number | undefined"
42492
+ },
42493
+ {
42494
+ "kind": "Content",
42495
+ "text": ";"
42496
+ }
42497
+ ],
42498
+ "isReadonly": false,
42499
+ "isOptional": true,
42500
+ "releaseTag": "Public",
42501
+ "name": "hardLandingCooldown",
42502
+ "propertyTypeTokenRange": {
42503
+ "startIndex": 1,
42504
+ "endIndex": 2
42505
+ }
42506
+ },
42507
+ {
42508
+ "kind": "PropertySignature",
42509
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#jogSpeed:member",
42510
+ "docComment": "/**\n * Maximum speed when jogging (in meters per second)\n */\n",
42511
+ "excerptTokens": [
42512
+ {
42513
+ "kind": "Content",
42514
+ "text": "jogSpeed?: "
42515
+ },
42516
+ {
42517
+ "kind": "Content",
42518
+ "text": "number | undefined"
42519
+ },
42520
+ {
42521
+ "kind": "Content",
42522
+ "text": ";"
42523
+ }
42524
+ ],
42525
+ "isReadonly": false,
42526
+ "isOptional": true,
42527
+ "releaseTag": "Public",
42528
+ "name": "jogSpeed",
42529
+ "propertyTypeTokenRange": {
42530
+ "startIndex": 1,
42531
+ "endIndex": 2
42532
+ }
42533
+ },
42534
+ {
42535
+ "kind": "PropertySignature",
42536
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#jumpHeight:member",
42537
+ "docComment": "/**\n * Height of a regular jump (in meters)\n */\n",
42538
+ "excerptTokens": [
42539
+ {
42540
+ "kind": "Content",
42541
+ "text": "jumpHeight?: "
42542
+ },
42543
+ {
42544
+ "kind": "Content",
42545
+ "text": "number | undefined"
42546
+ },
42547
+ {
42548
+ "kind": "Content",
42549
+ "text": ";"
42550
+ }
42551
+ ],
42552
+ "isReadonly": false,
42553
+ "isOptional": true,
42554
+ "releaseTag": "Public",
42555
+ "name": "jumpHeight",
42556
+ "propertyTypeTokenRange": {
42557
+ "startIndex": 1,
42558
+ "endIndex": 2
42559
+ }
42560
+ },
42561
+ {
42562
+ "kind": "PropertySignature",
42563
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#runJumpHeight:member",
42564
+ "docComment": "/**\n * Height of a jump while running (in meters)\n */\n",
42565
+ "excerptTokens": [
42566
+ {
42567
+ "kind": "Content",
42568
+ "text": "runJumpHeight?: "
42569
+ },
42570
+ {
42571
+ "kind": "Content",
42572
+ "text": "number | undefined"
42573
+ },
42574
+ {
42575
+ "kind": "Content",
42576
+ "text": ";"
42577
+ }
42578
+ ],
42579
+ "isReadonly": false,
42580
+ "isOptional": true,
42581
+ "releaseTag": "Public",
42582
+ "name": "runJumpHeight",
42583
+ "propertyTypeTokenRange": {
42584
+ "startIndex": 1,
42585
+ "endIndex": 2
42586
+ }
42587
+ },
42588
+ {
42589
+ "kind": "PropertySignature",
42590
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#runSpeed:member",
42591
+ "docComment": "/**\n * Maximum speed when running (in meters per second)\n */\n",
42592
+ "excerptTokens": [
42593
+ {
42594
+ "kind": "Content",
42595
+ "text": "runSpeed?: "
42596
+ },
42597
+ {
42598
+ "kind": "Content",
42599
+ "text": "number | undefined"
42600
+ },
42601
+ {
42602
+ "kind": "Content",
42603
+ "text": ";"
42604
+ }
42605
+ ],
42606
+ "isReadonly": false,
42607
+ "isOptional": true,
42608
+ "releaseTag": "Public",
42609
+ "name": "runSpeed",
42610
+ "propertyTypeTokenRange": {
42611
+ "startIndex": 1,
42612
+ "endIndex": 2
42613
+ }
42614
+ },
42615
+ {
42616
+ "kind": "PropertySignature",
42617
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#walkSpeed:member",
42618
+ "docComment": "/**\n * Maximum speed when walking (in meters per second)\n */\n",
42619
+ "excerptTokens": [
42620
+ {
42621
+ "kind": "Content",
42622
+ "text": "walkSpeed?: "
42623
+ },
42624
+ {
42625
+ "kind": "Content",
42626
+ "text": "number | undefined"
42627
+ },
42628
+ {
42629
+ "kind": "Content",
42630
+ "text": ";"
42631
+ }
42632
+ ],
42633
+ "isReadonly": false,
42634
+ "isOptional": true,
42635
+ "releaseTag": "Public",
42636
+ "name": "walkSpeed",
42637
+ "propertyTypeTokenRange": {
42638
+ "startIndex": 1,
42639
+ "endIndex": 2
42640
+ }
42641
+ }
42642
+ ],
42643
+ "extendsTokenRanges": []
42644
+ },
42645
+ {
42646
+ "kind": "Namespace",
42647
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:namespace",
42648
+ "docComment": "/**\n * @public\n */\n",
42649
+ "excerptTokens": [
42650
+ {
42651
+ "kind": "Content",
42652
+ "text": "export declare namespace PBAvatarLocomotionSettings "
42653
+ }
42654
+ ],
42655
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_locomotion_settings.gen.d.ts",
42656
+ "releaseTag": "Public",
42657
+ "name": "PBAvatarLocomotionSettings",
42658
+ "preserveMemberOrder": false,
42659
+ "members": [
42660
+ {
42661
+ "kind": "Function",
42662
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings.decode:function(1)",
42663
+ "docComment": "",
42664
+ "excerptTokens": [
42665
+ {
42666
+ "kind": "Content",
42667
+ "text": "function decode(input: "
42668
+ },
42669
+ {
42670
+ "kind": "Reference",
42671
+ "text": "_m0.Reader",
42672
+ "canonicalReference": "protobufjs!Reader:class"
42673
+ },
42674
+ {
42675
+ "kind": "Content",
42676
+ "text": " | "
42677
+ },
42678
+ {
42679
+ "kind": "Reference",
42680
+ "text": "Uint8Array",
42681
+ "canonicalReference": "!Uint8Array:interface"
42682
+ },
42683
+ {
42684
+ "kind": "Content",
42685
+ "text": ", length?: "
42686
+ },
42687
+ {
42688
+ "kind": "Content",
42689
+ "text": "number"
42690
+ },
42691
+ {
42692
+ "kind": "Content",
42693
+ "text": "): "
42694
+ },
42695
+ {
42696
+ "kind": "Reference",
42697
+ "text": "PBAvatarLocomotionSettings",
42698
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface"
42699
+ },
42700
+ {
42701
+ "kind": "Content",
42702
+ "text": ";"
42703
+ }
42704
+ ],
42705
+ "returnTypeTokenRange": {
42706
+ "startIndex": 7,
42707
+ "endIndex": 8
42708
+ },
42709
+ "releaseTag": "Public",
42710
+ "overloadIndex": 1,
42711
+ "parameters": [
42712
+ {
42713
+ "parameterName": "input",
42714
+ "parameterTypeTokenRange": {
42715
+ "startIndex": 1,
42716
+ "endIndex": 4
42717
+ },
42718
+ "isOptional": false
42719
+ },
42720
+ {
42721
+ "parameterName": "length",
42722
+ "parameterTypeTokenRange": {
42723
+ "startIndex": 5,
42724
+ "endIndex": 6
42725
+ },
42726
+ "isOptional": true
42727
+ }
42728
+ ],
42729
+ "name": "decode"
42730
+ },
42731
+ {
42732
+ "kind": "Function",
42733
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings.encode:function(1)",
42734
+ "docComment": "",
42735
+ "excerptTokens": [
42736
+ {
42737
+ "kind": "Content",
42738
+ "text": "function encode(message: "
42739
+ },
42740
+ {
42741
+ "kind": "Reference",
42742
+ "text": "PBAvatarLocomotionSettings",
42743
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface"
42744
+ },
42745
+ {
42746
+ "kind": "Content",
42747
+ "text": ", writer?: "
42748
+ },
42749
+ {
42750
+ "kind": "Reference",
42751
+ "text": "_m0.Writer",
42752
+ "canonicalReference": "protobufjs!Writer:class"
42753
+ },
42754
+ {
42755
+ "kind": "Content",
42756
+ "text": "): "
42757
+ },
42758
+ {
42759
+ "kind": "Reference",
42760
+ "text": "_m0.Writer",
42761
+ "canonicalReference": "protobufjs!Writer:class"
42762
+ },
42763
+ {
42764
+ "kind": "Content",
42765
+ "text": ";"
42766
+ }
42767
+ ],
42768
+ "returnTypeTokenRange": {
42769
+ "startIndex": 5,
42770
+ "endIndex": 6
42771
+ },
42772
+ "releaseTag": "Public",
42773
+ "overloadIndex": 1,
42774
+ "parameters": [
42775
+ {
42776
+ "parameterName": "message",
42777
+ "parameterTypeTokenRange": {
42778
+ "startIndex": 1,
42779
+ "endIndex": 2
42780
+ },
42781
+ "isOptional": false
42782
+ },
42783
+ {
42784
+ "parameterName": "writer",
42785
+ "parameterTypeTokenRange": {
42786
+ "startIndex": 3,
42787
+ "endIndex": 4
42788
+ },
42789
+ "isOptional": true
42790
+ }
42791
+ ],
42792
+ "name": "encode"
42793
+ }
42794
+ ]
42795
+ },
41389
42796
  {
41390
42797
  "kind": "Interface",
41391
42798
  "canonicalReference": "@dcl/playground-assets!PBAvatarModifierArea:interface",
@@ -61214,6 +62621,33 @@
61214
62621
  "endIndex": 3
61215
62622
  }
61216
62623
  },
62624
+ {
62625
+ "kind": "PropertySignature",
62626
+ "canonicalReference": "@dcl/playground-assets!PBVirtualCamera#fov:member",
62627
+ "docComment": "/**\n * default: 60\n */\n",
62628
+ "excerptTokens": [
62629
+ {
62630
+ "kind": "Content",
62631
+ "text": "fov?: "
62632
+ },
62633
+ {
62634
+ "kind": "Content",
62635
+ "text": "number | undefined"
62636
+ },
62637
+ {
62638
+ "kind": "Content",
62639
+ "text": ";"
62640
+ }
62641
+ ],
62642
+ "isReadonly": false,
62643
+ "isOptional": true,
62644
+ "releaseTag": "Public",
62645
+ "name": "fov",
62646
+ "propertyTypeTokenRange": {
62647
+ "startIndex": 1,
62648
+ "endIndex": 2
62649
+ }
62650
+ },
61217
62651
  {
61218
62652
  "kind": "PropertySignature",
61219
62653
  "canonicalReference": "@dcl/playground-assets!PBVirtualCamera#lookAtEntity:member",