@dcl/playground-assets 7.15.3-20090667358.commit-8e697e3 → 7.15.3-20441958958.commit-0dc5702

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,417 +896,6 @@
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
- },
1310
899
  {
1311
900
  "kind": "Variable",
1312
901
  "canonicalReference": "@dcl/playground-assets!AudioEvent:var",
@@ -2384,43 +1973,6 @@
2384
1973
  "endIndex": 5
2385
1974
  }
2386
1975
  },
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
- },
2424
1976
  {
2425
1977
  "kind": "Variable",
2426
1978
  "canonicalReference": "@dcl/playground-assets!AvatarModifierArea:var",
@@ -12794,33 +12346,6 @@
12794
12346
  "text": "PBAnimator",
12795
12347
  "canonicalReference": "@dcl/playground-assets!PBAnimator"
12796
12348
  },
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
- },
12824
12349
  {
12825
12350
  "kind": "Content",
12826
12351
  "text": ">>;\n \"core::AudioEvent\": "
@@ -13010,33 +12535,6 @@
13010
12535
  "text": "PBAvatarEquippedData",
13011
12536
  "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData"
13012
12537
  },
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
- },
13040
12538
  {
13041
12539
  "kind": "Content",
13042
12540
  "text": ">>;\n \"core::AvatarModifierArea\": "
@@ -14209,7 +13707,7 @@
14209
13707
  "name": "componentDefinitionByName",
14210
13708
  "variableTypeTokenRange": {
14211
13709
  "startIndex": 1,
14212
- "endIndex": 320
13710
+ "endIndex": 308
14213
13711
  }
14214
13712
  },
14215
13713
  {
@@ -23549,27 +23047,6 @@
23549
23047
  "releaseTag": "Public",
23550
23048
  "name": "IA_LEFT"
23551
23049
  },
23552
- {
23553
- "kind": "EnumMember",
23554
- "canonicalReference": "@dcl/playground-assets!InputAction.IA_MODIFIER:member",
23555
- "docComment": "",
23556
- "excerptTokens": [
23557
- {
23558
- "kind": "Content",
23559
- "text": "IA_MODIFIER = "
23560
- },
23561
- {
23562
- "kind": "Content",
23563
- "text": "14"
23564
- }
23565
- ],
23566
- "initializerTokenRange": {
23567
- "startIndex": 1,
23568
- "endIndex": 2
23569
- },
23570
- "releaseTag": "Public",
23571
- "name": "IA_MODIFIER"
23572
- },
23573
23050
  {
23574
23051
  "kind": "EnumMember",
23575
23052
  "canonicalReference": "@dcl/playground-assets!InputAction.IA_POINTER:member",
@@ -38188,31 +37665,32 @@
38188
37665
  },
