@dcl/playground-assets 7.18.2-21457748765.commit-7ae2e38 → 7.18.2-21458377493.commit-ea4f3b6

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.
@@ -896,6 +896,417 @@
896
896
  ],
897
897
  "name": "areConnected"
898
898
  },
899
+ {
900
+ "kind": "Variable",
901
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysis:var",
902
+ "docComment": "",
903
+ "excerptTokens": [
904
+ {
905
+ "kind": "Content",
906
+ "text": "AudioAnalysis: "
907
+ },
908
+ {
909
+ "kind": "Reference",
910
+ "text": "AudioAnalysisComponentDefinitionExtended",
911
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisComponentDefinitionExtended:interface"
912
+ }
913
+ ],
914
+ "fileUrlPath": "../ecs/dist/index.d.ts",
915
+ "isReadonly": true,
916
+ "releaseTag": "Public",
917
+ "name": "AudioAnalysis",
918
+ "variableTypeTokenRange": {
919
+ "startIndex": 1,
920
+ "endIndex": 2
921
+ }
922
+ },
923
+ {
924
+ "kind": "Interface",
925
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisComponentDefinitionExtended:interface",
926
+ "docComment": "",
927
+ "excerptTokens": [
928
+ {
929
+ "kind": "Content",
930
+ "text": "export interface AudioAnalysisComponentDefinitionExtended extends "
931
+ },
932
+ {
933
+ "kind": "Reference",
934
+ "text": "LastWriteWinElementSetComponentDefinition",
935
+ "canonicalReference": "@dcl/playground-assets!LastWriteWinElementSetComponentDefinition:interface"
936
+ },
937
+ {
938
+ "kind": "Content",
939
+ "text": "<"
940
+ },
941
+ {
942
+ "kind": "Reference",
943
+ "text": "PBAudioAnalysis",
944
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis"
945
+ },
946
+ {
947
+ "kind": "Content",
948
+ "text": ">"
949
+ },
950
+ {
951
+ "kind": "Content",
952
+ "text": " "
953
+ }
954
+ ],
955
+ "fileUrlPath": "../ecs/dist/components/extended/AudioAnalysis.d.ts",
956
+ "releaseTag": "Public",
957
+ "name": "AudioAnalysisComponentDefinitionExtended",
958
+ "preserveMemberOrder": false,
959
+ "members": [
960
+ {
961
+ "kind": "MethodSignature",
962
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisComponentDefinitionExtended#createAudioAnalysis:member(1)",
963
+ "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",
964
+ "excerptTokens": [
965
+ {
966
+ "kind": "Content",
967
+ "text": "createAudioAnalysis(entity: "
968
+ },
969
+ {
970
+ "kind": "Reference",
971
+ "text": "Entity",
972
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
973
+ },
974
+ {
975
+ "kind": "Content",
976
+ "text": ", mode?: "
977
+ },
978
+ {
979
+ "kind": "Reference",
980
+ "text": "PBAudioAnalysisMode",
981
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode:enum"
982
+ },
983
+ {
984
+ "kind": "Content",
985
+ "text": ", // default is PBAudioAnalysisMode.MODE_LOGARITHMIC\n amplitudeGain?: "
986
+ },
987
+ {
988
+ "kind": "Content",
989
+ "text": "number"
990
+ },
991
+ {
992
+ "kind": "Content",
993
+ "text": ", bandsGain?: "
994
+ },
995
+ {
996
+ "kind": "Content",
997
+ "text": "number"
998
+ },
999
+ {
1000
+ "kind": "Content",
1001
+ "text": "): "
1002
+ },
1003
+ {
1004
+ "kind": "Content",
1005
+ "text": "void"
1006
+ },
1007
+ {
1008
+ "kind": "Content",
1009
+ "text": ";"
1010
+ }
1011
+ ],
1012
+ "isOptional": false,
1013
+ "returnTypeTokenRange": {
1014
+ "startIndex": 9,
1015
+ "endIndex": 10
1016
+ },
1017
+ "releaseTag": "Public",
1018
+ "overloadIndex": 1,
1019
+ "parameters": [
1020
+ {
1021
+ "parameterName": "entity",
1022
+ "parameterTypeTokenRange": {
1023
+ "startIndex": 1,
1024
+ "endIndex": 2
1025
+ },
1026
+ "isOptional": false
1027
+ },
1028
+ {
1029
+ "parameterName": "mode",
1030
+ "parameterTypeTokenRange": {
1031
+ "startIndex": 3,
1032
+ "endIndex": 4
1033
+ },
1034
+ "isOptional": true
1035
+ },
1036
+ {
1037
+ "parameterName": "amplitudeGain",
1038
+ "parameterTypeTokenRange": {
1039
+ "startIndex": 5,
1040
+ "endIndex": 6
1041
+ },
1042
+ "isOptional": true
1043
+ },
1044
+ {
1045
+ "parameterName": "bandsGain",
1046
+ "parameterTypeTokenRange": {
1047
+ "startIndex": 7,
1048
+ "endIndex": 8
1049
+ },
1050
+ "isOptional": true
1051
+ }
1052
+ ],
1053
+ "name": "createAudioAnalysis"
1054
+ },
1055
+ {
1056
+ "kind": "MethodSignature",
1057
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisComponentDefinitionExtended#createOrReplaceAudioAnalysis:member(1)",
1058
+ "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",
1059
+ "excerptTokens": [
1060
+ {
1061
+ "kind": "Content",
1062
+ "text": "createOrReplaceAudioAnalysis(entity: "
1063
+ },
1064
+ {
1065
+ "kind": "Reference",
1066
+ "text": "Entity",
1067
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
1068
+ },
1069
+ {
1070
+ "kind": "Content",
1071
+ "text": ", mode?: "
1072
+ },
1073
+ {
1074
+ "kind": "Reference",
1075
+ "text": "PBAudioAnalysisMode",
1076
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode:enum"
1077
+ },
1078
+ {
1079
+ "kind": "Content",
1080
+ "text": ", // default is PBAudioAnalysisMode.MODE_LOGARITHMIC\n amplitudeGain?: "
1081
+ },
1082
+ {
1083
+ "kind": "Content",
1084
+ "text": "number"
1085
+ },
1086
+ {
1087
+ "kind": "Content",
1088
+ "text": ", bandsGain?: "
1089
+ },
1090
+ {
1091
+ "kind": "Content",
1092
+ "text": "number"
1093
+ },
1094
+ {
1095
+ "kind": "Content",
1096
+ "text": "): "
1097
+ },
1098
+ {
1099
+ "kind": "Content",
1100
+ "text": "void"
1101
+ },
1102
+ {
1103
+ "kind": "Content",
1104
+ "text": ";"
1105
+ }
1106
+ ],
1107
+ "isOptional": false,
1108
+ "returnTypeTokenRange": {
1109
+ "startIndex": 9,
1110
+ "endIndex": 10
1111
+ },
1112
+ "releaseTag": "Public",
1113
+ "overloadIndex": 1,
1114
+ "parameters": [
1115
+ {
1116
+ "parameterName": "entity",
1117
+ "parameterTypeTokenRange": {
1118
+ "startIndex": 1,
1119
+ "endIndex": 2
1120
+ },
1121
+ "isOptional": false
1122
+ },
1123
+ {
1124
+ "parameterName": "mode",
1125
+ "parameterTypeTokenRange": {
1126
+ "startIndex": 3,
1127
+ "endIndex": 4
1128
+ },
1129
+ "isOptional": true
1130
+ },
1131
+ {
1132
+ "parameterName": "amplitudeGain",
1133
+ "parameterTypeTokenRange": {
1134
+ "startIndex": 5,
1135
+ "endIndex": 6
1136
+ },
1137
+ "isOptional": true
1138
+ },
1139
+ {
1140
+ "parameterName": "bandsGain",
1141
+ "parameterTypeTokenRange": {
1142
+ "startIndex": 7,
1143
+ "endIndex": 8
1144
+ },
1145
+ "isOptional": true
1146
+ }
1147
+ ],
1148
+ "name": "createOrReplaceAudioAnalysis"
1149
+ },
1150
+ {
1151
+ "kind": "MethodSignature",
1152
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisComponentDefinitionExtended#readIntoView:member(1)",
1153
+ "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",
1154
+ "excerptTokens": [
1155
+ {
1156
+ "kind": "Content",
1157
+ "text": "readIntoView(entity: "
1158
+ },
1159
+ {
1160
+ "kind": "Reference",
1161
+ "text": "Entity",
1162
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
1163
+ },
1164
+ {
1165
+ "kind": "Content",
1166
+ "text": ", out: "
1167
+ },
1168
+ {
1169
+ "kind": "Reference",
1170
+ "text": "AudioAnalysisView",
1171
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisView:type"
1172
+ },
1173
+ {
1174
+ "kind": "Content",
1175
+ "text": "): "
1176
+ },
1177
+ {
1178
+ "kind": "Content",
1179
+ "text": "void"
1180
+ },
1181
+ {
1182
+ "kind": "Content",
1183
+ "text": ";"
1184
+ }
1185
+ ],
1186
+ "isOptional": false,
1187
+ "returnTypeTokenRange": {
1188
+ "startIndex": 5,
1189
+ "endIndex": 6
1190
+ },
1191
+ "releaseTag": "Public",
1192
+ "overloadIndex": 1,
1193
+ "parameters": [
1194
+ {
1195
+ "parameterName": "entity",
1196
+ "parameterTypeTokenRange": {
1197
+ "startIndex": 1,
1198
+ "endIndex": 2
1199
+ },
1200
+ "isOptional": false
1201
+ },
1202
+ {
1203
+ "parameterName": "out",
1204
+ "parameterTypeTokenRange": {
1205
+ "startIndex": 3,
1206
+ "endIndex": 4
1207
+ },
1208
+ "isOptional": false
1209
+ }
1210
+ ],
1211
+ "name": "readIntoView"
1212
+ },
1213
+ {
1214
+ "kind": "MethodSignature",
1215
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisComponentDefinitionExtended#tryReadIntoView:member(1)",
1216
+ "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",
1217
+ "excerptTokens": [
1218
+ {
1219
+ "kind": "Content",
1220
+ "text": "tryReadIntoView(entity: "
1221
+ },
1222
+ {
1223
+ "kind": "Reference",
1224
+ "text": "Entity",
1225
+ "canonicalReference": "@dcl/playground-assets!Entity:type"
1226
+ },
1227
+ {
1228
+ "kind": "Content",
1229
+ "text": ", out: "
1230
+ },
1231
+ {
1232
+ "kind": "Reference",
1233
+ "text": "AudioAnalysisView",
1234
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisView:type"
1235
+ },
1236
+ {
1237
+ "kind": "Content",
1238
+ "text": "): "
1239
+ },
1240
+ {
1241
+ "kind": "Content",
1242
+ "text": "boolean"
1243
+ },
1244
+ {
1245
+ "kind": "Content",
1246
+ "text": ";"
1247
+ }
1248
+ ],
1249
+ "isOptional": false,
1250
+ "returnTypeTokenRange": {
1251
+ "startIndex": 5,
1252
+ "endIndex": 6
1253
+ },
1254
+ "releaseTag": "Public",
1255
+ "overloadIndex": 1,
1256
+ "parameters": [
1257
+ {
1258
+ "parameterName": "entity",
1259
+ "parameterTypeTokenRange": {
1260
+ "startIndex": 1,
1261
+ "endIndex": 2
1262
+ },
1263
+ "isOptional": false
1264
+ },
1265
+ {
1266
+ "parameterName": "out",
1267
+ "parameterTypeTokenRange": {
1268
+ "startIndex": 3,
1269
+ "endIndex": 4
1270
+ },
1271
+ "isOptional": false
1272
+ }
1273
+ ],
1274
+ "name": "tryReadIntoView"
1275
+ }
1276
+ ],
1277
+ "extendsTokenRanges": [
1278
+ {
1279
+ "startIndex": 1,
1280
+ "endIndex": 5
1281
+ }
1282
+ ]
1283
+ },
1284
+ {
1285
+ "kind": "TypeAlias",
1286
+ "canonicalReference": "@dcl/playground-assets!AudioAnalysisView:type",
1287
+ "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",
1288
+ "excerptTokens": [
1289
+ {
1290
+ "kind": "Content",
1291
+ "text": "export type AudioAnalysisView = "
1292
+ },
1293
+ {
1294
+ "kind": "Content",
1295
+ "text": "{\n amplitude: number;\n bands: number[];\n}"
1296
+ },
1297
+ {
1298
+ "kind": "Content",
1299
+ "text": ";"
1300
+ }
1301
+ ],
1302
+ "fileUrlPath": "../ecs/dist/components/extended/AudioAnalysis.d.ts",
1303
+ "releaseTag": "Public",
1304
+ "name": "AudioAnalysisView",
1305
+ "typeTokenRange": {
1306
+ "startIndex": 1,
1307
+ "endIndex": 2
1308
+ }
1309
+ },
899
1310
  {
900
1311
  "kind": "Variable",
901
1312
  "canonicalReference": "@dcl/playground-assets!AudioEvent:var",
@@ -1973,6 +2384,43 @@
1973
2384
  "endIndex": 5
1974
2385
  }
