@dcl/playground-assets 7.16.1-20711942479.commit-e3098d9 → 7.16.1-20724700887.commit-460127b

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",
@@ -38186,559 +37663,6 @@
38186
37663
  }
38187
37664
  ]
38188
37665
  },
38189
- {
38190
- "kind": "Interface",
38191
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:interface",
38192
- "docComment": "/**\n * @public\n */\n",
38193
- "excerptTokens": [
38194
- {
38195
- "kind": "Content",
38196
- "text": "export interface PBAudioAnalysis "
38197
- }
38198
- ],
38199
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
38200
- "releaseTag": "Public",
38201
- "name": "PBAudioAnalysis",
38202
- "preserveMemberOrder": false,
38203
- "members": [
38204
- {
38205
- "kind": "PropertySignature",
38206
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#amplitude:member",
38207
- "docComment": "/**\n * Result section\n */\n",
38208
- "excerptTokens": [
38209
- {
38210
- "kind": "Content",
38211
- "text": "amplitude: "
38212
- },
38213
- {
38214
- "kind": "Content",
38215
- "text": "number"
38216
- },
38217
- {
38218
- "kind": "Content",
38219
- "text": ";"
38220
- }
38221
- ],
38222
- "isReadonly": false,
38223
- "isOptional": false,
38224
- "releaseTag": "Public",
38225
- "name": "amplitude",
38226
- "propertyTypeTokenRange": {
38227
- "startIndex": 1,
38228
- "endIndex": 2
38229
- }
38230
- },
38231
- {
38232
- "kind": "PropertySignature",
38233
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#amplitudeGain:member",
38234
- "docComment": "/**\n * Used only when mode == MODE_LOGARITHMIC\n */\n",
38235
- "excerptTokens": [
38236
- {
38237
- "kind": "Content",
38238
- "text": "amplitudeGain?: "
38239
- },
38240
- {
38241
- "kind": "Content",
38242
- "text": "number | undefined"
38243
- },
38244
- {
38245
- "kind": "Content",
38246
- "text": ";"
38247
- }
38248
- ],
38249
- "isReadonly": false,
38250
- "isOptional": true,
38251
- "releaseTag": "Public",
38252
- "name": "amplitudeGain",
38253
- "propertyTypeTokenRange": {
38254
- "startIndex": 1,
38255
- "endIndex": 2
38256
- }
38257
- },
38258
- {
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",
38262
- "excerptTokens": [
38263
- {
38264
- "kind": "Content",
38265
- "text": "band0: "
38266
- },
38267
- {
38268
- "kind": "Content",
38269
- "text": "number"
38270
- },
38271
- {
38272
- "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": [
38290
- {
38291
- "kind": "Content",
38292
- "text": "band1: "
38293
- },
38294
- {
38295
- "kind": "Content",
38296
- "text": "number"
38297
- },
38298
- {
38299
- "kind": "Content",
38300
- "text": ";"
38301
- }
38302
- ],
38303
- "isReadonly": false,
38304
- "isOptional": false,
38305
- "releaseTag": "Public",
38306
- "name": "band1",
38307
- "propertyTypeTokenRange": {
38308
- "startIndex": 1,
38309
- "endIndex": 2
38310
- }
38311
- },
38312
- {
38313
- "kind": "PropertySignature",
38314
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band2:member",
38315
- "docComment": "",
38316
- "excerptTokens": [
38317
- {
38318
- "kind": "Content",
38319
- "text": "band2: "
38320
- },
38321
- {
38322
- "kind": "Content",
38323
- "text": "number"
38324
- },
38325
- {
38326
- "kind": "Content",
38327
- "text": ";"
38328
- }
38329
- ],
38330
- "isReadonly": false,
38331
- "isOptional": false,
38332
- "releaseTag": "Public",
38333
- "name": "band2",
38334
- "propertyTypeTokenRange": {
38335
- "startIndex": 1,
38336
- "endIndex": 2
38337
- }
38338
- },
38339
- {
38340
- "kind": "PropertySignature",
38341
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band3:member",
38342
- "docComment": "",
38343
- "excerptTokens": [
38344
- {
38345
- "kind": "Content",
38346
- "text": "band3: "
38347
- },
38348
- {
38349
- "kind": "Content",
38350
- "text": "number"
38351
- },
38352
- {
38353
- "kind": "Content",
38354
- "text": ";"
38355
- }
38356
- ],
38357
- "isReadonly": false,
38358
- "isOptional": false,
38359
- "releaseTag": "Public",
38360
- "name": "band3",
38361
- "propertyTypeTokenRange": {
38362
- "startIndex": 1,
38363
- "endIndex": 2
38364
- }
38365
- },
38366
- {
38367
- "kind": "PropertySignature",
38368
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band4:member",
38369
- "docComment": "",
38370
- "excerptTokens": [
38371
- {
38372
- "kind": "Content",
38373
- "text": "band4: "
38374
- },
38375
- {
38376
- "kind": "Content",
38377
- "text": "number"
38378
- },
38379
- {
38380
- "kind": "Content",
38381
- "text": ";"
38382
- }
38383
- ],
38384
- "isReadonly": false,
38385
- "isOptional": false,
38386
- "releaseTag": "Public",
38387
- "name": "band4",
38388
- "propertyTypeTokenRange": {
38389
- "startIndex": 1,
38390
- "endIndex": 2
38391
- }
38392
- },
38393
- {
38394
- "kind": "PropertySignature",
38395
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band5:member",
38396
- "docComment": "",
38397
- "excerptTokens": [
38398
- {
38399
- "kind": "Content",
38400
- "text": "band5: "
38401
- },
38402
- {
38403
- "kind": "Content",
38404
- "text": "number"
38405
- },
38406
- {
38407
- "kind": "Content",
38408
- "text": ";"
38409
- }
38410
- ],
38411
- "isReadonly": false,
38412
- "isOptional": false,
38413
- "releaseTag": "Public",
38414
- "name": "band5",
38415
- "propertyTypeTokenRange": {
38416
- "startIndex": 1,
38417
- "endIndex": 2
38418
- }
38419
- },
38420
- {
38421
- "kind": "PropertySignature",
38422
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band6:member",
38423
- "docComment": "",
38424
- "excerptTokens": [
38425
- {
38426
- "kind": "Content",
38427
- "text": "band6: "
38428
- },
38429
- {
38430
- "kind": "Content",
38431
- "text": "number"
38432
- },
38433
- {
38434
- "kind": "Content",
38435
- "text": ";"
38436
- }
38437
- ],
38438
- "isReadonly": false,
38439
- "isOptional": false,
38440
- "releaseTag": "Public",
38441
- "name": "band6",
38442
- "propertyTypeTokenRange": {
38443
- "startIndex": 1,
38444
- "endIndex": 2
38445
- }
38446
- },
38447
- {
38448
- "kind": "PropertySignature",
38449
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#band7:member",
38450
- "docComment": "",
38451
- "excerptTokens": [
38452
- {
38453
- "kind": "Content",
38454
- "text": "band7: "
38455
- },
38456
- {
38457
- "kind": "Content",
38458
- "text": "number"
38459
- },
38460
- {
38461
- "kind": "Content",
38462
- "text": ";"
38463
- }
38464
- ],
38465
- "isReadonly": false,
38466
- "isOptional": false,
38467
- "releaseTag": "Public",
38468
- "name": "band7",
38469
- "propertyTypeTokenRange": {
38470
- "startIndex": 1,
38471
- "endIndex": 2
38472
- }
38473
- },
38474
- {
38475
- "kind": "PropertySignature",
38476
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#bandsGain:member",
38477
- "docComment": "/**\n * End when mode == MODE_LOGARITHMIC\n */\n",
38478
- "excerptTokens": [
38479
- {
38480
- "kind": "Content",
38481
- "text": "bandsGain?: "
38482
- },
38483
- {
38484
- "kind": "Content",
38485
- "text": "number | undefined"
38486
- },
38487
- {
38488
- "kind": "Content",
38489
- "text": ";"
38490
- }
38491
- ],
38492
- "isReadonly": false,
38493
- "isOptional": true,
38494
- "releaseTag": "Public",
38495
- "name": "bandsGain",
38496
- "propertyTypeTokenRange": {
38497
- "startIndex": 1,
38498
- "endIndex": 2
38499
- }
38500
- },
38501
- {
38502
- "kind": "PropertySignature",
38503
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis#mode:member",
38504
- "docComment": "/**\n * Parameters section\n */\n",
38505
- "excerptTokens": [
38506
- {
38507
- "kind": "Content",
38508
- "text": "mode: "
38509
- },
38510
- {
38511
- "kind": "Reference",
38512
- "text": "PBAudioAnalysisMode",
38513
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysisMode:enum"
38514
- },
38515
- {
38516
- "kind": "Content",
38517
- "text": ";"
38518
- }
38519
- ],
38520
- "isReadonly": false,
38521
- "isOptional": false,
38522
- "releaseTag": "Public",
38523
- "name": "mode",
38524
- "propertyTypeTokenRange": {
38525
- "startIndex": 1,
38526
- "endIndex": 2
38527
- }
38528
- }
38529
- ],
38530
- "extendsTokenRanges": []
38531
- },
38532
- {
38533
- "kind": "Namespace",
38534
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis:namespace",
38535
- "docComment": "/**\n * @public\n */\n",
38536
- "excerptTokens": [
38537
- {
38538
- "kind": "Content",
38539
- "text": "export declare namespace PBAudioAnalysis "
38540
- }
38541
- ],
38542
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/audio_analysis.gen.d.ts",
38543
- "releaseTag": "Public",
38544
- "name": "PBAudioAnalysis",
38545
- "preserveMemberOrder": false,
38546
- "members": [
38547
- {
38548
- "kind": "Function",
38549
- "canonicalReference": "@dcl/playground-assets!PBAudioAnalysis.decode:function(1)",
38550
- "docComment": "",
38551
- "excerptTokens": [
38552
- {
38553
- "kind": "Content",
38554
- "text": "function decode(input: "
38555
- },
38556
- {
38557
- "kind": "Reference",
38558
- "text": "_m0.Reader",
38559
- "canonicalReference": "protobufjs!Reader:class"
38560
- },
38561
- {
38562
- "kind": "Content",
38563
- "text": " | "
38564
- },
38565
- {
38566
- "kind": "Reference",
38567
- "text": "Uint8Array",
38568
- "canonicalReference": "!Uint8Array:interface"
38569
- },
38570
- {
38571
- "kind": "Content",
38572
- "text": ", length?: "
38573
- },
38574
- {
38575
- "kind": "Content",
38576
- "text": "number"
38577
- },
38578
- {
38579
- "kind": "Content",
38580
- "text": "): "
38581
- },
38582
- {
38583
- "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
37666
  {
38743
37667
  "kind": "Interface",
38744
37668
  "canonicalReference": "@dcl/playground-assets!PBAudioEvent:interface",
@@ -40668,337 +39592,6 @@
40668
39592
  }
40669
39593
  ]
40670
39594
  },
40671
- {
40672
- "kind": "Interface",
40673
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface",
40674
- "docComment": "/**\n * @public\n */\n",
40675
- "excerptTokens": [
40676
- {
40677
- "kind": "Content",
40678
- "text": "export interface PBAvatarLocomotionSettings "
40679
- }
40680
- ],
40681
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_locomotion_settings.gen.d.ts",
40682
- "releaseTag": "Public",
40683
- "name": "PBAvatarLocomotionSettings",
40684
- "preserveMemberOrder": false,
40685
- "members": [
40686
- {
40687
- "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",
40690
- "excerptTokens": [
40691
- {
40692
- "kind": "Content",
40693
- "text": "hardLandingCooldown?: "
40694
- },
40695
- {
40696
- "kind": "Content",
40697
- "text": "number | undefined"
40698
- },
40699
- {
40700
- "kind": "Content",
40701
- "text": ";"
40702
- }
40703
- ],
40704
- "isReadonly": false,
40705
- "isOptional": true,
40706
- "releaseTag": "Public",
40707
- "name": "hardLandingCooldown",
40708
- "propertyTypeTokenRange": {
40709
- "startIndex": 1,
40710
- "endIndex": 2
40711
- }
40712
- },
40713
- {
40714
- "kind": "PropertySignature",
40715
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#jogSpeed:member",
40716
- "docComment": "/**\n * Maximum speed when jogging (in meters per second)\n */\n",
40717
- "excerptTokens": [
40718
- {
40719
- "kind": "Content",
40720
- "text": "jogSpeed?: "
40721
- },
40722
- {
40723
- "kind": "Content",
40724
- "text": "number | undefined"
40725
- },
40726
- {
40727
- "kind": "Content",
40728
- "text": ";"
40729
- }
40730
- ],
40731
- "isReadonly": false,
40732
- "isOptional": true,
40733
- "releaseTag": "Public",
40734
- "name": "jogSpeed",
40735
- "propertyTypeTokenRange": {
40736
- "startIndex": 1,
40737
- "endIndex": 2
40738
- }
40739
- },
40740
- {
40741
- "kind": "PropertySignature",
40742
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#jumpHeight:member",
40743
- "docComment": "/**\n * Height of a regular jump (in meters)\n */\n",
40744
- "excerptTokens": [
40745
- {
40746
- "kind": "Content",
40747
- "text": "jumpHeight?: "
40748
- },
40749
- {
40750
- "kind": "Content",
40751
- "text": "number | undefined"
40752
- },
40753
- {
40754
- "kind": "Content",
40755
- "text": ";"
40756
- }
40757
- ],
40758
- "isReadonly": false,
40759
- "isOptional": true,
40760
- "releaseTag": "Public",
40761
- "name": "jumpHeight",
40762
- "propertyTypeTokenRange": {
40763
- "startIndex": 1,
40764
- "endIndex": 2
40765
- }
40766
- },
40767
- {
40768
- "kind": "PropertySignature",
40769
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#runJumpHeight:member",
40770
- "docComment": "/**\n * Height of a jump while running (in meters)\n */\n",
40771
- "excerptTokens": [
40772
- {
40773
- "kind": "Content",
40774
- "text": "runJumpHeight?: "
40775
- },
40776
- {
40777
- "kind": "Content",
40778
- "text": "number | undefined"
40779
- },
40780
- {
40781
- "kind": "Content",
40782
- "text": ";"
40783
- }
40784
- ],
40785
- "isReadonly": false,
40786
- "isOptional": true,
40787
- "releaseTag": "Public",
40788
- "name": "runJumpHeight",
40789
- "propertyTypeTokenRange": {
40790
- "startIndex": 1,
40791
- "endIndex": 2
40792
- }
40793
- },
40794
- {
40795
- "kind": "PropertySignature",
40796
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#runSpeed:member",
40797
- "docComment": "/**\n * Maximum speed when running (in meters per second)\n */\n",
40798
- "excerptTokens": [
40799
- {
40800
- "kind": "Content",
40801
- "text": "runSpeed?: "
40802
- },
40803
- {
40804
- "kind": "Content",
40805
- "text": "number | undefined"
40806
- },
40807
- {
40808
- "kind": "Content",
40809
- "text": ";"
40810
- }
40811
- ],
40812
- "isReadonly": false,
40813
- "isOptional": true,
40814
- "releaseTag": "Public",
40815
- "name": "runSpeed",
40816
- "propertyTypeTokenRange": {
40817
- "startIndex": 1,
40818
- "endIndex": 2
40819
- }
40820
- },
40821
- {
40822
- "kind": "PropertySignature",
40823
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings#walkSpeed:member",
40824
- "docComment": "/**\n * Maximum speed when walking (in meters per second)\n */\n",
40825
- "excerptTokens": [
40826
- {
40827
- "kind": "Content",
40828
- "text": "walkSpeed?: "
40829
- },
40830
- {
40831
- "kind": "Content",
40832
- "text": "number | undefined"
40833
- },
40834
- {
40835
- "kind": "Content",
40836
- "text": ";"
40837
- }
40838
- ],
40839
- "isReadonly": false,
40840
- "isOptional": true,
40841
- "releaseTag": "Public",
40842
- "name": "walkSpeed",
40843
- "propertyTypeTokenRange": {
40844
- "startIndex": 1,
40845
- "endIndex": 2
40846
- }
40847
- }
40848
- ],
40849
- "extendsTokenRanges": []
40850
- },
40851
- {
40852
- "kind": "Namespace",
40853
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:namespace",
40854
- "docComment": "/**\n * @public\n */\n",
40855
- "excerptTokens": [
40856
- {
40857
- "kind": "Content",
40858
- "text": "export declare namespace PBAvatarLocomotionSettings "
40859
- }
40860
- ],
40861
- "fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/avatar_locomotion_settings.gen.d.ts",
40862
- "releaseTag": "Public",
40863
- "name": "PBAvatarLocomotionSettings",
40864
- "preserveMemberOrder": false,
40865
- "members": [
40866
- {
40867
- "kind": "Function",
40868
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings.decode:function(1)",
40869
- "docComment": "",
40870
- "excerptTokens": [
40871
- {
40872
- "kind": "Content",
40873
- "text": "function decode(input: "
40874
- },
40875
- {
40876
- "kind": "Reference",
40877
- "text": "_m0.Reader",
40878
- "canonicalReference": "protobufjs!Reader:class"
40879
- },
40880
- {
40881
- "kind": "Content",
40882
- "text": " | "
40883
- },
40884
- {
40885
- "kind": "Reference",
40886
- "text": "Uint8Array",
40887
- "canonicalReference": "!Uint8Array:interface"
40888
- },
40889
- {
40890
- "kind": "Content",
40891
- "text": ", length?: "
40892
- },
40893
- {
40894
- "kind": "Content",
40895
- "text": "number"
40896
- },
40897
- {
40898
- "kind": "Content",
40899
- "text": "): "
40900
- },
40901
- {
40902
- "kind": "Reference",
40903
- "text": "PBAvatarLocomotionSettings",
40904
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface"
40905
- },
40906
- {
40907
- "kind": "Content",
40908
- "text": ";"
40909
- }
40910
- ],
40911
- "returnTypeTokenRange": {
40912
- "startIndex": 7,
40913
- "endIndex": 8
40914
- },
40915
- "releaseTag": "Public",
40916
- "overloadIndex": 1,
40917
- "parameters": [
40918
- {
40919
- "parameterName": "input",
40920
- "parameterTypeTokenRange": {
40921
- "startIndex": 1,
40922
- "endIndex": 4
40923
- },
40924
- "isOptional": false
40925
- },
40926
- {
40927
- "parameterName": "length",
40928
- "parameterTypeTokenRange": {
40929
- "startIndex": 5,
40930
- "endIndex": 6
40931
- },
40932
- "isOptional": true
40933
- }
40934
- ],
40935
- "name": "decode"
40936
- },
40937
- {
40938
- "kind": "Function",
40939
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings.encode:function(1)",
40940
- "docComment": "",
40941
- "excerptTokens": [
40942
- {
40943
- "kind": "Content",
40944
- "text": "function encode(message: "
40945
- },
40946
- {
40947
- "kind": "Reference",
40948
- "text": "PBAvatarLocomotionSettings",
40949
- "canonicalReference": "@dcl/playground-assets!PBAvatarLocomotionSettings:interface"
40950
- },
40951
- {
40952
- "kind": "Content",
40953
- "text": ", writer?: "
40954
- },
40955
- {
40956
- "kind": "Reference",
40957
- "text": "_m0.Writer",
40958
- "canonicalReference": "protobufjs!Writer:class"
40959
- },
40960
- {
40961
- "kind": "Content",
40962
- "text": "): "
40963
- },
40964
- {
40965
- "kind": "Reference",
40966
- "text": "_m0.Writer",
40967
- "canonicalReference": "protobufjs!Writer:class"
40968
- },
40969
- {
40970
- "kind": "Content",
40971
- "text": ";"
40972
- }
40973
- ],
40974
- "returnTypeTokenRange": {
40975
- "startIndex": 5,
40976
- "endIndex": 6
40977
- },
40978
- "releaseTag": "Public",
40979
- "overloadIndex": 1,
40980
- "parameters": [
40981
- {
40982
- "parameterName": "message",
40983
- "parameterTypeTokenRange": {
40984
- "startIndex": 1,
40985
- "endIndex": 2
40986
- },
40987
- "isOptional": false
40988
- },
40989
- {
40990
- "parameterName": "writer",
40991
- "parameterTypeTokenRange": {
40992
- "startIndex": 3,
40993
- "endIndex": 4
40994
- },
40995
- "isOptional": true
40996
- }
40997
- ],
40998
- "name": "encode"
40999
- }
41000
- ]
41001
- },
41002
39595
  {
41003
39596
  "kind": "Interface",
41004
39597
  "canonicalReference": "@dcl/playground-assets!PBAvatarModifierArea:interface",
@@ -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",