38189
37666
  {
38190
37667
  "kind": "Interface",
38191
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:interface",
37668
+ "canonicalReference": "@dcl/playground-assets!PBAudioEvent:interface",
38192
37669
  "docComment": "/**\n * @public\n */\n",
38193
37670
  "excerptTokens": [
38194
37671
  {
38195
37672
  "kind": "Content",
38196
- "text": "export interface PBAudioAnalysis "
37673
+ "text": "export interface PBAudioEvent "
38197
37674
  }
38198
37675
  ],
38199
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
37676
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_event.gen.d.ts",
38200
37677
  "releaseTag": "Public",
38201
- "name": "PBAudioAnalysis",
37678
+ "name": "PBAudioEvent",
38202
37679
  "preserveMemberOrder": false,
38203
37680
  "members": [
38204
37681
  {
38205
37682
  "kind": "PropertySignature",
38206
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#amplitude:member",
38207
- "docComment": "/**\n * Result section\n */\n",
37683
+ "canonicalReference": "@dcl/playground-assets!PBAudioEvent#state:member",
37684
+ "docComment": "",
38208
37685
  "excerptTokens": [
38209
37686
  {
38210
37687
  "kind": "Content",
38211
- "text": "amplitude: "
37688
+ "text": "state: "
38212
37689
  },
38213
37690
  {
38214
- "kind": "Content",
38215
- "text": "number"
37691
+ "kind": "Reference",
37692
+ "text": "MediaState",
37693
+ "canonicalReference": "@dcl/playground-assets!MediaState:enum"
38216
37694
  },
38217
37695
  {
38218
37696
  "kind": "Content",
@@ -38222,7 +37700,7 @@
38222
37700
  "isReadonly": false,
38223
37701
  "isOptional": false,
38224
37702
  "releaseTag": "Public",
38225
- "name": "amplitude",
37703
+ "name": "state",
38226
37704
  "propertyTypeTokenRange": {
38227
37705
  "startIndex": 1,
38228
37706
  "endIndex": 2
@@ -38230,16 +37708,16 @@
38230
37708
  },
38231
37709
  {
38232
37710
  "kind": "PropertySignature",
38233
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#amplitudeGain:member",
38234
- "docComment": "/**\n * Used only when mode == MODE_LOGARITHMIC\n */\n",
37711
+ "canonicalReference": "@dcl/playground-assets!PBAudioEvent#timestamp:member",
37712
+ "docComment": "/**\n * monotonic counter\n */\n",
38235
37713
  "excerptTokens": [
38236
37714
  {
38237
37715
  "kind": "Content",
38238
- "text": "amplitudeGain?: "
37716
+ "text": "timestamp: "
38239
37717
  },
38240
37718
  {
38241
37719
  "kind": "Content",
38242
- "text": "number | undefined"
37720
+ "text": "number"
38243
37721
  },
38244
37722
  {
38245
37723
  "kind": "Content",
@@ -38247,107 +37725,195 @@
38247
37725
  }
38248
37726
  ],
38249
37727
  "isReadonly": false,
38250
- "isOptional": true,
37728
+ "isOptional": false,
38251
37729
  "releaseTag": "Public",
38252
- "name": "amplitudeGain",
37730
+ "name": "timestamp",
38253
37731
  "propertyTypeTokenRange": {
38254
37732
  "startIndex": 1,
38255
37733
  "endIndex": 2
38256
37734
  }
38257
- },
37735
+ }
37736
+ ],
37737
+ "extendsTokenRanges": []
37738
+ },
37739
+ {
37740
+ "kind": "Namespace",
37741
+ "canonicalReference": "@dcl/playground-assets!PBAudioEvent:namespace",
37742
+ "docComment": "/**\n * @public\n */\n",
37743
+ "excerptTokens": [
38258
37744
  {
38259
- "kind": "PropertySignature",
38260
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band0:member",
38261
- "docComment": "/**\n * Protobuf doesn't support fixed arrays -> 8 band fields\n */\n",
37745
+ "kind": "Content",
37746
+ "text": "export declare namespace PBAudioEvent "
37747
+ }
37748
+ ],
37749
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_event.gen.d.ts",
37750
+ "releaseTag": "Public",
37751
+ "name": "PBAudioEvent",
37752
+ "preserveMemberOrder": false,
37753
+ "members": [
37754
+ {
37755
+ "kind": "Function",
37756
+ "canonicalReference": "@dcl/playground-assets!PBAudioEvent.decode:function(1)",
37757
+ "docComment": "",
38262
37758
  "excerptTokens": [
38263
37759
  {
38264
37760
  "kind": "Content",
38265
- "text": "band0: "
37761
+ "text": "function decode(input: "
38266
37762
  },
38267
37763
  {
38268
- "kind": "Content",
38269
- "text": "number"
37764
+ "kind": "Reference",
37765
+ "text": "_m0.Reader",
37766
+ "canonicalReference": "protobufjs!Reader:class"
38270
37767
  },
38271
37768
  {
38272
37769
  "kind": "Content",
38273
- "text": ";"
38274
- }
38275
- ],
38276
- "isReadonly": false,
38277
- "isOptional": false,
38278
- "releaseTag": "Public",
38279
- "name": "band0",
38280
- "propertyTypeTokenRange": {
38281
- "startIndex": 1,
38282
- "endIndex": 2
38283
- }
38284
- },
38285
- {
38286
- "kind": "PropertySignature",
38287
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band1:member",
38288
- "docComment": "",
38289
- "excerptTokens": [
37770
+ "text": " | "
37771
+ },
37772
+ {
37773
+ "kind": "Reference",
37774
+ "text": "Uint8Array",
37775
+ "canonicalReference": "!Uint8Array:interface"
37776
+ },
38290
37777
  {
38291
37778
  "kind": "Content",
38292
- "text": "band1: "
37779
+ "text": ", length?: "
38293
37780
  },
38294
37781
  {
38295
37782
  "kind": "Content",
38296
37783
  "text": "number"
38297
37784
  },
37785
+ {
37786
+ "kind": "Content",
37787
+ "text": "): "
37788
+ },
37789
+ {
37790
+ "kind": "Reference",
37791
+ "text": "PBAudioEvent",
37792
+ "canonicalReference": "@dcl/playground-assets!PBAudioEvent:interface"
37793
+ },
38298
37794
  {
38299
37795
  "kind": "Content",
38300
37796
  "text": ";"
38301
37797
  }
38302
37798
  ],
38303
- "isReadonly": false,
38304
- "isOptional": false,
37799
+ "returnTypeTokenRange": {
37800
+ "startIndex": 7,
37801
+ "endIndex": 8
37802
+ },
38305
37803
  "releaseTag": "Public",
38306
- "name": "band1",
38307
- "propertyTypeTokenRange": {
38308
- "startIndex": 1,
38309
- "endIndex": 2
38310
- }
37804
+ "overloadIndex": 1,
37805
+ "parameters": [
37806
+ {
37807
+ "parameterName": "input",
37808
+ "parameterTypeTokenRange": {
37809
+ "startIndex": 1,
37810
+ "endIndex": 4
37811
+ },
37812
+ "isOptional": false
37813
+ },
37814
+ {
37815
+ "parameterName": "length",
37816
+ "parameterTypeTokenRange": {
37817
+ "startIndex": 5,
37818
+ "endIndex": 6
37819
+ },
37820
+ "isOptional": true
37821
+ }
37822
+ ],
37823
+ "name": "decode"
38311
37824
  },
38312
37825
  {
38313
- "kind": "PropertySignature",
38314
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band2:member",
37826
+ "kind": "Function",
37827
+ "canonicalReference": "@dcl/playground-assets!PBAudioEvent.encode:function(1)",
38315
37828
  "docComment": "",
38316
37829
  "excerptTokens": [
38317
37830
  {
38318
37831
  "kind": "Content",
38319
- "text": "band2: "
37832
+ "text": "function encode(message: "
37833
+ },
37834
+ {
37835
+ "kind": "Reference",
37836
+ "text": "PBAudioEvent",
37837
+ "canonicalReference": "@dcl/playground-assets!PBAudioEvent:interface"
37838
+ },
37839
+ {
37840
+ "kind": "Content",
37841
+ "text": ", writer?: "
37842
+ },
37843
+ {
37844
+ "kind": "Reference",
37845
+ "text": "_m0.Writer",
37846
+ "canonicalReference": "protobufjs!Writer:class"
38320
37847
  },
38321
37848
  {
38322
37849
  "kind": "Content",
38323
- "text": "number"
37850
+ "text": "): "
37851
+ },
37852
+ {
37853
+ "kind": "Reference",
37854
+ "text": "_m0.Writer",
37855
+ "canonicalReference": "protobufjs!Writer:class"
38324
37856
  },
38325
37857
  {
38326
37858
  "kind": "Content",
38327
37859
  "text": ";"
38328
37860
  }
38329
37861
  ],
38330
- "isReadonly": false,
38331
- "isOptional": false,
37862
+ "returnTypeTokenRange": {
37863
+ "startIndex": 5,
37864
+ "endIndex": 6
37865
+ },
38332
37866
  "releaseTag": "Public",
38333
- "name": "band2",
38334
- "propertyTypeTokenRange": {
38335
- "startIndex": 1,
38336
- "endIndex": 2
38337
- }
38338
- },
37867
+ "overloadIndex": 1,
37868
+ "parameters": [
37869
+ {
37870
+ "parameterName": "message",
37871
+ "parameterTypeTokenRange": {
37872
+ "startIndex": 1,
37873
+ "endIndex": 2
37874
+ },
37875
+ "isOptional": false
37876
+ },
37877
+ {
37878
+ "parameterName": "writer",
37879
+ "parameterTypeTokenRange": {
37880
+ "startIndex": 3,
37881
+ "endIndex": 4
37882
+ },
37883
+ "isOptional": true
37884
+ }
37885
+ ],
37886
+ "name": "encode"
37887
+ }
37888
+ ]
37889
+ },
37890
+ {
37891
+ "kind": "Interface",
37892
+ "canonicalReference": "@dcl/playground-assets!PBAudioSource:interface",
37893
+ "docComment": "/**\n * @public\n */\n",
37894
+ "excerptTokens": [
37895
+ {
37896
+ "kind": "Content",
37897
+ "text": "export interface PBAudioSource "
37898
+ }
37899
+ ],
37900
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_source.gen.d.ts",
37901
+ "releaseTag": "Public",
37902
+ "name": "PBAudioSource",
37903
+ "preserveMemberOrder": false,
37904
+ "members": [
38339
37905
  {
38340
37906
  "kind": "PropertySignature",
38341
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band3:member",
38342
- "docComment": "",
37907
+ "canonicalReference": "@dcl/playground-assets!PBAudioSource#audioClipUrl:member",
37908
+ "docComment": "/**\n * the clip path as given in the `files` array of the scene's manifest.\n */\n",
38343
37909
  "excerptTokens": [
38344
37910
  {
38345
37911
  "kind": "Content",
38346
- "text": "band3: "
37912
+ "text": "audioClipUrl: "
38347
37913
  },
38348
37914
  {
38349
37915
  "kind": "Content",
38350
- "text": "number"
37916
+ "text": "string"
38351
37917
  },
38352
37918
  {
38353
37919
  "kind": "Content",
@@ -38357,7 +37923,7 @@
38357
37923
  "isReadonly": false,
38358
37924
  "isOptional": false,
38359
37925
  "releaseTag": "Public",
38360
- "name": "band3",
37926
+ "name": "audioClipUrl",
38361
37927
  "propertyTypeTokenRange": {
38362
37928
  "startIndex": 1,
38363
37929
  "endIndex": 2
@@ -38365,16 +37931,16 @@
38365
37931
  },
38366
37932
  {
38367
37933
  "kind": "PropertySignature",
38368
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band4:member",
38369
- "docComment": "",
37934
+ "canonicalReference": "@dcl/playground-assets!PBAudioSource#currentTime:member",
37935
+ "docComment": "/**\n * specifies the current playback time of the clip in seconds (default: 0).\n */\n",
38370
37936
  "excerptTokens": [
38371
37937
  {
38372
37938
  "kind": "Content",
38373
- "text": "band4: "
37939
+ "text": "currentTime?: "
38374
37940
  },
38375
37941
  {
38376
37942
  "kind": "Content",
38377
- "text": "number"
37943
+ "text": "number | undefined"
38378
37944
  },
38379
37945
  {
38380
37946
  "kind": "Content",
@@ -38382,9 +37948,9 @@
38382
37948
  }
38383
37949
  ],
38384
37950
  "isReadonly": false,
38385
- "isOptional": false,
37951
+ "isOptional": true,
38386
37952
  "releaseTag": "Public",
38387
- "name": "band4",
37953
+ "name": "currentTime",
38388
37954
  "propertyTypeTokenRange": {
38389
37955
  "startIndex": 1,
38390
37956
  "endIndex": 2
@@ -38392,16 +37958,16 @@
38392
37958
  },
38393
37959
  {
38394
37960
  "kind": "PropertySignature",
38395
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band5:member",
38396
- "docComment": "",
37961
+ "canonicalReference": "@dcl/playground-assets!PBAudioSource#global:member",
37962
+ "docComment": "/**\n * whether the audio plays at constant volume across the scene.\n */\n",
38397
37963
  "excerptTokens": [
38398
37964
  {
38399
37965
  "kind": "Content",
38400
- "text": "band5: "
37966
+ "text": "global?: "
38401
37967
  },
38402
37968
  {
38403
37969
  "kind": "Content",
38404
- "text": "number"
37970
+ "text": "boolean | undefined"
38405
37971
  },
38406
37972
  {
38407
37973
  "kind": "Content",
@@ -38409,9 +37975,9 @@
38409
37975
  }
38410
37976
  ],
38411
37977
  "isReadonly": false,
38412
- "isOptional": false,
37978
+ "isOptional": true,
38413
37979
  "releaseTag": "Public",
38414
- "name": "band5",
37980
+ "name": "global",
38415
37981
  "propertyTypeTokenRange": {
38416
37982
  "startIndex": 1,
38417
37983
  "endIndex": 2
@@ -38419,16 +37985,16 @@
38419
37985
  },
38420
37986
  {
38421
37987
  "kind": "PropertySignature",
38422
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band6:member",
38423
- "docComment": "",
37988
+ "canonicalReference": "@dcl/playground-assets!PBAudioSource#loop:member",
37989
+ "docComment": "/**\n * whether the clip should restart when finished.\n */\n",
38424
37990
  "excerptTokens": [
38425
37991
  {
38426
37992
  "kind": "Content",
38427
- "text": "band6: "
37993
+ "text": "loop?: "
38428
37994
  },
38429
37995
  {
38430
37996
  "kind": "Content",
38431
- "text": "number"
37997
+ "text": "boolean | undefined"
38432
37998
  },
38433
37999
  {
38434
38000
  "kind": "Content",
@@ -38436,9 +38002,9 @@
38436
38002
  }
38437
38003
  ],
38438
38004
  "isReadonly": false,
38439
- "isOptional": false,
38005
+ "isOptional": true,
38440
38006
  "releaseTag": "Public",
38441
- "name": "band6",
38007
+ "name": "loop",
38442
38008
  "propertyTypeTokenRange": {
38443
38009
  "startIndex": 1,
38444
38010
  "endIndex": 2
@@ -38446,16 +38012,16 @@
38446
38012
  },
38447
38013
  {
38448
38014
  "kind": "PropertySignature",
38449
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band7:member",
38450
- "docComment": "",
38015
+ "canonicalReference": "@dcl/playground-assets!PBAudioSource#pitch:member",
38016
+ "docComment": "/**\n * the audio pitch (default: 1.0).\n */\n",
38451
38017
  "excerptTokens": [
38452
38018
  {
38453
38019
  "kind": "Content",
38454
- "text": "band7: "
38020
+ "text": "pitch?: "
38455
38021
  },
38456
38022
  {
38457
38023
  "kind": "Content",
38458
- "text": "number"
38024
+ "text": "number | undefined"
38459
38025
  },
38460
38026
  {
38461
38027
  "kind": "Content",
@@ -38463,9 +38029,9 @@
38463
38029
  }
38464
38030
  ],
38465
38031
  "isReadonly": false,
38466
- "isOptional": false,
38032
+ "isOptional": true,
38467
38033
  "releaseTag": "Public",
38468
- "name": "band7",
38034
+ "name": "pitch",
38469
38035
  "propertyTypeTokenRange": {
38470
38036
  "startIndex": 1,
38471
38037
  "endIndex": 2
@@ -38473,16 +38039,16 @@
38473
38039
  },
38474
38040
  {
38475
38041
  "kind": "PropertySignature",
38476
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#bandsGain:member",
38477
- "docComment": "/**\n * End when mode == MODE_LOGARITHMIC\n */\n",
38042
+ "canonicalReference": "@dcl/playground-assets!PBAudioSource#playing:member",
38043
+ "docComment": "/**\n * whether the clip is currently playing.\n */\n",
38478
38044
  "excerptTokens": [
38479
38045
  {
38480
38046
  "kind": "Content",
38481
- "text": "bandsGain?: "
38047
+ "text": "playing?: "
38482
38048
  },
38483
38049
  {
38484
38050
  "kind": "Content",
38485
- "text": "number | undefined"
38051
+ "text": "boolean | undefined"
38486
38052
  },
38487
38053
  {
38488
38054
  "kind": "Content",
@@ -38492,7 +38058,7 @@
38492
38058
  "isReadonly": false,
38493
38059
  "isOptional": true,
38494
38060
  "releaseTag": "Public",
38495
- "name": "bandsGain",
38061
+ "name": "playing",
38496
38062
  "propertyTypeTokenRange": {
38497
38063
  "startIndex": 1,
38498
38064
  "endIndex": 2
@@ -38500,17 +38066,16 @@
38500
38066
  },
38501
38067
  {
38502
38068
  "kind": "PropertySignature",
38503
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#mode:member",
38504
- "docComment": "/**\n * Parameters section\n */\n",
38069
+ "canonicalReference": "@dcl/playground-assets!PBAudioSource#volume:member",
38070
+ "docComment": "/**\n * the audio volume (default: 1.0).\n */\n",
38505
38071
  "excerptTokens": [
38506
38072
  {
38507
38073
  "kind": "Content",
38508
- "text": "mode: "
38074
+ "text": "volume?: "
38509
38075
  },
38510
38076
  {
38511
- "kind": "Reference",
38512
- "text": "PBAudioAnalysisMode",
38513
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode:enum"
38077
+ "kind": "Content",
38078
+ "text": "number | undefined"
38514
38079
  },
38515
38080
  {
38516
38081
  "kind": "Content",
@@ -38518,9 +38083,9 @@
38518
38083
  }
38519
38084
  ],
38520
38085
  "isReadonly": false,
38521
- "isOptional": false,
38086
+ "isOptional": true,
38522
38087
  "releaseTag": "Public",
38523
- "name": "mode",
38088
+ "name": "volume",
38524
38089
  "propertyTypeTokenRange": {
38525
38090
  "startIndex": 1,
38526
38091
  "endIndex": 2
@@ -38531,22 +38096,22 @@
38531
38096
  },
38532
38097
  {
38533
38098
  "kind": "Namespace",
38534
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:namespace",
38099
+ "canonicalReference": "@dcl/playground-assets!PBAudioSource:namespace",
38535
38100
  "docComment": "/**\n * @public\n */\n",
38536
38101
  "excerptTokens": [
38537
38102
  {
38538
38103
  "kind": "Content",
38539
- "text": "export declare namespace PBAudioAnalysis "
38104
+ "text": "export declare namespace PBAudioSource "
38540
38105
  }
38541
38106
  ],
38542
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
38107
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_source.gen.d.ts",
38543
38108
  "releaseTag": "Public",
38544
- "name": "PBAudioAnalysis",
38109
+ "name": "PBAudioSource",
38545
38110
  "preserveMemberOrder": false,
38546
38111
  "members": [
38547
38112
  {
38548
38113
  "kind": "Function",
38549
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis.decode:function(1)",
38114
+ "canonicalReference": "@dcl/playground-assets!PBAudioSource.decode:function(1)",
38550
38115
  "docComment": "",
38551
38116
  "excerptTokens": [
38552
38117
  {
@@ -38581,1204 +38146,8 @@
38581
38146
  },
38582
38147
  {
38583
38148
  "kind": "Reference",
38584
- "text": "PBAudioAnalysis",
38585
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:interface"
38586
- },
38587
- {
38588
- "kind": "Content",
38589
- "text": ";"
38590
- }
38591
- ],
38592
- "returnTypeTokenRange": {
38593
- "startIndex": 7,
38594
- "endIndex": 8
38595
- },
38596
- "releaseTag": "Public",
38597
- "overloadIndex": 1,
38598
- "parameters": [
38599
- {
38600
- "parameterName": "input",
38601
- "parameterTypeTokenRange": {
38602
- "startIndex": 1,
38603
- "endIndex": 4
38604
- },
38605
- "isOptional": false
38606
- },
38607
- {
38608
- "parameterName": "length",
38609
- "parameterTypeTokenRange": {
38610
- "startIndex": 5,
38611
- "endIndex": 6
38612
- },
38613
- "isOptional": true
38614
- }
38615
- ],
38616
- "name": "decode"
38617
- },
38618
- {
38619
- "kind": "Function",
38620
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis.encode:function(1)",
38621
- "docComment": "",
38622
- "excerptTokens": [
38623
- {
38624
- "kind": "Content",
38625
- "text": "function encode(message: "
38626
- },
38627
- {
38628
- "kind": "Reference",
38629
- "text": "PBAudioAnalysis",
38630
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:interface"
38631
- },
38632
- {
38633
- "kind": "Content",
38634
- "text": ", writer?: "
38635
- },
38636
- {
38637
- "kind": "Reference",
38638
- "text": "_m0.Writer",
38639
- "canonicalReference": "protobufjs!Writer:class"
38640
- },
38641
- {
38642
- "kind": "Content",
38643
- "text": "): "
38644
- },
38645
- {
38646
- "kind": "Reference",
38647
- "text": "_m0.Writer",
38648
- "canonicalReference": "protobufjs!Writer:class"
38649
- },
38650
- {
38651
- "kind": "Content",
38652
- "text": ";"
38653
- }
38654
- ],
38655
- "returnTypeTokenRange": {
38656
- "startIndex": 5,
38657
- "endIndex": 6
38658
- },
38659
- "releaseTag": "Public",
38660
- "overloadIndex": 1,
38661
- "parameters": [
38662
- {
38663
- "parameterName": "message",
38664
- "parameterTypeTokenRange": {
38665
- "startIndex": 1,
38666
- "endIndex": 2
38667
- },
38668
- "isOptional": false
38669
- },
38670
- {
38671
- "parameterName": "writer",
38672
- "parameterTypeTokenRange": {
38673
- "startIndex": 3,
38674
- "endIndex": 4
38675
- },
38676
- "isOptional": true
38677
- }
38678
- ],
38679
- "name": "encode"
38680
- }
38681
- ]
38682
- },
38683
- {
38684
- "kind": "Enum",
38685
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode:enum",
38686
- "docComment": "/**\n * @public\n */\n",
38687
- "excerptTokens": [
38688
- {
38689
- "kind": "Content",
38690
- "text": "export declare const enum PBAudioAnalysisMode "
38691
- }
38692
- ],
38693
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
38694
- "releaseTag": "Public",
38695
- "name": "PBAudioAnalysisMode",
38696
- "preserveMemberOrder": false,
38697
- "members": [
38698
- {
38699
- "kind": "EnumMember",
38700
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode.MODE_LOGARITHMIC:member",
38701
- "docComment": "",
38702
- "excerptTokens": [
38703
- {
38704
- "kind": "Content",
38705
- "text": "MODE_LOGARITHMIC = "
38706
- },
38707
- {
38708
- "kind": "Content",
38709
- "text": "1"
38710
- }
38711
- ],
38712
- "initializerTokenRange": {
38713
- "startIndex": 1,
38714
- "endIndex": 2
38715
- },
38716
- "releaseTag": "Public",
38717
- "name": "MODE_LOGARITHMIC"
38718
- },
38719
- {
38720
- "kind": "EnumMember",
38721
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode.MODE_RAW:member",
38722
- "docComment": "",
38723
- "excerptTokens": [
38724
- {
38725
- "kind": "Content",
38726
- "text": "MODE_RAW = "
38727
- },
38728
- {
38729
- "kind": "Content",
38730
- "text": "0"
38731
- }
38732
- ],
38733
- "initializerTokenRange": {
38734
- "startIndex": 1,
38735
- "endIndex": 2
38736
- },
38737
- "releaseTag": "Public",
38738
- "name": "MODE_RAW"
38739
- }
38740
- ]
38741
- },
38742
- {
38743
- "kind": "Interface",
38744
- "canonicalReference": "@dcl/playground-assets!PBAudioEvent:interface",
38745
- "docComment": "/**\n * @public\n */\n",
38746
- "excerptTokens": [
38747
- {
38748
- "kind": "Content",
38749
- "text": "export interface PBAudioEvent "
38750
- }
38751
- ],
38752
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_event.gen.d.ts",
38753
- "releaseTag": "Public",
38754
- "name": "PBAudioEvent",
38755
- "preserveMemberOrder": false,
38756
- "members": [
38757
- {
38758
- "kind": "PropertySignature",
38759
- "canonicalReference": "@dcl/playground-assets!PBAudioEvent#state:member",
38760
- "docComment": "",
38761
- "excerptTokens": [
38762
- {
38763
- "kind": "Content",
38764
- "text": "state: "
38765
- },
38766
- {
38767
- "kind": "Reference",
38768
- "text": "MediaState",
38769
- "canonicalReference": "@dcl/playground-assets!MediaState:enum"
38770
- },
38771
- {
38772
- "kind": "Content",
38773
- "text": ";"
38774
- }
38775
- ],
38776
- "isReadonly": false,
38777
- "isOptional": false,
38778
- "releaseTag": "Public",
38779
- "name": "state",
38780
- "propertyTypeTokenRange": {
38781
- "startIndex": 1,
38782
- "endIndex": 2
38783
- }
38784
- },
38785
- {
38786
- "kind": "PropertySignature",
38787
- "canonicalReference": "@dcl/playground-assets!PBAudioEvent#timestamp:member",
38788
- "docComment": "/**\n * monotonic counter\n */\n",
38789
- "excerptTokens": [
38790
- {
38791
- "kind": "Content",
38792
- "text": "timestamp: "
38793
- },
38794
- {
38795
- "kind": "Content",
38796
- "text": "number"
38797
- },
38798
- {
38799
- "kind": "Content",
38800
- "text": ";"
38801
- }
38802
- ],
38803
- "isReadonly": false,
38804
- "isOptional": false,
38805
- "releaseTag": "Public",
38806
- "name": "timestamp",
38807
- "propertyTypeTokenRange": {
38808
- "startIndex": 1,
38809
- "endIndex": 2
38810
- }
38811
- }
38812
- ],
38813
- "extendsTokenRanges": []
38814
- },
38815
- {
38816
- "kind": "Namespace",
38817
- "canonicalReference": "@dcl/playground-assets!PBAudioEvent:namespace",
38818
- "docComment": "/**\n * @public\n */\n",
38819
- "excerptTokens": [
38820
- {
38821
- "kind": "Content",
38822
- "text": "export declare namespace PBAudioEvent "
38823
- }
38824
- ],
38825
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_event.gen.d.ts",
38826
- "releaseTag": "Public",
38827
- "name": "PBAudioEvent",
38828
- "preserveMemberOrder": false,
38829
- "members": [
38830
- {
38831
- "kind": "Function",
38832
- "canonicalReference": "@dcl/playground-assets!PBAudioEvent.decode:function(1)",
38833
- "docComment": "",
38834
- "excerptTokens": [
38835
- {
38836
- "kind": "Content",
38837
- "text": "function decode(input: "
38838
- },
38839
- {
38840
- "kind": "Reference",
38841
- "text": "_m0.Reader",
38842
- "canonicalReference": "protobufjs!Reader:class"
38843
- },
38844
- {
38845
- "kind": "Content",
38846
- "text": " | "
38847
- },
38848
- {
38849
- "kind": "Reference",
38850
- "text": "Uint8Array",
38851
- "canonicalReference": "!Uint8Array:interface"
38852
- },
38853
- {
38854
- "kind": "Content",
38855
- "text": ", length?: "
38856
- },
38857
- {
38858
- "kind": "Content",
38859
- "text": "number"
38860
- },
38861
- {
38862
- "kind": "Content",
38863
- "text": "): "
38864
- },
38865
- {
38866
- "kind": "Reference",
38867
- "text": "PBAudioEvent",
38868
- "canonicalReference": "@dcl/playground-assets!PBAudioEvent:interface"
38869
- },
38870
- {
38871
- "kind": "Content",
38872
- "text": ";"
38873
- }
38874
- ],
38875
- "returnTypeTokenRange": {
38876
- "startIndex": 7,
38877
- "endIndex": 8
38878
- },
38879
- "releaseTag": "Public",
38880
- "overloadIndex": 1,
38881
- "parameters": [
38882
- {
38883
- "parameterName": "input",
38884
- "parameterTypeTokenRange": {
38885
- "startIndex": 1,
38886
- "endIndex": 4
38887
- },
38888
- "isOptional": false
38889
- },
38890
- {
38891
- "parameterName": "length",
38892
- "parameterTypeTokenRange": {
38893
- "startIndex": 5,
38894
- "endIndex": 6
38895
- },
38896
- "isOptional": true
38897
- }
38898
- ],
38899
- "name": "decode"
38900
- },
38901
- {
38902
- "kind": "Function",
38903
- "canonicalReference": "@dcl/playground-assets!PBAudioEvent.encode:function(1)",
38904
- "docComment": "",
38905
- "excerptTokens": [
38906
- {
38907
- "kind": "Content",
38908
- "text": "function encode(message: "
38909
- },
38910
- {
38911
- "kind": "Reference",
38912
- "text": "PBAudioEvent",
38913
- "canonicalReference": "@dcl/playground-assets!PBAudioEvent:interface"
38914
- },
38915
- {
38916
- "kind": "Content",
38917
- "text": ", writer?: "
38918
- },
38919
- {
38920
- "kind": "Reference",
38921
- "text": "_m0.Writer",
38922
- "canonicalReference": "protobufjs!Writer:class"
38923
- },
38924
- {
38925
- "kind": "Content",
38926
- "text": "): "
38927
- },
38928
- {
38929
- "kind": "Reference",
38930
- "text": "_m0.Writer",
38931
- "canonicalReference": "protobufjs!Writer:class"
38932
- },
38933
- {
38934
- "kind": "Content",
38935
- "text": ";"
38936
- }
38937
- ],
38938
- "returnTypeTokenRange": {
38939
- "startIndex": 5,
38940
- "endIndex": 6
38941
- },
38942
- "releaseTag": "Public",
38943
- "overloadIndex": 1,
38944
- "parameters": [
38945
- {
38946
- "parameterName": "message",
38947
- "parameterTypeTokenRange": {
38948
- "startIndex": 1,
38949
- "endIndex": 2
38950
- },
38951
- "isOptional": false
38952
- },
38953
- {
38954
- "parameterName": "writer",
38955
- "parameterTypeTokenRange": {
38956
- "startIndex": 3,
38957
- "endIndex": 4
38958
- },
38959
- "isOptional": true
38960
- }
38961
- ],
38962
- "name": "encode"
38963
- }
38964
- ]
38965
- },
38966
- {
38967
- "kind": "Interface",
38968
- "canonicalReference": "@dcl/playground-assets!PBAudioSource:interface",
38969
- "docComment": "/**\n * @public\n */\n",
38970
- "excerptTokens": [
38971
- {
38972
- "kind": "Content",
38973
- "text": "export interface PBAudioSource "
38974
- }
38975
- ],
38976
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_source.gen.d.ts",
38977
- "releaseTag": "Public",
38978
- "name": "PBAudioSource",
38979
- "preserveMemberOrder": false,
38980
- "members": [
38981
- {
38982
- "kind": "PropertySignature",
38983
- "canonicalReference": "@dcl/playground-assets!PBAudioSource#audioClipUrl:member",
38984
- "docComment": "/**\n * the clip path as given in the `files` array of the scene's manifest.\n */\n",
38985
- "excerptTokens": [
38986
- {
38987
- "kind": "Content",
38988
- "text": "audioClipUrl: "
38989
- },
38990
- {
38991
- "kind": "Content",
38992
- "text": "string"
38993
- },
38994
- {
38995
- "kind": "Content",
38996
- "text": ";"
38997
- }
38998
- ],
38999
- "isReadonly": false,
39000
- "isOptional": false,
39001
- "releaseTag": "Public",
39002
- "name": "audioClipUrl",
39003
- "propertyTypeTokenRange": {
39004
- "startIndex": 1,
39005
- "endIndex": 2
39006
- }
39007
- },
39008
- {
39009
- "kind": "PropertySignature",
39010
- "canonicalReference": "@dcl/playground-assets!PBAudioSource#currentTime:member",
39011
- "docComment": "/**\n * specifies the current playback time of the clip in seconds (default: 0).\n */\n",
39012
- "excerptTokens": [
39013
- {
39014
- "kind": "Content",
39015
- "text": "currentTime?: "
39016
- },
39017
- {
39018
- "kind": "Content",
39019
- "text": "number | undefined"
39020
- },
39021
- {
39022
- "kind": "Content",
39023
- "text": ";"
39024
- }
39025
- ],
39026
- "isReadonly": false,
39027
- "isOptional": true,
39028
- "releaseTag": "Public",
39029
- "name": "currentTime",
39030
- "propertyTypeTokenRange": {
39031
- "startIndex": 1,
39032
- "endIndex": 2
39033
- }
39034
- },
39035
- {
39036
- "kind": "PropertySignature",
39037
- "canonicalReference": "@dcl/playground-assets!PBAudioSource#global:member",
39038
- "docComment": "/**\n * whether the audio plays at constant volume across the scene.\n */\n",
39039
- "excerptTokens": [
39040
- {
39041
- "kind": "Content",
39042
- "text": "global?: "
39043
- },
39044
- {
39045
- "kind": "Content",
39046
- "text": "boolean | undefined"
39047
- },
39048
- {
39049
- "kind": "Content",
39050
- "text": ";"
39051
- }
39052
- ],
39053
- "isReadonly": false,
39054
- "isOptional": true,
39055
- "releaseTag": "Public",
39056
- "name": "global",
39057
- "propertyTypeTokenRange": {
39058
- "startIndex": 1,
39059
- "endIndex": 2
39060
- }
39061
- },
39062
- {
39063
- "kind": "PropertySignature",
39064
- "canonicalReference": "@dcl/playground-assets!PBAudioSource#loop:member",
39065
- "docComment": "/**\n * whether the clip should restart when finished.\n */\n",
39066
- "excerptTokens": [
39067
- {
39068
- "kind": "Content",
39069
- "text": "loop?: "
39070
- },
39071
- {
39072
- "kind": "Content",
39073
- "text": "boolean | undefined"
39074
- },
39075
- {
39076
- "kind": "Content",
39077
- "text": ";"
39078
- }
39079
- ],
39080
- "isReadonly": false,
39081
- "isOptional": true,
39082
- "releaseTag": "Public",
39083
- "name": "loop",
39084
- "propertyTypeTokenRange": {
39085
- "startIndex": 1,
39086
- "endIndex": 2
39087
- }
39088
- },
39089
- {
39090
- "kind": "PropertySignature",
39091
- "canonicalReference": "@dcl/playground-assets!PBAudioSource#pitch:member",
39092
- "docComment": "/**\n * the audio pitch (default: 1.0).\n */\n",
39093
- "excerptTokens": [
39094
- {
39095
- "kind": "Content",
39096
- "text": "pitch?: "
39097
- },
39098
- {
39099
- "kind": "Content",
39100
- "text": "number | undefined"
39101
- },
39102
- {
39103
- "kind": "Content",
39104
- "text": ";"
39105
- }
39106
- ],
39107
- "isReadonly": false,
39108
- "isOptional": true,
39109
- "releaseTag": "Public",
39110
- "name": "pitch",
39111
- "propertyTypeTokenRange": {
39112
- "startIndex": 1,
39113
- "endIndex": 2
39114
- }
39115
- },
39116
- {
39117
- "kind": "PropertySignature",
39118
- "canonicalReference": "@dcl/playground-assets!PBAudioSource#playing:member",
39119
- "docComment": "/**\n * whether the clip is currently playing.\n */\n",
39120
- "excerptTokens": [
39121
- {
39122
- "kind": "Content",
39123
- "text": "playing?: "
39124
- },
39125
- {
39126
- "kind": "Content",
39127
- "text": "boolean | undefined"
39128
- },
39129
- {
39130
- "kind": "Content",
39131
- "text": ";"
39132
- }
39133
- ],
39134
- "isReadonly": false,
39135
- "isOptional": true,
39136
- "releaseTag": "Public",
39137
- "name": "playing",
39138
- "propertyTypeTokenRange": {
39139
- "startIndex": 1,
39140
- "endIndex": 2
39141
- }
39142
- },
39143
- {
39144
- "kind": "PropertySignature",
39145
- "canonicalReference": "@dcl/playground-assets!PBAudioSource#volume:member",
39146
- "docComment": "/**\n * the audio volume (default: 1.0).\n */\n",
39147
- "excerptTokens": [
39148
- {
39149
- "kind": "Content",
39150
- "text": "volume?: "
39151
- },
39152
- {
39153
- "kind": "Content",
39154
- "text": "number | undefined"
39155
- },
39156
- {
39157
- "kind": "Content",
39158
- "text": ";"
39159
- }
39160
- ],
39161
- "isReadonly": false,
39162
- "isOptional": true,
39163
- "releaseTag": "Public",
39164
- "name": "volume",
39165
- "propertyTypeTokenRange": {
39166
- "startIndex": 1,
39167
- "endIndex": 2
39168
- }
39169
- }
39170
- ],
39171
- "extendsTokenRanges": []
39172
- },
39173
- {
39174
- "kind": "Namespace",
39175
- "canonicalReference": "@dcl/playground-assets!PBAudioSource:namespace",
39176
- "docComment": "/**\n * @public\n */\n",
39177
- "excerptTokens": [
39178
- {
39179
- "kind": "Content",
39180
- "text": "export declare namespace PBAudioSource "
39181
- }
39182
- ],
39183
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_source.gen.d.ts",
39184
- "releaseTag": "Public",
39185
- "name": "PBAudioSource",
39186
- "preserveMemberOrder": false,
39187
- "members": [
39188
- {
39189
- "kind": "Function",
39190
- "canonicalReference": "@dcl/playground-assets!PBAudioSource.decode:function(1)",
39191
- "docComment": "",
39192
- "excerptTokens": [
39193
- {
39194
- "kind": "Content",
39195
- "text": "function decode(input: "
39196
- },
39197
- {
39198
- "kind": "Reference",
39199
- "text": "_m0.Reader",
39200
- "canonicalReference": "protobufjs!Reader:class"
39201
- },
39202
- {
39203
- "kind": "Content",
39204
- "text": " | "
39205
- },
39206
- {
39207
- "kind": "Reference",
39208
- "text": "Uint8Array",
39209
- "canonicalReference": "!Uint8Array:interface"
39210
- },
39211
- {
39212
- "kind": "Content",
39213
- "text": ", length?: "
39214
- },
39215
- {
39216
- "kind": "Content",
39217
- "text": "number"
39218
- },
39219
- {
39220
- "kind": "Content",
39221
- "text": "): "
39222
- },
39223
- {
39224
- "kind": "Reference",
39225
- "text": "PBAudioSource",
39226
- "canonicalReference": "@dcl/playground-assets!PBAudioSource:interface"
39227
- },
39228
- {
39229
- "kind": "Content",
39230
- "text": ";"
39231
- }
39232
- ],
39233
- "returnTypeTokenRange": {
39234
- "startIndex": 7,
39235
- "endIndex": 8
39236
- },
39237
- "releaseTag": "Public",
39238
- "overloadIndex": 1,
39239
- "parameters": [
39240
- {
39241
- "parameterName": "input",
39242
- "parameterTypeTokenRange": {
39243
- "startIndex": 1,
39244
- "endIndex": 4
39245
- },
39246
- "isOptional": false
39247
- },
39248
- {
39249
- "parameterName": "length",
39250
- "parameterTypeTokenRange": {
39251
- "startIndex": 5,
39252
- "endIndex": 6
39253
- },
39254
- "isOptional": true
39255
- }
39256
- ],
39257
- "name": "decode"
39258
- },
39259
- {
39260
- "kind": "Function",
39261
- "canonicalReference": "@dcl/playground-assets!PBAudioSource.encode:function(1)",
39262
- "docComment": "",
39263
- "excerptTokens": [
39264
- {
39265
- "kind": "Content",
39266
- "text": "function encode(message: "
39267
- },
39268
- {
39269
- "kind": "Reference",
39270
- "text": "PBAudioSource",
39271
- "canonicalReference": "@dcl/playground-assets!PBAudioSource:interface"
39272
- },
39273
- {
39274
- "kind": "Content",
39275
- "text": ", writer?: "
39276
- },
39277
- {
39278
- "kind": "Reference",
39279
- "text": "_m0.Writer",
39280
- "canonicalReference": "protobufjs!Writer:class"
39281
- },
39282
- {
39283
- "kind": "Content",
39284
- "text": "): "
39285
- },
39286
- {
39287
- "kind": "Reference",
39288
- "text": "_m0.Writer",
39289
- "canonicalReference": "protobufjs!Writer:class"
39290
- },
39291
- {
39292
- "kind": "Content",
39293
- "text": ";"
39294
- }
39295
- ],
39296
- "returnTypeTokenRange": {
39297
- "startIndex": 5,
39298
- "endIndex": 6
39299
- },
39300
- "releaseTag": "Public",
39301
- "overloadIndex": 1,
39302
- "parameters": [
39303
- {
39304
- "parameterName": "message",
39305
- "parameterTypeTokenRange": {
39306
- "startIndex": 1,
39307
- "endIndex": 2
39308
- },
39309
- "isOptional": false
39310
- },
39311
- {
39312
- "parameterName": "writer",
39313
- "parameterTypeTokenRange": {
39314
- "startIndex": 3,
39315
- "endIndex": 4
39316
- },
39317
- "isOptional": true
39318
- }
39319
- ],
39320
- "name": "encode"
39321
- }
39322
- ]
39323
- },
39324
- {
39325
- "kind": "Interface",
39326
- "canonicalReference": "@dcl/playground-assets!PBAudioStream:interface",
39327
- "docComment": "/**\n * @public\n */\n",
39328
- "excerptTokens": [
39329
- {
39330
- "kind": "Content",
39331
- "text": "export interface PBAudioStream "
39332
- }
39333
- ],
39334
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_stream.gen.d.ts",
39335
- "releaseTag": "Public",
39336
- "name": "PBAudioStream",
39337
- "preserveMemberOrder": false,
39338
- "members": [
39339
- {
39340
- "kind": "PropertySignature",
39341
- "canonicalReference": "@dcl/playground-assets!PBAudioStream#playing:member",
39342
- "docComment": "/**\n * whether the clip is currently playing\n */\n",
39343
- "excerptTokens": [
39344
- {
39345
- "kind": "Content",
39346
- "text": "playing?: "
39347
- },
39348
- {
39349
- "kind": "Content",
39350
- "text": "boolean | undefined"
39351
- },
39352
- {
39353
- "kind": "Content",
39354
- "text": ";"
39355
- }
39356
- ],
39357
- "isReadonly": false,
39358
- "isOptional": true,
39359
- "releaseTag": "Public",
39360
- "name": "playing",
39361
- "propertyTypeTokenRange": {
39362
- "startIndex": 1,
39363
- "endIndex": 2
39364
- }
39365
- },
39366
- {
39367
- "kind": "PropertySignature",
39368
- "canonicalReference": "@dcl/playground-assets!PBAudioStream#spatial:member",
39369
- "docComment": "/**\n * either the audio will be global or spatial (default: false) global: plays the same way for every listener. It is not affected by distance, direction, or position. spatial: changes depending on where the listener is relative to the sound source\n */\n",
39370
- "excerptTokens": [
39371
- {
39372
- "kind": "Content",
39373
- "text": "spatial?: "
39374
- },
39375
- {
39376
- "kind": "Content",
39377
- "text": "boolean | undefined"
39378
- },
39379
- {
39380
- "kind": "Content",
39381
- "text": ";"
39382
- }
39383
- ],
39384
- "isReadonly": false,
39385
- "isOptional": true,
39386
- "releaseTag": "Public",
39387
- "name": "spatial",
39388
- "propertyTypeTokenRange": {
39389
- "startIndex": 1,
39390
- "endIndex": 2
39391
- }
39392
- },
39393
- {
39394
- "kind": "PropertySignature",
39395
- "canonicalReference": "@dcl/playground-assets!PBAudioStream#spatialMaxDistance:member",
39396
- "docComment": "/**\n * The distance where sound either becomes inaudible or stops attenuation (default: 60)\n */\n",
39397
- "excerptTokens": [
39398
- {
39399
- "kind": "Content",
39400
- "text": "spatialMaxDistance?: "
39401
- },
39402
- {
39403
- "kind": "Content",
39404
- "text": "number | undefined"
39405
- },
39406
- {
39407
- "kind": "Content",
39408
- "text": ";"
39409
- }
39410
- ],
39411
- "isReadonly": false,
39412
- "isOptional": true,
39413
- "releaseTag": "Public",
39414
- "name": "spatialMaxDistance",
39415
- "propertyTypeTokenRange": {
39416
- "startIndex": 1,
39417
- "endIndex": 2
39418
- }
39419
- },
39420
- {
39421
- "kind": "PropertySignature",
39422
- "canonicalReference": "@dcl/playground-assets!PBAudioStream#spatialMinDistance:member",
39423
- "docComment": "/**\n * Within the min distance the audio will cease to grow louder in volume (default: 0)\n */\n",
39424
- "excerptTokens": [
39425
- {
39426
- "kind": "Content",
39427
- "text": "spatialMinDistance?: "
39428
- },
39429
- {
39430
- "kind": "Content",
39431
- "text": "number | undefined"
39432
- },
39433
- {
39434
- "kind": "Content",
39435
- "text": ";"
39436
- }
39437
- ],
39438
- "isReadonly": false,
39439
- "isOptional": true,
39440
- "releaseTag": "Public",
39441
- "name": "spatialMinDistance",
39442
- "propertyTypeTokenRange": {
39443
- "startIndex": 1,
39444
- "endIndex": 2
39445
- }
39446
- },
39447
- {
39448
- "kind": "PropertySignature",
39449
- "canonicalReference": "@dcl/playground-assets!PBAudioStream#url:member",
39450
- "docComment": "/**\n * the audio stream HTTP URL\n */\n",
39451
- "excerptTokens": [
39452
- {
39453
- "kind": "Content",
39454
- "text": "url: "
39455
- },
39456
- {
39457
- "kind": "Content",
39458
- "text": "string"
39459
- },
39460
- {
39461
- "kind": "Content",
39462
- "text": ";"
39463
- }
39464
- ],
39465
- "isReadonly": false,
39466
- "isOptional": false,
39467
- "releaseTag": "Public",
39468
- "name": "url",
39469
- "propertyTypeTokenRange": {
39470
- "startIndex": 1,
39471
- "endIndex": 2
39472
- }
39473
- },
39474
- {
39475
- "kind": "PropertySignature",
39476
- "canonicalReference": "@dcl/playground-assets!PBAudioStream#volume:member",
39477
- "docComment": "/**\n * the audio volume (default: 1.0)\n */\n",
39478
- "excerptTokens": [
39479
- {
39480
- "kind": "Content",
39481
- "text": "volume?: "
39482
- },
39483
- {
39484
- "kind": "Content",
39485
- "text": "number | undefined"
39486
- },
39487
- {
39488
- "kind": "Content",
39489
- "text": ";"
39490
- }
39491
- ],
39492
- "isReadonly": false,
39493
- "isOptional": true,
39494
- "releaseTag": "Public",
39495
- "name": "volume",
39496
- "propertyTypeTokenRange": {
39497
- "startIndex": 1,
39498
- "endIndex": 2
39499
- }
39500
- }
39501
- ],
39502
- "extendsTokenRanges": []
39503
- },
39504
- {
39505
- "kind": "Namespace",
39506
- "canonicalReference": "@dcl/playground-assets!PBAudioStream:namespace",
39507
- "docComment": "/**\n * @public\n */\n",
39508
- "excerptTokens": [
39509
- {
39510
- "kind": "Content",
39511
- "text": "export declare namespace PBAudioStream "
39512
- }
39513
- ],
39514
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_stream.gen.d.ts",
39515
- "releaseTag": "Public",
39516
- "name": "PBAudioStream",
39517
- "preserveMemberOrder": false,
39518
- "members": [
39519
- {
39520
- "kind": "Function",
39521
- "canonicalReference": "@dcl/playground-assets!PBAudioStream.decode:function(1)",
39522
- "docComment": "",
39523
- "excerptTokens": [
39524
- {
39525
- "kind": "Content",
39526
- "text": "function decode(input: "
39527
- },
39528
- {
39529
- "kind": "Reference",
39530
- "text": "_m0.Reader",
39531
- "canonicalReference": "protobufjs!Reader:class"
39532
- },
39533
- {
39534
- "kind": "Content",
39535
- "text": " | "
39536
- },
39537
- {
39538
- "kind": "Reference",
39539
- "text": "Uint8Array",
39540
- "canonicalReference": "!Uint8Array:interface"
39541
- },
39542
- {
39543
- "kind": "Content",
39544
- "text": ", length?: "
39545
- },
39546
- {
39547
- "kind": "Content",
39548
- "text": "number"
39549
- },
39550
- {
39551
- "kind": "Content",
39552
- "text": "): "
39553
- },
39554
- {
39555
- "kind": "Reference",
39556
- "text": "PBAudioStream",
39557
- "canonicalReference": "@dcl/playground-assets!PBAudioStream:interface"
39558
- },
39559
- {
39560
- "kind": "Content",
39561
- "text": ";"
39562
- }
39563
- ],
39564
- "returnTypeTokenRange": {
39565
- "startIndex": 7,
39566
- "endIndex": 8
39567
- },
39568
- "releaseTag": "Public",
39569
- "overloadIndex": 1,
39570
- "parameters": [
39571
- {
39572
- "parameterName": "input",
39573
- "parameterTypeTokenRange": {
39574
- "startIndex": 1,
39575
- "endIndex": 4
39576
- },
39577
- "isOptional": false
39578
- },
39579
- {
39580
- "parameterName": "length",
39581
- "parameterTypeTokenRange": {
39582
- "startIndex": 5,
39583
- "endIndex": 6
39584
- },
39585
- "isOptional": true
39586
- }
39587
- ],
39588
- "name": "decode"
39589
- },
39590
- {
39591
- "kind": "Function",
39592
- "canonicalReference": "@dcl/playground-assets!PBAudioStream.encode:function(1)",
39593
- "docComment": "",
39594
- "excerptTokens": [
39595
- {
39596
- "kind": "Content",
39597
- "text": "function encode(message: "
39598
- },
39599
- {
39600
- "kind": "Reference",
39601
- "text": "PBAudioStream",
39602
- "canonicalReference": "@dcl/playground-assets!PBAudioStream:interface"
39603
- },
39604
- {
39605
- "kind": "Content",
39606
- "text": ", writer?: "
39607
- },
39608
- {
39609
- "kind": "Reference",
39610
- "text": "_m0.Writer",
39611
- "canonicalReference": "protobufjs!Writer:class"
39612
- },
39613
- {
39614
- "kind": "Content",
39615
- "text": "): "
39616
- },
39617
- {
39618
- "kind": "Reference",
39619
- "text": "_m0.Writer",
39620
- "canonicalReference": "protobufjs!Writer:class"
39621
- },
39622
- {
39623
- "kind": "Content",
39624
- "text": ";"
39625
- }
39626
- ],
39627
- "returnTypeTokenRange": {
39628
- "startIndex": 5,
39629
- "endIndex": 6
39630
- },
39631
- "releaseTag": "Public",
39632
- "overloadIndex": 1,
39633
- "parameters": [
39634
- {
39635
- "parameterName": "message",
39636
- "parameterTypeTokenRange": {
39637
- "startIndex": 1,
39638
- "endIndex": 2
39639
- },
39640
- "isOptional": false
39641
- },
39642
- {
39643
- "parameterName": "writer",
39644
- "parameterTypeTokenRange": {
39645
- "startIndex": 3,
39646
- "endIndex": 4
39647
- },
39648
- "isOptional": true
39649
- }
39650
- ],
39651
- "name": "encode"
39652
- }
39653
- ]
39654
- },
39655
- {
39656
- "kind": "Interface",
39657
- "canonicalReference": "@dcl/playground-assets!PBAvatarAttach:interface",
39658
- "docComment": "/**\n * @public\n */\n",
39659
- "excerptTokens": [
39660
- {
39661
- "kind": "Content",
39662
- "text": "export interface PBAvatarAttach "
39663
- }
39664
- ],
39665
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_attach.gen.d.ts",
39666
- "releaseTag": "Public",
39667
- "name": "PBAvatarAttach",
39668
- "preserveMemberOrder": false,
39669
- "members": [
39670
- {
39671
- "kind": "PropertySignature",
39672
- "canonicalReference": "@dcl/playground-assets!PBAvatarAttach#anchorPointId:member",
39673
- "docComment": "/**\n * the anchor point.\n */\n",
39674
- "excerptTokens": [
39675
- {
39676
- "kind": "Content",
39677
- "text": "anchorPointId: "
39678
- },
39679
- {
39680
- "kind": "Reference",
39681
- "text": "AvatarAnchorPointType",
39682
- "canonicalReference": "@dcl/playground-assets!AvatarAnchorPointType:enum"
39683
- },
39684
- {
39685
- "kind": "Content",
39686
- "text": ";"
39687
- }
39688
- ],
39689
- "isReadonly": false,
39690
- "isOptional": false,
39691
- "releaseTag": "Public",
39692
- "name": "anchorPointId",
39693
- "propertyTypeTokenRange": {
39694
- "startIndex": 1,
39695
- "endIndex": 2
39696
- }
39697
- },
39698
- {
39699
- "kind": "PropertySignature",
39700
- "canonicalReference": "@dcl/playground-assets!PBAvatarAttach#avatarId:member",
39701
- "docComment": "/**\n * the user ID of the avatar (default: local user)\n */\n",
39702
- "excerptTokens": [
39703
- {
39704
- "kind": "Content",
39705
- "text": "avatarId?: "
39706
- },
39707
- {
39708
- "kind": "Content",
39709
- "text": "string | undefined"
39710
- },
39711
- {
39712
- "kind": "Content",
39713
- "text": ";"
39714
- }
39715
- ],
39716
- "isReadonly": false,
39717
- "isOptional": true,
39718
- "releaseTag": "Public",
39719
- "name": "avatarId",
39720
- "propertyTypeTokenRange": {
39721
- "startIndex": 1,
39722
- "endIndex": 2
39723
- }
39724
- }
39725
- ],
39726
- "extendsTokenRanges": []
39727
- },
39728
- {
39729
- "kind": "Namespace",
39730
- "canonicalReference": "@dcl/playground-assets!PBAvatarAttach:namespace",
39731
- "docComment": "/**\n * @public\n */\n",
39732
- "excerptTokens": [
39733
- {
39734
- "kind": "Content",
39735
- "text": "export declare namespace PBAvatarAttach "
39736
- }
39737
- ],
39738
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_attach.gen.d.ts",
39739
- "releaseTag": "Public",
39740
- "name": "PBAvatarAttach",
39741
- "preserveMemberOrder": false,
39742
- "members": [
39743
- {
39744
- "kind": "Function",
39745
- "canonicalReference": "@dcl/playground-assets!PBAvatarAttach.decode:function(1)",
39746
- "docComment": "",
39747
- "excerptTokens": [
39748
- {
39749
- "kind": "Content",
39750
- "text": "function decode(input: "
39751
- },
39752
- {
39753
- "kind": "Reference",
39754
- "text": "_m0.Reader",
39755
- "canonicalReference": "protobufjs!Reader:class"
39756
- },
39757
- {
39758
- "kind": "Content",
39759
- "text": " | "
39760
- },
39761
- {
39762
- "kind": "Reference",
39763
- "text": "Uint8Array",
39764
- "canonicalReference": "!Uint8Array:interface"
39765
- },
39766
- {
39767
- "kind": "Content",
39768
- "text": ", length?: "
39769
- },
39770
- {
39771
- "kind": "Content",
39772
- "text": "number"
39773
- },
39774
- {
39775
- "kind": "Content",
39776
- "text": "): "
39777
- },
39778
- {
39779
- "kind": "Reference",
39780
- "text": "PBAvatarAttach",
39781
- "canonicalReference": "@dcl/playground-assets!PBAvatarAttach:interface"
38149
+ "text": "PBAudioSource",
38150
+ "canonicalReference": "@dcl/playground-assets!PBAudioSource:interface"
39782
38151
  },
39783
38152
  {
39784
38153
  "kind": "Content",
@@ -39813,7 +38182,7 @@
39813
38182
  },
39814
38183
  {
39815
38184
  "kind": "Function",
39816
- "canonicalReference": "@dcl/playground-assets!PBAvatarAttach.encode:function(1)",
38185
+ "canonicalReference": "@dcl/playground-assets!PBAudioSource.encode:function(1)",
39817
38186
  "docComment": "",
39818
38187
  "excerptTokens": [
39819
38188
  {
@@ -39822,8 +38191,8 @@
39822
38191
  },
39823
38192
  {
39824
38193
  "kind": "Reference",
39825
- "text": "PBAvatarAttach",
39826
- "canonicalReference": "@dcl/playground-assets!PBAvatarAttach:interface"
38194
+ "text": "PBAudioSource",
38195
+ "canonicalReference": "@dcl/playground-assets!PBAudioSource:interface"
39827
38196
  },
39828
38197
  {
39829
38198
  "kind": "Content",
@@ -39878,31 +38247,31 @@
39878
38247
  },
39879
38248
  {
39880
38249
  "kind": "Interface",
39881
- "canonicalReference": "@dcl/playground-assets!PBAvatarBase:interface",
38250
+ "canonicalReference": "@dcl/playground-assets!PBAudioStream:interface",
39882
38251
  "docComment": "/**\n * @public\n */\n",
39883
38252
  "excerptTokens": [
39884
38253
  {
39885
38254
  "kind": "Content",
39886
- "text": "export interface PBAvatarBase "
38255
+ "text": "export interface PBAudioStream "
39887
38256
  }
39888
38257
  ],
39889
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_base.gen.d.ts",
38258
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_stream.gen.d.ts",
39890
38259
  "releaseTag": "Public",
39891
- "name": "PBAvatarBase",
38260
+ "name": "PBAudioStream",
39892
38261
  "preserveMemberOrder": false,
39893
38262
  "members": [
39894
38263
  {
39895
38264
  "kind": "PropertySignature",
39896
- "canonicalReference": "@dcl/playground-assets!PBAvatarBase#bodyShapeUrn:member",
39897
- "docComment": "",
38265
+ "canonicalReference": "@dcl/playground-assets!PBAudioStream#playing:member",
38266
+ "docComment": "/**\n * whether the clip is currently playing\n */\n",
39898
38267
  "excerptTokens": [
39899
38268
  {
39900
38269
  "kind": "Content",
39901
- "text": "bodyShapeUrn: "
38270
+ "text": "playing?: "
39902
38271
  },
39903
38272
  {
39904
38273
  "kind": "Content",
39905
- "text": "string"
38274
+ "text": "boolean | undefined"
39906
38275
  },
39907
38276
  {
39908
38277
  "kind": "Content",
@@ -39910,9 +38279,9 @@
39910
38279
  }
39911
38280
  ],
39912
38281
  "isReadonly": false,
39913
- "isOptional": false,
38282
+ "isOptional": true,
39914
38283
  "releaseTag": "Public",
39915
- "name": "bodyShapeUrn",
38284
+ "name": "playing",
39916
38285
  "propertyTypeTokenRange": {
39917
38286
  "startIndex": 1,
39918
38287
  "endIndex": 2
@@ -39920,21 +38289,16 @@
39920
38289
  },
39921
38290
  {
39922
38291
  "kind": "PropertySignature",
39923
- "canonicalReference": "@dcl/playground-assets!PBAvatarBase#eyesColor:member",
39924
- "docComment": "",
38292
+ "canonicalReference": "@dcl/playground-assets!PBAudioStream#spatial:member",
38293
+ "docComment": "/**\n * either the audio will be global or spatial (default: false) global: plays the same way for every listener. It is not affected by distance, direction, or position. spatial: changes depending on where the listener is relative to the sound source\n */\n",
39925
38294
  "excerptTokens": [
39926
38295
  {
39927
38296
  "kind": "Content",
39928
- "text": "eyesColor: "
39929
- },
39930
- {
39931
- "kind": "Reference",
39932
- "text": "Color3",
39933
- "canonicalReference": "@dcl/playground-assets!Color3"
38297
+ "text": "spatial?: "
39934
38298
  },
39935
38299
  {
39936
38300
  "kind": "Content",
39937
- "text": " | undefined"
38301
+ "text": "boolean | undefined"
39938
38302
  },
39939
38303
  {
39940
38304
  "kind": "Content",
@@ -39942,31 +38306,53 @@
39942
38306
  }
39943
38307
  ],
39944
38308
  "isReadonly": false,
39945
- "isOptional": false,
38309
+ "isOptional": true,
39946
38310
  "releaseTag": "Public",
39947
- "name": "eyesColor",
38311
+ "name": "spatial",
39948
38312
  "propertyTypeTokenRange": {
39949
38313
  "startIndex": 1,
39950
- "endIndex": 3
38314
+ "endIndex": 2
39951
38315
  }
39952
38316
  },
39953
38317
  {
39954
38318
  "kind": "PropertySignature",
39955
- "canonicalReference": "@dcl/playground-assets!PBAvatarBase#hairColor:member",
39956
- "docComment": "",
38319
+ "canonicalReference": "@dcl/playground-assets!PBAudioStream#spatialMaxDistance:member",
38320
+ "docComment": "/**\n * The distance where sound either becomes inaudible or stops attenuation (default: 60)\n */\n",
39957
38321
  "excerptTokens": [
39958
38322
  {
39959
38323
  "kind": "Content",
39960
- "text": "hairColor: "
38324
+ "text": "spatialMaxDistance?: "
39961
38325
  },
39962
38326
  {
39963
- "kind": "Reference",
39964
- "text": "Color3",
39965
- "canonicalReference": "@dcl/playground-assets!Color3"
38327
+ "kind": "Content",
38328
+ "text": "number | undefined"
39966
38329
  },
39967
38330
  {
39968
38331
  "kind": "Content",
39969
- "text": " | undefined"
38332
+ "text": ";"
38333
+ }
38334
+ ],
38335
+ "isReadonly": false,
38336
+ "isOptional": true,
38337
+ "releaseTag": "Public",
38338
+ "name": "spatialMaxDistance",
38339
+ "propertyTypeTokenRange": {
38340
+ "startIndex": 1,
38341
+ "endIndex": 2
38342
+ }
38343
+ },
38344
+ {
38345
+ "kind": "PropertySignature",
38346
+ "canonicalReference": "@dcl/playground-assets!PBAudioStream#spatialMinDistance:member",
38347
+ "docComment": "/**\n * Within the min distance the audio will cease to grow louder in volume (default: 0)\n */\n",
38348
+ "excerptTokens": [
38349
+ {
38350
+ "kind": "Content",
38351
+ "text": "spatialMinDistance?: "
38352
+ },
38353
+ {
38354
+ "kind": "Content",
38355
+ "text": "number | undefined"
39970
38356
  },
39971
38357
  {
39972
38358
  "kind": "Content",
@@ -39974,22 +38360,22 @@
39974
38360
  }
39975
38361
  ],
39976
38362
  "isReadonly": false,
39977
- "isOptional": false,
38363
+ "isOptional": true,
39978
38364
  "releaseTag": "Public",
39979
- "name": "hairColor",
38365
+ "name": "spatialMinDistance",
39980
38366
  "propertyTypeTokenRange": {
39981
38367
  "startIndex": 1,
39982
- "endIndex": 3
38368
+ "endIndex": 2
39983
38369
  }
39984
38370
  },
39985
38371
  {
39986
38372
  "kind": "PropertySignature",
39987
- "canonicalReference": "@dcl/playground-assets!PBAvatarBase#name:member",
39988
- "docComment": "",
38373
+ "canonicalReference": "@dcl/playground-assets!PBAudioStream#url:member",
38374
+ "docComment": "/**\n * the audio stream HTTP URL\n */\n",
39989
38375
  "excerptTokens": [
39990
38376
  {
39991
38377
  "kind": "Content",
39992
- "text": "name: "
38378
+ "text": "url: "
39993
38379
  },
39994
38380
  {
39995
38381
  "kind": "Content",
@@ -40003,7 +38389,7 @@
40003
38389
  "isReadonly": false,
40004
38390
  "isOptional": false,
40005
38391
  "releaseTag": "Public",
40006
- "name": "name",
38392
+ "name": "url",
40007
38393
  "propertyTypeTokenRange": {
40008
38394
  "startIndex": 1,
40009
38395
  "endIndex": 2
@@ -40011,21 +38397,16 @@
40011
38397
  },
40012
38398
  {
40013
38399
  "kind": "PropertySignature",
40014
- "canonicalReference": "@dcl/playground-assets!PBAvatarBase#skinColor:member",
40015
- "docComment": "",
38400
+ "canonicalReference": "@dcl/playground-assets!PBAudioStream#volume:member",
38401
+ "docComment": "/**\n * the audio volume (default: 1.0)\n */\n",
40016
38402
  "excerptTokens": [
40017
38403
  {
40018
38404
  "kind": "Content",
40019
- "text": "skinColor: "
40020
- },
40021
- {
40022
- "kind": "Reference",
40023
- "text": "Color3",
40024
- "canonicalReference": "@dcl/playground-assets!Color3"
38405
+ "text": "volume?: "
40025
38406
  },
40026
38407
  {
40027
38408
  "kind": "Content",
40028
- "text": " | undefined"
38409
+ "text": "number | undefined"
40029
38410
  },
40030
38411
  {
40031
38412
  "kind": "Content",
@@ -40033,12 +38414,12 @@
40033
38414
  }
40034
38415
  ],
40035
38416
  "isReadonly": false,
40036
- "isOptional": false,
38417
+ "isOptional": true,
40037
38418
  "releaseTag": "Public",
40038
- "name": "skinColor",
38419
+ "name": "volume",
40039
38420
  "propertyTypeTokenRange": {
40040
38421
  "startIndex": 1,
40041
- "endIndex": 3
38422
+ "endIndex": 2
40042
38423
  }
40043
38424
  }
40044
38425
  ],
@@ -40046,22 +38427,22 @@
40046
38427
  },
40047
38428
  {
40048
38429
  "kind": "Namespace",
40049
- "canonicalReference": "@dcl/playground-assets!PBAvatarBase:namespace",
38430
+ "canonicalReference": "@dcl/playground-assets!PBAudioStream:namespace",
40050
38431
  "docComment": "/**\n * @public\n */\n",
40051
38432
  "excerptTokens": [
40052
38433
  {
40053
38434
  "kind": "Content",
40054
- "text": "export declare namespace PBAvatarBase "
38435
+ "text": "export declare namespace PBAudioStream "
40055
38436
  }
40056
38437
  ],
40057
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_base.gen.d.ts",
38438
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_stream.gen.d.ts",
40058
38439
  "releaseTag": "Public",
40059
- "name": "PBAvatarBase",
38440
+ "name": "PBAudioStream",
40060
38441
  "preserveMemberOrder": false,
40061
38442
  "members": [
40062
38443
  {
40063
38444
  "kind": "Function",
40064
- "canonicalReference": "@dcl/playground-assets!PBAvatarBase.decode:function(1)",
38445
+ "canonicalReference": "@dcl/playground-assets!PBAudioStream.decode:function(1)",
40065
38446
  "docComment": "",
40066
38447
  "excerptTokens": [
40067
38448
  {
@@ -40096,8 +38477,8 @@
40096
38477
  },
40097
38478
  {
40098
38479
  "kind": "Reference",
40099
- "text": "PBAvatarBase",
40100
- "canonicalReference": "@dcl/playground-assets!PBAvatarBase:interface"
38480
+ "text": "PBAudioStream",
38481
+ "canonicalReference": "@dcl/playground-assets!PBAudioStream:interface"
40101
38482
  },
40102
38483
  {
40103
38484
  "kind": "Content",
@@ -40132,7 +38513,7 @@
40132
38513
  },
40133
38514
  {
40134
38515
  "kind": "Function",
40135
- "canonicalReference": "@dcl/playground-assets!PBAvatarBase.encode:function(1)",
38516
+ "canonicalReference": "@dcl/playground-assets!PBAudioStream.encode:function(1)",
40136
38517
  "docComment": "",
40137
38518
  "excerptTokens": [
40138
38519
  {
@@ -40141,8 +38522,8 @@
40141
38522
  },
40142
38523
  {
40143
38524
  "kind": "Reference",
40144
- "text": "PBAvatarBase",
40145
- "canonicalReference": "@dcl/playground-assets!PBAvatarBase:interface"
38525
+ "text": "PBAudioStream",
38526
+ "canonicalReference": "@dcl/playground-assets!PBAudioStream:interface"
40146
38527
  },
40147
38528
  {
40148
38529
  "kind": "Content",
@@ -40197,58 +38578,32 @@
40197
38578
  },
40198
38579
  {
40199
38580
  "kind": "Interface",
40200
- "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand:interface",
38581
+ "canonicalReference": "@dcl/playground-assets!PBAvatarAttach:interface",
40201
38582
  "docComment": "/**\n * @public\n */\n",
40202
38583
  "excerptTokens": [
40203
38584
  {
40204
38585
  "kind": "Content",
40205
- "text": "export interface PBAvatarEmoteCommand "
38586
+ "text": "export interface PBAvatarAttach "
40206
38587
  }
40207
38588
  ],
40208
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_emote_command.gen.d.ts",
38589
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_attach.gen.d.ts",
40209
38590
  "releaseTag": "Public",
40210
- "name": "PBAvatarEmoteCommand",
38591
+ "name": "PBAvatarAttach",
40211
38592
  "preserveMemberOrder": false,
40212
38593
  "members": [
40213
38594
  {
40214
38595
  "kind": "PropertySignature",
40215
- "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand#emoteUrn:member",
40216
- "docComment": "",
40217
- "excerptTokens": [
40218
- {
40219
- "kind": "Content",
40220
- "text": "emoteUrn: "
40221
- },
40222
- {
40223
- "kind": "Content",
40224
- "text": "string"
40225
- },
40226
- {
40227
- "kind": "Content",
40228
- "text": ";"
40229
- }
40230
- ],
40231
- "isReadonly": false,
40232
- "isOptional": false,
40233
- "releaseTag": "Public",
40234
- "name": "emoteUrn",
40235
- "propertyTypeTokenRange": {
40236
- "startIndex": 1,
40237
- "endIndex": 2
40238
- }
40239
- },
40240
- {
40241
- "kind": "PropertySignature",
40242
- "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand#loop:member",
40243
- "docComment": "",
38596
+ "canonicalReference": "@dcl/playground-assets!PBAvatarAttach#anchorPointId:member",
38597
+ "docComment": "/**\n * the anchor point.\n */\n",
40244
38598
  "excerptTokens": [
40245
38599
  {
40246
38600
  "kind": "Content",
40247
- "text": "loop: "
38601
+ "text": "anchorPointId: "
40248
38602
  },
40249
38603
  {
40250
- "kind": "Content",
40251
- "text": "boolean"
38604
+ "kind": "Reference",
38605
+ "text": "AvatarAnchorPointType",
38606
+ "canonicalReference": "@dcl/playground-assets!AvatarAnchorPointType:enum"
40252
38607
  },
40253
38608
  {
40254
38609
  "kind": "Content",
@@ -40258,7 +38613,7 @@
40258
38613
  "isReadonly": false,
40259
38614
  "isOptional": false,
40260
38615
  "releaseTag": "Public",
40261
- "name": "loop",
38616
+ "name": "anchorPointId",
40262
38617
  "propertyTypeTokenRange": {
40263
38618
  "startIndex": 1,
40264
38619
  "endIndex": 2
@@ -40266,16 +38621,16 @@
40266
38621
  },
40267
38622
  {
40268
38623
  "kind": "PropertySignature",
40269
- "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand#timestamp:member",
40270
- "docComment": "/**\n * monotonic counter\n */\n",
38624
+ "canonicalReference": "@dcl/playground-assets!PBAvatarAttach#avatarId:member",
38625
+ "docComment": "/**\n * the user ID of the avatar (default: local user)\n */\n",
40271
38626
  "excerptTokens": [
40272
38627
  {
40273
38628
  "kind": "Content",
40274
- "text": "timestamp: "
38629
+ "text": "avatarId?: "
40275
38630
  },
40276
38631
  {
40277
38632
  "kind": "Content",
40278
- "text": "number"
38633
+ "text": "string | undefined"
40279
38634
  },
40280
38635
  {
40281
38636
  "kind": "Content",
@@ -40283,9 +38638,9 @@
40283
38638
  }
40284
38639
  ],
40285
38640
  "isReadonly": false,
40286
- "isOptional": false,
38641
+ "isOptional": true,
40287
38642
  "releaseTag": "Public",
40288
- "name": "timestamp",
38643
+ "name": "avatarId",
40289
38644
  "propertyTypeTokenRange": {
40290
38645
  "startIndex": 1,
40291
38646
  "endIndex": 2
@@ -40296,22 +38651,22 @@
40296
38651
  },
40297
38652
  {
40298
38653
  "kind": "Namespace",
40299
- "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand:namespace",
38654
+ "canonicalReference": "@dcl/playground-assets!PBAvatarAttach:namespace",
40300
38655
  "docComment": "/**\n * @public\n */\n",
40301
38656
  "excerptTokens": [
40302
38657
  {
40303
38658
  "kind": "Content",
40304
- "text": "export declare namespace PBAvatarEmoteCommand "
38659
+ "text": "export declare namespace PBAvatarAttach "
40305
38660
  }
40306
38661
  ],
40307
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_emote_command.gen.d.ts",
38662
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_attach.gen.d.ts",
40308
38663
  "releaseTag": "Public",
40309
- "name": "PBAvatarEmoteCommand",
38664
+ "name": "PBAvatarAttach",
40310
38665
  "preserveMemberOrder": false,
40311
38666
  "members": [
40312
38667
  {
40313
38668
  "kind": "Function",
40314
- "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand.decode:function(1)",
38669
+ "canonicalReference": "@dcl/playground-assets!PBAvatarAttach.decode:function(1)",
40315
38670
  "docComment": "",
40316
38671
  "excerptTokens": [
40317
38672
  {
@@ -40346,8 +38701,8 @@
40346
38701
  },
40347
38702
  {
40348
38703
  "kind": "Reference",
40349
- "text": "PBAvatarEmoteCommand",
40350
- "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand:interface"
38704
+ "text": "PBAvatarAttach",
38705
+ "canonicalReference": "@dcl/playground-assets!PBAvatarAttach:interface"
40351
38706
  },
40352
38707
  {
40353
38708
  "kind": "Content",
@@ -40382,7 +38737,7 @@
40382
38737
  },
40383
38738
  {
40384
38739
  "kind": "Function",
40385
- "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand.encode:function(1)",
38740
+ "canonicalReference": "@dcl/playground-assets!PBAvatarAttach.encode:function(1)",
40386
38741
  "docComment": "",
40387
38742
  "excerptTokens": [
40388
38743
  {
@@ -40391,8 +38746,8 @@
40391
38746
  },
40392
38747
  {
40393
38748
  "kind": "Reference",
40394
- "text": "PBAvatarEmoteCommand",
40395
- "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand:interface"
38749
+ "text": "PBAvatarAttach",
38750
+ "canonicalReference": "@dcl/playground-assets!PBAvatarAttach:interface"
40396
38751
  },
40397
38752
  {
40398
38753
  "kind": "Content",
@@ -40447,31 +38802,31 @@
40447
38802
  },
40448
38803
  {
40449
38804
  "kind": "Interface",
40450
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:interface",
38805
+ "canonicalReference": "@dcl/playground-assets!PBAvatarBase:interface",
40451
38806
  "docComment": "/**\n * @public\n */\n",
40452
38807
  "excerptTokens": [
40453
38808
  {
40454
38809
  "kind": "Content",
40455
- "text": "export interface PBAvatarEquippedData "
38810
+ "text": "export interface PBAvatarBase "
40456
38811
  }
40457
38812
  ],
40458
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_equipped_data.gen.d.ts",
38813
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_base.gen.d.ts",
40459
38814
  "releaseTag": "Public",
40460
- "name": "PBAvatarEquippedData",
38815
+ "name": "PBAvatarBase",
40461
38816
  "preserveMemberOrder": false,
40462
38817
  "members": [
40463
38818
  {
40464
38819
  "kind": "PropertySignature",
40465
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData#emoteUrns:member",
38820
+ "canonicalReference": "@dcl/playground-assets!PBAvatarBase#bodyShapeUrn:member",
40466
38821
  "docComment": "",
40467
38822
  "excerptTokens": [
40468
38823
  {
40469
38824
  "kind": "Content",
40470
- "text": "emoteUrns: "
38825
+ "text": "bodyShapeUrn: "
40471
38826
  },
40472
38827
  {
40473
38828
  "kind": "Content",
40474
- "text": "string[]"
38829
+ "text": "string"
40475
38830
  },
40476
38831
  {
40477
38832
  "kind": "Content",
@@ -40481,7 +38836,7 @@
40481
38836
  "isReadonly": false,
40482
38837
  "isOptional": false,
40483
38838
  "releaseTag": "Public",
40484
- "name": "emoteUrns",
38839
+ "name": "bodyShapeUrn",
40485
38840
  "propertyTypeTokenRange": {
40486
38841
  "startIndex": 1,
40487
38842
  "endIndex": 2
@@ -40489,16 +38844,21 @@
40489
38844
  },
40490
38845
  {
40491
38846
  "kind": "PropertySignature",
40492
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData#wearableUrns:member",
38847
+ "canonicalReference": "@dcl/playground-assets!PBAvatarBase#eyesColor:member",
40493
38848
  "docComment": "",
40494
38849
  "excerptTokens": [
40495
38850
  {
40496
38851
  "kind": "Content",
40497
- "text": "wearableUrns: "
38852
+ "text": "eyesColor: "
38853
+ },
38854
+ {
38855
+ "kind": "Reference",
38856
+ "text": "Color3",
38857
+ "canonicalReference": "@dcl/playground-assets!Color3"
40498
38858
  },
40499
38859
  {
40500
38860
  "kind": "Content",
40501
- "text": "string[]"
38861
+ "text": " | undefined"
40502
38862
  },
40503
38863
  {
40504
38864
  "kind": "Content",
@@ -40508,33 +38868,124 @@
40508
38868
  "isReadonly": false,
40509
38869
  "isOptional": false,
40510
38870
  "releaseTag": "Public",
40511
- "name": "wearableUrns",
38871
+ "name": "eyesColor",
38872
+ "propertyTypeTokenRange": {
38873
+ "startIndex": 1,
38874
+ "endIndex": 3
38875
+ }
38876
+ },
38877
+ {
38878
+ "kind": "PropertySignature",
38879
+ "canonicalReference": "@dcl/playground-assets!PBAvatarBase#hairColor:member",
38880
+ "docComment": "",
38881
+ "excerptTokens": [
38882
+ {
38883
+ "kind": "Content",
38884
+ "text": "hairColor: "
38885
+ },
38886
+ {
38887
+ "kind": "Reference",
38888
+ "text": "Color3",
38889
+ "canonicalReference": "@dcl/playground-assets!Color3"
38890
+ },
38891
+ {
38892
+ "kind": "Content",
38893
+ "text": " | undefined"
38894
+ },
38895
+ {
38896
+ "kind": "Content",
38897
+ "text": ";"
38898
+ }
38899
+ ],
38900
+ "isReadonly": false,
38901
+ "isOptional": false,
38902
+ "releaseTag": "Public",
38903
+ "name": "hairColor",
38904
+ "propertyTypeTokenRange": {
38905
+ "startIndex": 1,
38906
+ "endIndex": 3
38907
+ }
38908
+ },
38909
+ {
38910
+ "kind": "PropertySignature",
38911
+ "canonicalReference": "@dcl/playground-assets!PBAvatarBase#name:member",
38912
+ "docComment": "",
38913
+ "excerptTokens": [
38914
+ {
38915
+ "kind": "Content",
38916
+ "text": "name: "
38917
+ },
38918
+ {
38919
+ "kind": "Content",
38920
+ "text": "string"
38921
+ },
38922
+ {
38923
+ "kind": "Content",
38924
+ "text": ";"
38925
+ }
38926
+ ],
38927
+ "isReadonly": false,
38928
+ "isOptional": false,
38929
+ "releaseTag": "Public",
38930
+ "name": "name",
40512
38931
  "propertyTypeTokenRange": {
40513
38932
  "startIndex": 1,
40514
38933
  "endIndex": 2
40515
38934
  }
38935
+ },
38936
+ {
38937
+ "kind": "PropertySignature",
38938
+ "canonicalReference": "@dcl/playground-assets!PBAvatarBase#skinColor:member",
38939
+ "docComment": "",
38940
+ "excerptTokens": [
38941
+ {
38942
+ "kind": "Content",
38943
+ "text": "skinColor: "
38944
+ },
38945
+ {
38946
+ "kind": "Reference",
38947
+ "text": "Color3",
38948
+ "canonicalReference": "@dcl/playground-assets!Color3"
38949
+ },
38950
+ {
38951
+ "kind": "Content",
38952
+ "text": " | undefined"
38953
+ },
38954
+ {
38955
+ "kind": "Content",
38956
+ "text": ";"
38957
+ }
38958
+ ],
38959
+ "isReadonly": false,
38960
+ "isOptional": false,
38961
+ "releaseTag": "Public",
38962
+ "name": "skinColor",
38963
+ "propertyTypeTokenRange": {
38964
+ "startIndex": 1,
38965
+ "endIndex": 3
38966
+ }
40516
38967
  }
40517
38968
  ],
40518
38969
  "extendsTokenRanges": []
40519
38970
  },
40520
38971
  {
40521
38972
  "kind": "Namespace",
40522
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:namespace",
38973
+ "canonicalReference": "@dcl/playground-assets!PBAvatarBase:namespace",
40523
38974
  "docComment": "/**\n * @public\n */\n",
40524
38975
  "excerptTokens": [
40525
38976
  {
40526
38977
  "kind": "Content",
40527
- "text": "export declare namespace PBAvatarEquippedData "
38978
+ "text": "export declare namespace PBAvatarBase "
40528
38979
  }
40529
38980
  ],
40530
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_equipped_data.gen.d.ts",
38981
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_base.gen.d.ts",
40531
38982
  "releaseTag": "Public",
40532
- "name": "PBAvatarEquippedData",
38983
+ "name": "PBAvatarBase",
40533
38984
  "preserveMemberOrder": false,
40534
38985
  "members": [
40535
38986
  {
40536
38987
  "kind": "Function",
40537
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData.decode:function(1)",
38988
+ "canonicalReference": "@dcl/playground-assets!PBAvatarBase.decode:function(1)",
40538
38989
  "docComment": "",
40539
38990
  "excerptTokens": [
40540
38991
  {
@@ -40569,8 +39020,8 @@
40569
39020
  },
40570
39021
  {
40571
39022
  "kind": "Reference",
40572
- "text": "PBAvatarEquippedData",
40573
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:interface"
39023
+ "text": "PBAvatarBase",
39024
+ "canonicalReference": "@dcl/playground-assets!PBAvatarBase:interface"
40574
39025
  },
40575
39026
  {
40576
39027
  "kind": "Content",
@@ -40605,7 +39056,7 @@
40605
39056
  },
40606
39057
  {
40607
39058
  "kind": "Function",
40608
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData.encode:function(1)",
39059
+ "canonicalReference": "@dcl/playground-assets!PBAvatarBase.encode:function(1)",
40609
39060
  "docComment": "",
40610
39061
  "excerptTokens": [
40611
39062
  {
@@ -40614,8 +39065,8 @@
40614
39065
  },
40615
39066
  {
40616
39067
  "kind": "Reference",
40617
- "text": "PBAvatarEquippedData",
40618
- "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:interface"
39068
+ "text": "PBAvatarBase",
39069
+ "canonicalReference": "@dcl/playground-assets!PBAvatarBase:interface"
40619
39070
  },
40620
39071
  {
40621
39072
  "kind": "Content",
@@ -40670,31 +39121,31 @@
40670
39121
  },
40671
39122
  {
40672
39123
  "kind": "Interface",
40673
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface",
39124
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand:interface",
40674
39125
  "docComment": "/**\n * @public\n */\n",
40675
39126
  "excerptTokens": [
40676
39127
  {
40677
39128
  "kind": "Content",
40678
- "text": "export interface PBAvatarLocomotionSettings "
39129
+ "text": "export interface PBAvatarEmoteCommand "
40679
39130
  }
40680
39131
  ],
40681
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_locomotion_settings.gen.d.ts",
39132
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_emote_command.gen.d.ts",
40682
39133
  "releaseTag": "Public",
40683
- "name": "PBAvatarLocomotionSettings",
39134
+ "name": "PBAvatarEmoteCommand",
40684
39135
  "preserveMemberOrder": false,
40685
39136
  "members": [
40686
39137
  {
40687
39138
  "kind": "PropertySignature",
40688
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#hardLandingCooldown:member",
40689
- "docComment": "/**\n * Cooldown time after a hard landing before the avatar can move again (in seconds)\n */\n",
39139
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand#emoteUrn:member",
39140
+ "docComment": "",
40690
39141
  "excerptTokens": [
40691
39142
  {
40692
39143
  "kind": "Content",
40693
- "text": "hardLandingCooldown?: "
39144
+ "text": "emoteUrn: "
40694
39145
  },
40695
39146
  {
40696
39147
  "kind": "Content",
40697
- "text": "number | undefined"
39148
+ "text": "string"
40698
39149
  },
40699
39150
  {
40700
39151
  "kind": "Content",
@@ -40702,9 +39153,9 @@
40702
39153
  }
40703
39154
  ],
40704
39155
  "isReadonly": false,
40705
- "isOptional": true,
39156
+ "isOptional": false,
40706
39157
  "releaseTag": "Public",
40707
- "name": "hardLandingCooldown",
39158
+ "name": "emoteUrn",
40708
39159
  "propertyTypeTokenRange": {
40709
39160
  "startIndex": 1,
40710
39161
  "endIndex": 2
@@ -40712,16 +39163,16 @@
40712
39163
  },
40713
39164
  {
40714
39165
  "kind": "PropertySignature",
40715
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#jogSpeed:member",
40716
- "docComment": "/**\n * Maximum speed when jogging (in meters per second)\n */\n",
39166
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand#loop:member",
39167
+ "docComment": "",
40717
39168
  "excerptTokens": [
40718
39169
  {
40719
39170
  "kind": "Content",
40720
- "text": "jogSpeed?: "
39171
+ "text": "loop: "
40721
39172
  },
40722
39173
  {
40723
39174
  "kind": "Content",
40724
- "text": "number | undefined"
39175
+ "text": "boolean"
40725
39176
  },
40726
39177
  {
40727
39178
  "kind": "Content",
@@ -40729,9 +39180,9 @@
40729
39180
  }
40730
39181
  ],
40731
39182
  "isReadonly": false,
40732
- "isOptional": true,
39183
+ "isOptional": false,
40733
39184
  "releaseTag": "Public",
40734
- "name": "jogSpeed",
39185
+ "name": "loop",
40735
39186
  "propertyTypeTokenRange": {
40736
39187
  "startIndex": 1,
40737
39188
  "endIndex": 2
@@ -40739,16 +39190,16 @@
40739
39190
  },
40740
39191
  {
40741
39192
  "kind": "PropertySignature",
40742
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#jumpHeight:member",
40743
- "docComment": "/**\n * Height of a regular jump (in meters)\n */\n",
39193
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand#timestamp:member",
39194
+ "docComment": "/**\n * monotonic counter\n */\n",
40744
39195
  "excerptTokens": [
40745
39196
  {
40746
39197
  "kind": "Content",
40747
- "text": "jumpHeight?: "
39198
+ "text": "timestamp: "
40748
39199
  },
40749
39200
  {
40750
39201
  "kind": "Content",
40751
- "text": "number | undefined"
39202
+ "text": "number"
40752
39203
  },
40753
39204
  {
40754
39205
  "kind": "Content",
@@ -40756,53 +39207,195 @@
40756
39207
  }
40757
39208
  ],
40758
39209
  "isReadonly": false,
40759
- "isOptional": true,
39210
+ "isOptional": false,
40760
39211
  "releaseTag": "Public",
40761
- "name": "jumpHeight",
39212
+ "name": "timestamp",
40762
39213
  "propertyTypeTokenRange": {
40763
39214
  "startIndex": 1,
40764
39215
  "endIndex": 2
40765
39216
  }
40766
- },
39217
+ }
39218
+ ],
39219
+ "extendsTokenRanges": []
39220
+ },
39221
+ {
39222
+ "kind": "Namespace",
39223
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand:namespace",
39224
+ "docComment": "/**\n * @public\n */\n",
39225
+ "excerptTokens": [
40767
39226
  {
40768
- "kind": "PropertySignature",
40769
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#runJumpHeight:member",
40770
- "docComment": "/**\n * Height of a jump while running (in meters)\n */\n",
39227
+ "kind": "Content",
39228
+ "text": "export declare namespace PBAvatarEmoteCommand "
39229
+ }
39230
+ ],
39231
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_emote_command.gen.d.ts",
39232
+ "releaseTag": "Public",
39233
+ "name": "PBAvatarEmoteCommand",
39234
+ "preserveMemberOrder": false,
39235
+ "members": [
39236
+ {
39237
+ "kind": "Function",
39238
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand.decode:function(1)",
39239
+ "docComment": "",
40771
39240
  "excerptTokens": [
40772
39241
  {
40773
39242
  "kind": "Content",
40774
- "text": "runJumpHeight?: "
39243
+ "text": "function decode(input: "
39244
+ },
39245
+ {
39246
+ "kind": "Reference",
39247
+ "text": "_m0.Reader",
39248
+ "canonicalReference": "protobufjs!Reader:class"
40775
39249
  },
40776
39250
  {
40777
39251
  "kind": "Content",
40778
- "text": "number | undefined"
39252
+ "text": " | "
39253
+ },
39254
+ {
39255
+ "kind": "Reference",
39256
+ "text": "Uint8Array",
39257
+ "canonicalReference": "!Uint8Array:interface"
39258
+ },
39259
+ {
39260
+ "kind": "Content",
39261
+ "text": ", length?: "
39262
+ },
39263
+ {
39264
+ "kind": "Content",
39265
+ "text": "number"
39266
+ },
39267
+ {
39268
+ "kind": "Content",
39269
+ "text": "): "
39270
+ },
39271
+ {
39272
+ "kind": "Reference",
39273
+ "text": "PBAvatarEmoteCommand",
39274
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand:interface"
40779
39275
  },
40780
39276
  {
40781
39277
  "kind": "Content",
40782
39278
  "text": ";"
40783
39279
  }
40784
39280
  ],
40785
- "isReadonly": false,
40786
- "isOptional": true,
39281
+ "returnTypeTokenRange": {
39282
+ "startIndex": 7,
39283
+ "endIndex": 8
39284
+ },
40787
39285
  "releaseTag": "Public",
40788
- "name": "runJumpHeight",
40789
- "propertyTypeTokenRange": {
40790
- "startIndex": 1,
40791
- "endIndex": 2
40792
- }
39286
+ "overloadIndex": 1,
39287
+ "parameters": [
39288
+ {
39289
+ "parameterName": "input",
39290
+ "parameterTypeTokenRange": {
39291
+ "startIndex": 1,
39292
+ "endIndex": 4
39293
+ },
39294
+ "isOptional": false
39295
+ },
39296
+ {
39297
+ "parameterName": "length",
39298
+ "parameterTypeTokenRange": {
39299
+ "startIndex": 5,
39300
+ "endIndex": 6
39301
+ },
39302
+ "isOptional": true
39303
+ }
39304
+ ],
39305
+ "name": "decode"
40793
39306
  },
39307
+ {
39308
+ "kind": "Function",
39309
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand.encode:function(1)",
39310
+ "docComment": "",
39311
+ "excerptTokens": [
39312
+ {
39313
+ "kind": "Content",
39314
+ "text": "function encode(message: "
39315
+ },
39316
+ {
39317
+ "kind": "Reference",
39318
+ "text": "PBAvatarEmoteCommand",
39319
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEmoteCommand:interface"
39320
+ },
39321
+ {
39322
+ "kind": "Content",
39323
+ "text": ", writer?: "
39324
+ },
39325
+ {
39326
+ "kind": "Reference",
39327
+ "text": "_m0.Writer",
39328
+ "canonicalReference": "protobufjs!Writer:class"
39329
+ },
39330
+ {
39331
+ "kind": "Content",
39332
+ "text": "): "
39333
+ },
39334
+ {
39335
+ "kind": "Reference",
39336
+ "text": "_m0.Writer",
39337
+ "canonicalReference": "protobufjs!Writer:class"
39338
+ },
39339
+ {
39340
+ "kind": "Content",
39341
+ "text": ";"
39342
+ }
39343
+ ],
39344
+ "returnTypeTokenRange": {
39345
+ "startIndex": 5,
39346
+ "endIndex": 6
39347
+ },
39348
+ "releaseTag": "Public",
39349
+ "overloadIndex": 1,
39350
+ "parameters": [
39351
+ {
39352
+ "parameterName": "message",
39353
+ "parameterTypeTokenRange": {
39354
+ "startIndex": 1,
39355
+ "endIndex": 2
39356
+ },
39357
+ "isOptional": false
39358
+ },
39359
+ {
39360
+ "parameterName": "writer",
39361
+ "parameterTypeTokenRange": {
39362
+ "startIndex": 3,
39363
+ "endIndex": 4
39364
+ },
39365
+ "isOptional": true
39366
+ }
39367
+ ],
39368
+ "name": "encode"
39369
+ }
39370
+ ]
39371
+ },
39372
+ {
39373
+ "kind": "Interface",
39374
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:interface",
39375
+ "docComment": "/**\n * @public\n */\n",
39376
+ "excerptTokens": [
39377
+ {
39378
+ "kind": "Content",
39379
+ "text": "export interface PBAvatarEquippedData "
39380
+ }
39381
+ ],
39382
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_equipped_data.gen.d.ts",
39383
+ "releaseTag": "Public",
39384
+ "name": "PBAvatarEquippedData",
39385
+ "preserveMemberOrder": false,
39386
+ "members": [
40794
39387
  {
40795
39388
  "kind": "PropertySignature",
40796
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#runSpeed:member",
40797
- "docComment": "/**\n * Maximum speed when running (in meters per second)\n */\n",
39389
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData#emoteUrns:member",
39390
+ "docComment": "",
40798
39391
  "excerptTokens": [
40799
39392
  {
40800
39393
  "kind": "Content",
40801
- "text": "runSpeed?: "
39394
+ "text": "emoteUrns: "
40802
39395
  },
40803
39396
  {
40804
39397
  "kind": "Content",
40805
- "text": "number | undefined"
39398
+ "text": "string[]"
40806
39399
  },
40807
39400
  {
40808
39401
  "kind": "Content",
@@ -40810,9 +39403,9 @@
40810
39403
  }
40811
39404
  ],
40812
39405
  "isReadonly": false,
40813
- "isOptional": true,
39406
+ "isOptional": false,
40814
39407
  "releaseTag": "Public",
40815
- "name": "runSpeed",
39408
+ "name": "emoteUrns",
40816
39409
  "propertyTypeTokenRange": {
40817
39410
  "startIndex": 1,
40818
39411
  "endIndex": 2
@@ -40820,16 +39413,16 @@
40820
39413
  },
40821
39414
  {
40822
39415
  "kind": "PropertySignature",
40823
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#walkSpeed:member",
40824
- "docComment": "/**\n * Maximum speed when walking (in meters per second)\n */\n",
39416
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData#wearableUrns:member",
39417
+ "docComment": "",
40825
39418
  "excerptTokens": [
40826
39419
  {
40827
39420
  "kind": "Content",
40828
- "text": "walkSpeed?: "
39421
+ "text": "wearableUrns: "
40829
39422
  },
40830
39423
  {
40831
39424
  "kind": "Content",
40832
- "text": "number | undefined"
39425
+ "text": "string[]"
40833
39426
  },
40834
39427
  {
40835
39428
  "kind": "Content",
@@ -40837,9 +39430,9 @@
40837
39430
  }
40838
39431
  ],
40839
39432
  "isReadonly": false,
40840
- "isOptional": true,
39433
+ "isOptional": false,
40841
39434
  "releaseTag": "Public",
40842
- "name": "walkSpeed",
39435
+ "name": "wearableUrns",
40843
39436
  "propertyTypeTokenRange": {
40844
39437
  "startIndex": 1,
40845
39438
  "endIndex": 2
@@ -40850,22 +39443,22 @@
40850
39443
  },
40851
39444
  {
40852
39445
  "kind": "Namespace",
40853
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:namespace",
39446
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:namespace",
40854
39447
  "docComment": "/**\n * @public\n */\n",
40855
39448
  "excerptTokens": [
40856
39449
  {
40857
39450
  "kind": "Content",
40858
- "text": "export declare namespace PBAvatarLocomotionSettings "
39451
+ "text": "export declare namespace PBAvatarEquippedData "
40859
39452
  }
40860
39453
  ],
40861
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_locomotion_settings.gen.d.ts",
39454
+ "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_equipped_data.gen.d.ts",
40862
39455
  "releaseTag": "Public",
40863
- "name": "PBAvatarLocomotionSettings",
39456
+ "name": "PBAvatarEquippedData",
40864
39457
  "preserveMemberOrder": false,
40865
39458
  "members": [
40866
39459
  {
40867
39460
  "kind": "Function",
40868
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings.decode:function(1)",
39461
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData.decode:function(1)",
40869
39462
  "docComment": "",
40870
39463
  "excerptTokens": [
40871
39464
  {
@@ -40900,8 +39493,8 @@
40900
39493
  },
40901
39494
  {
40902
39495
  "kind": "Reference",
40903
- "text": "PBAvatarLocomotionSettings",
40904
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface"
39496
+ "text": "PBAvatarEquippedData",
39497
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:interface"
40905
39498
  },
40906
39499
  {
40907
39500
  "kind": "Content",
@@ -40936,7 +39529,7 @@
40936
39529
  },
40937
39530
  {
40938
39531
  "kind": "Function",
40939
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings.encode:function(1)",
39532
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData.encode:function(1)",
40940
39533
  "docComment": "",
40941
39534
  "excerptTokens": [
40942
39535
  {
@@ -40945,8 +39538,8 @@
40945
39538
  },
40946
39539
  {
40947
39540
  "kind": "Reference",
40948
- "text": "PBAvatarLocomotionSettings",
40949
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface"
39541
+ "text": "PBAvatarEquippedData",
39542
+ "canonicalReference": "@dcl/playground-assets!PBAvatarEquippedData:interface"
40950
39543
  },
40951
39544
  {
40952
39545
  "kind": "Content",
@@ -60800,33 +59393,6 @@
60800
59393
  "endIndex": 3
60801
59394
  }
60802
59395
  },
60803
- {
60804
- "kind": "PropertySignature",
60805
- "canonicalReference": "@dcl/playground-assets!PBVirtualCamera#fov:member",
60806
- "docComment": "/**\n * default: 60\n */\n",
60807
- "excerptTokens": [
60808
- {
60809
- "kind": "Content",
60810
- "text": "fov?: "
60811
- },
60812
- {
60813
- "kind": "Content",
60814
- "text": "number | undefined"
60815
- },
60816
- {
60817
- "kind": "Content",
60818
- "text": ";"
60819
- }
60820
- ],
60821
- "isReadonly": false,
60822
- "isOptional": true,
60823
- "releaseTag": "Public",
60824
- "name": "fov",
60825
- "propertyTypeTokenRange": {
60826
- "startIndex": 1,
60827
- "endIndex": 2
60828
- }
60829
- },
60830
59396
  {
60831
59397
  "kind": "PropertySignature",
60832
59398
  "canonicalReference": "@dcl/playground-assets!PBVirtualCamera#lookAtEntity:member",
@@ -61023,6 +59589,33 @@
61023
59589
  "name": "PBVisibilityComponent",
61024
59590
  "preserveMemberOrder": false,
61025
59591
  "members": [
59592
+ {
59593
+ "kind": "PropertySignature",
59594
+ "canonicalReference": "@dcl/playground-assets!PBVisibilityComponent#propagateToChildren:member",
59595
+ "docComment": "/**\n * Propagation follows certain rules: - Any own visibility component takes priority - If no own visibility component, visibility is determined by visibility of the nearest parent with propagate = true - If no own component and no parent with propagate = true, visibility is \"visible\" - Visibility is always updated, whenever hierarchy, parent component or own component changes\n */\n",
59596
+ "excerptTokens": [
59597
+ {
59598
+ "kind": "Content",
59599
+ "text": "propagateToChildren?: "
59600
+ },
59601
+ {
59602
+ "kind": "Content",
59603
+ "text": "boolean | undefined"
59604
+ },
59605
+ {
59606
+ "kind": "Content",
59607
+ "text": ";"
59608
+ }
59609
+ ],
59610
+ "isReadonly": false,
59611
+ "isOptional": true,
59612
+ "releaseTag": "Public",
59613
+ "name": "propagateToChildren",
59614
+ "propertyTypeTokenRange": {
59615
+ "startIndex": 1,
59616
+ "endIndex": 2
59617
+ }
59618
+ },
61026
59619
  {
61027
59620
  "kind": "PropertySignature",
61028
59621
  "canonicalReference": "@dcl/playground-assets!PBVisibilityComponent#visible:member",