1975
2386
  },
2387
+ {
2388
+ "kind": "Variable",
2389
+ "canonicalReference": "@dcl/playground-assets!AvatarLocomotionSettings:var",
2390
+ "docComment": "/**\n * @public\n */\n",
2391
+ "excerptTokens": [
2392
+ {
2393
+ "kind": "Content",
2394
+ "text": "AvatarLocomotionSettings: "
2395
+ },
2396
+ {
2397
+ "kind": "Reference",
2398
+ "text": "LastWriteWinElementSetComponentDefinition",
2399
+ "canonicalReference": "@dcl/playground-assets!LastWriteWinElementSetComponentDefinition:interface"
2400
+ },
2401
+ {
2402
+ "kind": "Content",
2403
+ "text": "<"
2404
+ },
2405
+ {
2406
+ "kind": "Reference",
2407
+ "text": "PBAvatarLocomotionSettings",
2408
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings"
2409
+ },
2410
+ {
2411
+ "kind": "Content",
2412
+ "text": ">"
2413
+ }
2414
+ ],
2415
+ "fileUrlPath": "../ecs/dist/components/generated/global.gen.d.ts",
2416
+ "isReadonly": true,
2417
+ "releaseTag": "Public",
2418
+ "name": "AvatarLocomotionSettings",
2419
+ "variableTypeTokenRange": {
2420
+ "startIndex": 1,
2421
+ "endIndex": 5
2422
+ }
2423
+ },
1976
2424
  {
1977
2425
  "kind": "Variable",
1978
2426
  "canonicalReference": "@dcl/playground-assets!AvatarModifierArea:var",
@@ -12346,6 +12794,33 @@
12346
12794
  "text": "PBAnimator",
12347
12795
  "canonicalReference": "@dcl/playground-assets!PBAnimator"
12348
12796
  },
12797
+ {
12798
+ "kind": "Content",
12799
+ "text": ">>;\n \"core::AudioAnalysis\": "
12800
+ },
12801
+ {
12802
+ "kind": "Reference",
12803
+ "text": "LwwComponentGetter",
12804
+ "canonicalReference": "@dcl/playground-assets!LwwComponentGetter:type"
12805
+ },
12806
+ {
12807
+ "kind": "Content",
12808
+ "text": "<"
12809
+ },
12810
+ {
12811
+ "kind": "Reference",
12812
+ "text": "LastWriteWinElementSetComponentDefinition",
12813
+ "canonicalReference": "@dcl/playground-assets!LastWriteWinElementSetComponentDefinition:interface"
12814
+ },
12815
+ {
12816
+ "kind": "Content",
12817
+ "text": "<"
12818
+ },
12819
+ {
12820
+ "kind": "Reference",
12821
+ "text": "PBAudioAnalysis",
12822
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis"
12823
+ },
12349
12824
  {
12350
12825
  "kind": "Content",
12351
12826
  "text": ">>;\n \"core::AudioEvent\": "
@@ -12535,6 +13010,33 @@
12535
13010
  "text": "PBAvatarEquippedData",
12536
13011
  "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData"
12537
13012
  },
13013
+ {
13014
+ "kind": "Content",
13015
+ "text": ">>;\n \"core::AvatarLocomotionSettings\": "
13016
+ },
13017
+ {
13018
+ "kind": "Reference",
13019
+ "text": "LwwComponentGetter",
13020
+ "canonicalReference": "@dcl/playground-assets!LwwComponentGetter:type"
13021
+ },
13022
+ {
13023
+ "kind": "Content",
13024
+ "text": "<"
13025
+ },
13026
+ {
13027
+ "kind": "Reference",
13028
+ "text": "LastWriteWinElementSetComponentDefinition",
13029
+ "canonicalReference": "@dcl/playground-assets!LastWriteWinElementSetComponentDefinition:interface"
13030
+ },
13031
+ {
13032
+ "kind": "Content",
13033
+ "text": "<"
13034
+ },
13035
+ {
13036
+ "kind": "Reference",
13037
+ "text": "PBAvatarLocomotionSettings",
13038
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings"
13039
+ },
12538
13040
  {
12539
13041
  "kind": "Content",
12540
13042
  "text": ">>;\n \"core::AvatarModifierArea\": "
@@ -13707,7 +14209,7 @@
13707
14209
  "name": "componentDefinitionByName",
13708
14210
  "variableTypeTokenRange": {
13709
14211
  "startIndex": 1,
13710
- "endIndex": 308
14212
+ "endIndex": 320
13711
14213
  }
13712
14214
  },
13713
14215
  {
@@ -23899,6 +24401,27 @@
23899
24401
  "releaseTag": "Public",
23900
24402
  "name": "IA_LEFT"
23901
24403
  },
24404
+ {
24405
+ "kind": "EnumMember",
24406
+ "canonicalReference": "@dcl/playground-assets!InputAction.IA_MODIFIER:member",
24407
+ "docComment": "",
24408
+ "excerptTokens": [
24409
+ {
24410
+ "kind": "Content",
24411
+ "text": "IA_MODIFIER = "
24412
+ },
24413
+ {
24414
+ "kind": "Content",
24415
+ "text": "14"
24416
+ }
24417
+ ],
24418
+ "initializerTokenRange": {
24419
+ "startIndex": 1,
24420
+ "endIndex": 2
24421
+ },
24422
+ "releaseTag": "Public",
24423
+ "name": "IA_MODIFIER"
24424
+ },
23902
24425
  {
23903
24426
  "kind": "EnumMember",
23904
24427
  "canonicalReference": "@dcl/playground-assets!InputAction.IA_POINTER:member",
@@ -38687,6 +39210,559 @@
38687
39210
  }
38688
39211
  ]
38689
39212
  },
39213
+ {
39214
+ "kind": "Interface",
39215
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:interface",
39216
+ "docComment": "/**\n * @public\n */\n",
39217
+ "excerptTokens": [
39218
+ {
39219
+ "kind": "Content",
39220
+ "text": "export interface PBAudioAnalysis "
39221
+ }
39222
+ ],
39223
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
39224
+ "releaseTag": "Public",
39225
+ "name": "PBAudioAnalysis",
39226
+ "preserveMemberOrder": false,
39227
+ "members": [
39228
+ {
39229
+ "kind": "PropertySignature",
39230
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#amplitude:member",
39231
+ "docComment": "/**\n * Result section\n */\n",
39232
+ "excerptTokens": [
39233
+ {
39234
+ "kind": "Content",
39235
+ "text": "amplitude: "
39236
+ },
39237
+ {
39238
+ "kind": "Content",
39239
+ "text": "number"
39240
+ },
39241
+ {
39242
+ "kind": "Content",
39243
+ "text": ";"
39244
+ }
39245
+ ],
39246
+ "isReadonly": false,
39247
+ "isOptional": false,
39248
+ "releaseTag": "Public",
39249
+ "name": "amplitude",
39250
+ "propertyTypeTokenRange": {
39251
+ "startIndex": 1,
39252
+ "endIndex": 2
39253
+ }
39254
+ },
39255
+ {
39256
+ "kind": "PropertySignature",
39257
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#amplitudeGain:member",
39258
+ "docComment": "/**\n * Used only when mode == MODE_LOGARITHMIC\n */\n",
39259
+ "excerptTokens": [
39260
+ {
39261
+ "kind": "Content",
39262
+ "text": "amplitudeGain?: "
39263
+ },
39264
+ {
39265
+ "kind": "Content",
39266
+ "text": "number | undefined"
39267
+ },
39268
+ {
39269
+ "kind": "Content",
39270
+ "text": ";"
39271
+ }
39272
+ ],
39273
+ "isReadonly": false,
39274
+ "isOptional": true,
39275
+ "releaseTag": "Public",
39276
+ "name": "amplitudeGain",
39277
+ "propertyTypeTokenRange": {
39278
+ "startIndex": 1,
39279
+ "endIndex": 2
39280
+ }
39281
+ },
39282
+ {
39283
+ "kind": "PropertySignature",
39284
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band0:member",
39285
+ "docComment": "/**\n * Protobuf doesn't support fixed arrays -> 8 band fields\n */\n",
39286
+ "excerptTokens": [
39287
+ {
39288
+ "kind": "Content",
39289
+ "text": "band0: "
39290
+ },
39291
+ {
39292
+ "kind": "Content",
39293
+ "text": "number"
39294
+ },
39295
+ {
39296
+ "kind": "Content",
39297
+ "text": ";"
39298
+ }
39299
+ ],
39300
+ "isReadonly": false,
39301
+ "isOptional": false,
39302
+ "releaseTag": "Public",
39303
+ "name": "band0",
39304
+ "propertyTypeTokenRange": {
39305
+ "startIndex": 1,
39306
+ "endIndex": 2
39307
+ }
39308
+ },
39309
+ {
39310
+ "kind": "PropertySignature",
39311
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band1:member",
39312
+ "docComment": "",
39313
+ "excerptTokens": [
39314
+ {
39315
+ "kind": "Content",
39316
+ "text": "band1: "
39317
+ },
39318
+ {
39319
+ "kind": "Content",
39320
+ "text": "number"
39321
+ },
39322
+ {
39323
+ "kind": "Content",
39324
+ "text": ";"
39325
+ }
39326
+ ],
39327
+ "isReadonly": false,
39328
+ "isOptional": false,
39329
+ "releaseTag": "Public",
39330
+ "name": "band1",
39331
+ "propertyTypeTokenRange": {
39332
+ "startIndex": 1,
39333
+ "endIndex": 2
39334
+ }
39335
+ },
39336
+ {
39337
+ "kind": "PropertySignature",
39338
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band2:member",
39339
+ "docComment": "",
39340
+ "excerptTokens": [
39341
+ {
39342
+ "kind": "Content",
39343
+ "text": "band2: "
39344
+ },
39345
+ {
39346
+ "kind": "Content",
39347
+ "text": "number"
39348
+ },
39349
+ {
39350
+ "kind": "Content",
39351
+ "text": ";"
39352
+ }
39353
+ ],
39354
+ "isReadonly": false,
39355
+ "isOptional": false,
39356
+ "releaseTag": "Public",
39357
+ "name": "band2",
39358
+ "propertyTypeTokenRange": {
39359
+ "startIndex": 1,
39360
+ "endIndex": 2
39361
+ }
39362
+ },
39363
+ {
39364
+ "kind": "PropertySignature",
39365
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band3:member",
39366
+ "docComment": "",
39367
+ "excerptTokens": [
39368
+ {
39369
+ "kind": "Content",
39370
+ "text": "band3: "
39371
+ },
39372
+ {
39373
+ "kind": "Content",
39374
+ "text": "number"
39375
+ },
39376
+ {
39377
+ "kind": "Content",
39378
+ "text": ";"
39379
+ }
39380
+ ],
39381
+ "isReadonly": false,
39382
+ "isOptional": false,
39383
+ "releaseTag": "Public",
39384
+ "name": "band3",
39385
+ "propertyTypeTokenRange": {
39386
+ "startIndex": 1,
39387
+ "endIndex": 2
39388
+ }
39389
+ },
39390
+ {
39391
+ "kind": "PropertySignature",
39392
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band4:member",
39393
+ "docComment": "",
39394
+ "excerptTokens": [
39395
+ {
39396
+ "kind": "Content",
39397
+ "text": "band4: "
39398
+ },
39399
+ {
39400
+ "kind": "Content",
39401
+ "text": "number"
39402
+ },
39403
+ {
39404
+ "kind": "Content",
39405
+ "text": ";"
39406
+ }
39407
+ ],
39408
+ "isReadonly": false,
39409
+ "isOptional": false,
39410
+ "releaseTag": "Public",
39411
+ "name": "band4",
39412
+ "propertyTypeTokenRange": {
39413
+ "startIndex": 1,
39414
+ "endIndex": 2
39415
+ }
39416
+ },
39417
+ {
39418
+ "kind": "PropertySignature",
39419
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band5:member",
39420
+ "docComment": "",
39421
+ "excerptTokens": [
39422
+ {
39423
+ "kind": "Content",
39424
+ "text": "band5: "
39425
+ },
39426
+ {
39427
+ "kind": "Content",
39428
+ "text": "number"
39429
+ },
39430
+ {
39431
+ "kind": "Content",
39432
+ "text": ";"
39433
+ }
39434
+ ],
39435
+ "isReadonly": false,
39436
+ "isOptional": false,
39437
+ "releaseTag": "Public",
39438
+ "name": "band5",
39439
+ "propertyTypeTokenRange": {
39440
+ "startIndex": 1,
39441
+ "endIndex": 2
39442
+ }
39443
+ },
39444
+ {
39445
+ "kind": "PropertySignature",
39446
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band6:member",
39447
+ "docComment": "",
39448
+ "excerptTokens": [
39449
+ {
39450
+ "kind": "Content",
39451
+ "text": "band6: "
39452
+ },
39453
+ {
39454
+ "kind": "Content",
39455
+ "text": "number"
39456
+ },
39457
+ {
39458
+ "kind": "Content",
39459
+ "text": ";"
39460
+ }
39461
+ ],
39462
+ "isReadonly": false,
39463
+ "isOptional": false,
39464
+ "releaseTag": "Public",
39465
+ "name": "band6",
39466
+ "propertyTypeTokenRange": {
39467
+ "startIndex": 1,
39468
+ "endIndex": 2
39469
+ }
39470
+ },
39471
+ {
39472
+ "kind": "PropertySignature",
39473
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band7:member",
39474
+ "docComment": "",
39475
+ "excerptTokens": [
39476
+ {
39477
+ "kind": "Content",
39478
+ "text": "band7: "
39479
+ },
39480
+ {
39481
+ "kind": "Content",
39482
+ "text": "number"
39483
+ },
39484
+ {
39485
+ "kind": "Content",
39486
+ "text": ";"
39487
+ }
39488
+ ],
39489
+ "isReadonly": false,
39490
+ "isOptional": false,
39491
+ "releaseTag": "Public",
39492
+ "name": "band7",
39493
+ "propertyTypeTokenRange": {
39494
+ "startIndex": 1,
39495
+ "endIndex": 2
39496
+ }
39497
+ },
39498
+ {
39499
+ "kind": "PropertySignature",
39500
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#bandsGain:member",
39501
+ "docComment": "/**\n * End when mode == MODE_LOGARITHMIC\n */\n",
39502
+ "excerptTokens": [
39503
+ {
39504
+ "kind": "Content",
39505
+ "text": "bandsGain?: "
39506
+ },
39507
+ {
39508
+ "kind": "Content",
39509
+ "text": "number | undefined"
39510
+ },
39511
+ {
39512
+ "kind": "Content",
39513
+ "text": ";"
39514
+ }
39515
+ ],
39516
+ "isReadonly": false,
39517
+ "isOptional": true,
39518
+ "releaseTag": "Public",
39519
+ "name": "bandsGain",
39520
+ "propertyTypeTokenRange": {
39521
+ "startIndex": 1,
39522
+ "endIndex": 2
39523
+ }
39524
+ },
39525
+ {
39526
+ "kind": "PropertySignature",
39527
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#mode:member",
39528
+ "docComment": "/**\n * Parameters section\n */\n",
39529
+ "excerptTokens": [
39530
+ {
39531
+ "kind": "Content",
39532
+ "text": "mode: "
39533
+ },
39534
+ {
39535
+ "kind": "Reference",
39536
+ "text": "PBAudioAnalysisMode",
39537
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode:enum"
39538
+ },
39539
+ {
39540
+ "kind": "Content",
39541
+ "text": ";"
39542
+ }
39543
+ ],
39544
+ "isReadonly": false,
39545
+ "isOptional": false,
39546
+ "releaseTag": "Public",
39547
+ "name": "mode",
39548
+ "propertyTypeTokenRange": {
39549
+ "startIndex": 1,
39550
+ "endIndex": 2
39551
+ }
39552
+ }
39553
+ ],
39554
+ "extendsTokenRanges": []
39555
+ },
39556
+ {
39557
+ "kind": "Namespace",
39558
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:namespace",
39559
+ "docComment": "/**\n * @public\n */\n",
39560
+ "excerptTokens": [
39561
+ {
39562
+ "kind": "Content",
39563
+ "text": "export declare namespace PBAudioAnalysis "
39564
+ }
39565
+ ],
39566
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
39567
+ "releaseTag": "Public",
39568
+ "name": "PBAudioAnalysis",
39569
+ "preserveMemberOrder": false,
39570
+ "members": [
39571
+ {
39572
+ "kind": "Function",
39573
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis.decode:function(1)",
39574
+ "docComment": "",
39575
+ "excerptTokens": [
39576
+ {
39577
+ "kind": "Content",
39578
+ "text": "function decode(input: "
39579
+ },
39580
+ {
39581
+ "kind": "Reference",
39582
+ "text": "_m0.Reader",
39583
+ "canonicalReference": "protobufjs!Reader:class"
39584
+ },
39585
+ {
39586
+ "kind": "Content",
39587
+ "text": " | "
39588
+ },
39589
+ {
39590
+ "kind": "Reference",
39591
+ "text": "Uint8Array",
39592
+ "canonicalReference": "!Uint8Array:interface"
39593
+ },
39594
+ {
39595
+ "kind": "Content",
39596
+ "text": ", length?: "
39597
+ },
39598
+ {
39599
+ "kind": "Content",
39600
+ "text": "number"
39601
+ },
39602
+ {
39603
+ "kind": "Content",
39604
+ "text": "): "
39605
+ },
39606
+ {
39607
+ "kind": "Reference",
39608
+ "text": "PBAudioAnalysis",
39609
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:interface"
39610
+ },
39611
+ {
39612
+ "kind": "Content",
39613
+ "text": ";"
39614
+ }
39615
+ ],
39616
+ "returnTypeTokenRange": {
39617
+ "startIndex": 7,
39618
+ "endIndex": 8
39619
+ },
39620
+ "releaseTag": "Public",
39621
+ "overloadIndex": 1,
39622
+ "parameters": [
39623
+ {
39624
+ "parameterName": "input",
39625
+ "parameterTypeTokenRange": {
39626
+ "startIndex": 1,
39627
+ "endIndex": 4
39628
+ },
39629
+ "isOptional": false
39630
+ },
39631
+ {
39632
+ "parameterName": "length",
39633
+ "parameterTypeTokenRange": {
39634
+ "startIndex": 5,
39635
+ "endIndex": 6
39636
+ },
39637
+ "isOptional": true
39638
+ }
39639
+ ],
39640
+ "name": "decode"
39641
+ },
39642
+ {
39643
+ "kind": "Function",
39644
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis.encode:function(1)",
39645
+ "docComment": "",
39646
+ "excerptTokens": [
39647
+ {
39648
+ "kind": "Content",
39649
+ "text": "function encode(message: "
39650
+ },
39651
+ {
39652
+ "kind": "Reference",
39653
+ "text": "PBAudioAnalysis",
39654
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:interface"
39655
+ },
39656
+ {
39657
+ "kind": "Content",
39658
+ "text": ", writer?: "
39659
+ },
39660
+ {
39661
+ "kind": "Reference",
39662
+ "text": "_m0.Writer",
39663
+ "canonicalReference": "protobufjs!Writer:class"
39664
+ },
39665
+ {
39666
+ "kind": "Content",
39667
+ "text": "): "
39668
+ },
39669
+ {
39670
+ "kind": "Reference",
39671
+ "text": "_m0.Writer",
39672
+ "canonicalReference": "protobufjs!Writer:class"
39673
+ },
39674
+ {
39675
+ "kind": "Content",
39676
+ "text": ";"
39677
+ }
39678
+ ],
39679
+ "returnTypeTokenRange": {
39680
+ "startIndex": 5,
39681
+ "endIndex": 6
39682
+ },
39683
+ "releaseTag": "Public",
39684
+ "overloadIndex": 1,
39685
+ "parameters": [
39686
+ {
39687
+ "parameterName": "message",
39688
+ "parameterTypeTokenRange": {
39689
+ "startIndex": 1,
39690
+ "endIndex": 2
39691
+ },
39692
+ "isOptional": false
39693
+ },
39694
+ {
39695
+ "parameterName": "writer",
39696
+ "parameterTypeTokenRange": {
39697
+ "startIndex": 3,
39698
+ "endIndex": 4
39699
+ },
39700
+ "isOptional": true
39701
+ }
39702
+ ],
39703
+ "name": "encode"
39704
+ }
39705
+ ]
39706
+ },
39707
+ {
39708
+ "kind": "Enum",
39709
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode:enum",
39710
+ "docComment": "/**\n * @public\n */\n",
39711
+ "excerptTokens": [
39712
+ {
39713
+ "kind": "Content",
39714
+ "text": "export declare const enum PBAudioAnalysisMode "
39715
+ }
39716
+ ],
39717
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
39718
+ "releaseTag": "Public",
39719
+ "name": "PBAudioAnalysisMode",
39720
+ "preserveMemberOrder": false,
39721
+ "members": [
39722
+ {
39723
+ "kind": "EnumMember",
39724
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode.MODE_LOGARITHMIC:member",
39725
+ "docComment": "",
39726
+ "excerptTokens": [
39727
+ {
39728
+ "kind": "Content",
39729
+ "text": "MODE_LOGARITHMIC = "
39730
+ },
39731
+ {
39732
+ "kind": "Content",
39733
+ "text": "1"
39734
+ }
39735
+ ],
39736
+ "initializerTokenRange": {
39737
+ "startIndex": 1,
39738
+ "endIndex": 2
39739
+ },
39740
+ "releaseTag": "Public",
39741
+ "name": "MODE_LOGARITHMIC"
39742
+ },
39743
+ {
39744
+ "kind": "EnumMember",
39745
+ "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode.MODE_RAW:member",
39746
+ "docComment": "",
39747
+ "excerptTokens": [
39748
+ {
39749
+ "kind": "Content",
39750
+ "text": "MODE_RAW = "
39751
+ },
39752
+ {
39753
+ "kind": "Content",
39754
+ "text": "0"
39755
+ }
39756
+ ],
39757
+ "initializerTokenRange": {
39758
+ "startIndex": 1,
39759
+ "endIndex": 2
39760
+ },
39761
+ "releaseTag": "Public",
39762
+ "name": "MODE_RAW"
39763
+ }
39764
+ ]
39765
+ },
38690
39766
  {
38691
39767
  "kind": "Interface",
38692
39768
  "canonicalReference": "@dcl/playground-assets!PBAudioEvent:interface",
@@ -40616,6 +41692,337 @@
40616
41692
  }
40617
41693
  ]
40618
41694
  },
41695
+ {
41696
+ "kind": "Interface",
41697
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface",
41698
+ "docComment": "/**\n * @public\n */\n",
41699
+ "excerptTokens": [
41700
+ {
41701
+ "kind": "Content",
41702
+ "text": "export interface PBAvatarLocomotionSettings "
41703
+ }
41704
+ ],
41705
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_locomotion_settings.gen.d.ts",
41706
+ "releaseTag": "Public",
41707
+ "name": "PBAvatarLocomotionSettings",
41708
+ "preserveMemberOrder": false,
41709
+ "members": [
41710
+ {
41711
+ "kind": "PropertySignature",
41712
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#hardLandingCooldown:member",
41713
+ "docComment": "/**\n * Cooldown time after a hard landing before the avatar can move again (in seconds)\n */\n",
41714
+ "excerptTokens": [
41715
+ {
41716
+ "kind": "Content",
41717
+ "text": "hardLandingCooldown?: "
41718
+ },
41719
+ {
41720
+ "kind": "Content",
41721
+ "text": "number | undefined"
41722
+ },
41723
+ {
41724
+ "kind": "Content",
41725
+ "text": ";"
41726
+ }
41727
+ ],
41728
+ "isReadonly": false,
41729
+ "isOptional": true,
41730
+ "releaseTag": "Public",
41731
+ "name": "hardLandingCooldown",
41732
+ "propertyTypeTokenRange": {
41733
+ "startIndex": 1,
41734
+ "endIndex": 2
41735
+ }
41736
+ },
41737
+ {
41738
+ "kind": "PropertySignature",
41739
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#jogSpeed:member",
41740
+ "docComment": "/**\n * Maximum speed when jogging (in meters per second)\n */\n",
41741
+ "excerptTokens": [
41742
+ {
41743
+ "kind": "Content",
41744
+ "text": "jogSpeed?: "
41745
+ },
41746
+ {
41747
+ "kind": "Content",
41748
+ "text": "number | undefined"
41749
+ },
41750
+ {
41751
+ "kind": "Content",
41752
+ "text": ";"
41753
+ }
41754
+ ],
41755
+ "isReadonly": false,
41756
+ "isOptional": true,
41757
+ "releaseTag": "Public",
41758
+ "name": "jogSpeed",
41759
+ "propertyTypeTokenRange": {
41760
+ "startIndex": 1,
41761
+ "endIndex": 2
41762
+ }
41763
+ },
41764
+ {
41765
+ "kind": "PropertySignature",
41766
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#jumpHeight:member",
41767
+ "docComment": "/**\n * Height of a regular jump (in meters)\n */\n",
41768
+ "excerptTokens": [
41769
+ {
41770
+ "kind": "Content",
41771
+ "text": "jumpHeight?: "
41772
+ },
41773
+ {
41774
+ "kind": "Content",
41775
+ "text": "number | undefined"
41776
+ },
41777
+ {
41778
+ "kind": "Content",
41779
+ "text": ";"
41780
+ }
41781
+ ],
41782
+ "isReadonly": false,
41783
+ "isOptional": true,
41784
+ "releaseTag": "Public",
41785
+ "name": "jumpHeight",
41786
+ "propertyTypeTokenRange": {
41787
+ "startIndex": 1,
41788
+ "endIndex": 2
41789
+ }
41790
+ },
41791
+ {
41792
+ "kind": "PropertySignature",
41793
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#runJumpHeight:member",
41794
+ "docComment": "/**\n * Height of a jump while running (in meters)\n */\n",
41795
+ "excerptTokens": [
41796
+ {
41797
+ "kind": "Content",
41798
+ "text": "runJumpHeight?: "
41799
+ },
41800
+ {
41801
+ "kind": "Content",
41802
+ "text": "number | undefined"
41803
+ },
41804
+ {
41805
+ "kind": "Content",
41806
+ "text": ";"
41807
+ }
41808
+ ],
41809
+ "isReadonly": false,
41810
+ "isOptional": true,
41811
+ "releaseTag": "Public",
41812
+ "name": "runJumpHeight",
41813
+ "propertyTypeTokenRange": {
41814
+ "startIndex": 1,
41815
+ "endIndex": 2
41816
+ }
41817
+ },
41818
+ {
41819
+ "kind": "PropertySignature",
41820
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#runSpeed:member",
41821
+ "docComment": "/**\n * Maximum speed when running (in meters per second)\n */\n",
41822
+ "excerptTokens": [
41823
+ {
41824
+ "kind": "Content",
41825
+ "text": "runSpeed?: "
41826
+ },
41827
+ {
41828
+ "kind": "Content",
41829
+ "text": "number | undefined"
41830
+ },
41831
+ {
41832
+ "kind": "Content",
41833
+ "text": ";"
41834
+ }
41835
+ ],
41836
+ "isReadonly": false,
41837
+ "isOptional": true,
41838
+ "releaseTag": "Public",
41839
+ "name": "runSpeed",
41840
+ "propertyTypeTokenRange": {
41841
+ "startIndex": 1,
41842
+ "endIndex": 2
41843
+ }
41844
+ },
41845
+ {
41846
+ "kind": "PropertySignature",
41847
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#walkSpeed:member",
41848
+ "docComment": "/**\n * Maximum speed when walking (in meters per second)\n */\n",
41849
+ "excerptTokens": [
41850
+ {
41851
+ "kind": "Content",
41852
+ "text": "walkSpeed?: "
41853
+ },
41854
+ {
41855
+ "kind": "Content",
41856
+ "text": "number | undefined"
41857
+ },
41858
+ {
41859
+ "kind": "Content",
41860
+ "text": ";"
41861
+ }
41862
+ ],
41863
+ "isReadonly": false,
41864
+ "isOptional": true,
41865
+ "releaseTag": "Public",
41866
+ "name": "walkSpeed",
41867
+ "propertyTypeTokenRange": {
41868
+ "startIndex": 1,
41869
+ "endIndex": 2
41870
+ }
41871
+ }
41872
+ ],
41873
+ "extendsTokenRanges": []
41874
+ },
41875
+ {
41876
+ "kind": "Namespace",
41877
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:namespace",
41878
+ "docComment": "/**\n * @public\n */\n",
41879
+ "excerptTokens": [
41880
+ {
41881
+ "kind": "Content",
41882
+ "text": "export declare namespace PBAvatarLocomotionSettings "
41883
+ }
41884
+ ],
41885
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_locomotion_settings.gen.d.ts",
41886
+ "releaseTag": "Public",
41887
+ "name": "PBAvatarLocomotionSettings",
41888
+ "preserveMemberOrder": false,
41889
+ "members": [
41890
+ {
41891
+ "kind": "Function",
41892
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings.decode:function(1)",
41893
+ "docComment": "",
41894
+ "excerptTokens": [
41895
+ {
41896
+ "kind": "Content",
41897
+ "text": "function decode(input: "
41898
+ },
41899
+ {
41900
+ "kind": "Reference",
41901
+ "text": "_m0.Reader",
41902
+ "canonicalReference": "protobufjs!Reader:class"
41903
+ },
41904
+ {
41905
+ "kind": "Content",
41906
+ "text": " | "
41907
+ },
41908
+ {
41909
+ "kind": "Reference",
41910
+ "text": "Uint8Array",
41911
+ "canonicalReference": "!Uint8Array:interface"
41912
+ },
41913
+ {
41914
+ "kind": "Content",
41915
+ "text": ", length?: "
41916
+ },
41917
+ {
41918
+ "kind": "Content",
41919
+ "text": "number"
41920
+ },
41921
+ {
41922
+ "kind": "Content",
41923
+ "text": "): "
41924
+ },
41925
+ {
41926
+ "kind": "Reference",
41927
+ "text": "PBAvatarLocomotionSettings",
41928
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface"
41929
+ },
41930
+ {
41931
+ "kind": "Content",
41932
+ "text": ";"
41933
+ }
41934
+ ],
41935
+ "returnTypeTokenRange": {
41936
+ "startIndex": 7,
41937
+ "endIndex": 8
41938
+ },
41939
+ "releaseTag": "Public",
41940
+ "overloadIndex": 1,
41941
+ "parameters": [
41942
+ {
41943
+ "parameterName": "input",
41944
+ "parameterTypeTokenRange": {
41945
+ "startIndex": 1,
41946
+ "endIndex": 4
41947
+ },
41948
+ "isOptional": false
41949
+ },
41950
+ {
41951
+ "parameterName": "length",
41952
+ "parameterTypeTokenRange": {
41953
+ "startIndex": 5,
41954
+ "endIndex": 6
41955
+ },
41956
+ "isOptional": true
41957
+ }
41958
+ ],
41959
+ "name": "decode"
41960
+ },
41961
+ {
41962
+ "kind": "Function",
41963
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings.encode:function(1)",
41964
+ "docComment": "",
41965
+ "excerptTokens": [
41966
+ {
41967
+ "kind": "Content",
41968
+ "text": "function encode(message: "
41969
+ },
41970
+ {
41971
+ "kind": "Reference",
41972
+ "text": "PBAvatarLocomotionSettings",
41973
+ "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface"
41974
+ },
41975
+ {
41976
+ "kind": "Content",
41977
+ "text": ", writer?: "
41978
+ },
41979
+ {
41980
+ "kind": "Reference",
41981
+ "text": "_m0.Writer",
41982
+ "canonicalReference": "protobufjs!Writer:class"
41983
+ },
41984
+ {
41985
+ "kind": "Content",
41986
+ "text": "): "
41987
+ },
41988
+ {
41989
+ "kind": "Reference",
41990
+ "text": "_m0.Writer",
41991
+ "canonicalReference": "protobufjs!Writer:class"
41992
+ },
41993
+ {
41994
+ "kind": "Content",
41995
+ "text": ";"
41996
+ }
41997
+ ],
41998
+ "returnTypeTokenRange": {
41999
+ "startIndex": 5,
42000
+ "endIndex": 6
42001
+ },
42002
+ "releaseTag": "Public",
42003
+ "overloadIndex": 1,
42004
+ "parameters": [
42005
+ {
42006
+ "parameterName": "message",
42007
+ "parameterTypeTokenRange": {
42008
+ "startIndex": 1,
42009
+ "endIndex": 2
42010
+ },
42011
+ "isOptional": false
42012
+ },
42013
+ {
42014
+ "parameterName": "writer",
42015
+ "parameterTypeTokenRange": {
42016
+ "startIndex": 3,
42017
+ "endIndex": 4
42018
+ },
42019
+ "isOptional": true
42020
+ }
42021
+ ],
42022
+ "name": "encode"
42023
+ }
42024
+ ]
42025
+ },
40619
42026
  {
40620
42027
  "kind": "Interface",
40621
42028
  "canonicalReference": "@dcl/playground-assets!PBAvatarModifierArea:interface",
@@ -60444,6 +61851,33 @@
60444
61851
  "endIndex": 3
60445
61852
  }
60446
61853
  },
61854
+ {
61855
+ "kind": "PropertySignature",
61856
+ "canonicalReference": "@dcl/playground-assets!PBVirtualCamera#fov:member",
61857
+ "docComment": "/**\n * default: 60\n */\n",
61858
+ "excerptTokens": [
61859
+ {
61860
+ "kind": "Content",
61861
+ "text": "fov?: "
61862
+ },
61863
+ {
61864
+ "kind": "Content",
61865
+ "text": "number | undefined"
61866
+ },
61867
+ {
61868
+ "kind": "Content",
61869
+ "text": ";"
61870
+ }
61871
+ ],
61872
+ "isReadonly": false,
61873
+ "isOptional": true,
61874
+ "releaseTag": "Public",
61875
+ "name": "fov",
61876
+ "propertyTypeTokenRange": {
61877
+ "startIndex": 1,
61878
+ "endIndex": 2
61879
+ }
61880
+ },
60447
61881
  {
60448
61882
  "kind": "PropertySignature",
60449
61883
  "canonicalReference": "@dcl/playground-assets!PBVirtualCamera#lookAtEntity:member",