ProjectCache 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814
  1. m_ProjectFiles:
  2. m_ManifestFileStatus:
  3. m_FilePath: D:/U3D/My project/Packages/manifest.json
  4. m_PathExists: 1
  5. m_ContentTrackingEnabled: 1
  6. m_ModificationDate:
  7. serializedVersion: 2
  8. ticks: 638258491990728964
  9. m_Hash: 1071124706
  10. m_LockFileStatus:
  11. m_FilePath: D:/U3D/My project/Packages/packages-lock.json
  12. m_PathExists: 1
  13. m_ContentTrackingEnabled: 1
  14. m_ModificationDate:
  15. serializedVersion: 2
  16. ticks: 638258492124709216
  17. m_Hash: 2325134421
  18. m_EmbeddedPackageManifests:
  19. m_ManifestsStatus: {}
  20. m_LocalPackages:
  21. m_LocalFileStatus: []
  22. m_ProjectPath: D:/U3D/My project/Packages
  23. m_EditorVersion: 2021.3.7f1c1 (4f55c298767e)
  24. m_ResolvedPackages:
  25. - packageId: com.unity.collab-proxy@1.17.1
  26. testable: 0
  27. isDirectDependency: 1
  28. version: 1.17.1
  29. source: 1
  30. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.collab-proxy@1.17.1
  31. assetPath: Packages/com.unity.collab-proxy
  32. name: com.unity.collab-proxy
  33. displayName: Version Control
  34. author:
  35. name:
  36. email:
  37. url:
  38. category: Editor
  39. type:
  40. description: The Version Control package gives you the ability to use either Collaborate
  41. or Plastic SCM for Unity (beta) in the Unity editor. To use Plastic SCM for Unity
  42. (beta), a Plastic SCM subscription is required. Learn more about how you can
  43. get started for free by visiting plasticscm.com.
  44. status: 4
  45. errors: []
  46. versions:
  47. all:
  48. - 1.17.1
  49. compatible:
  50. - 1.17.1
  51. verified: 1.17.1
  52. dependencies:
  53. - name: com.unity.services.core
  54. version: 1.0.1
  55. resolvedDependencies:
  56. - name: com.unity.services.core
  57. version: 1.4.2
  58. - name: com.unity.modules.unitywebrequest
  59. version: 1.0.0
  60. - name: com.unity.nuget.newtonsoft-json
  61. version: 3.0.2
  62. - name: com.unity.modules.androidjni
  63. version: 1.0.0
  64. keywords:
  65. - backup
  66. - cloud
  67. - collab
  68. - collaborate
  69. - collaboration
  70. - control
  71. - plastic
  72. - plasticscm
  73. - source
  74. - team
  75. - teams
  76. - version
  77. - vcs
  78. registry:
  79. id: main
  80. name:
  81. url: https://packages.unity.cn
  82. scopes: []
  83. isDefault: 1
  84. capabilities: 7
  85. hideInEditor: 1
  86. isAssetStorePackage: 0
  87. datePublishedTicks: 0
  88. documentationUrl:
  89. hasRepository: 1
  90. repository:
  91. type: git
  92. url: https://github.cds.internal.unity3d.com/unity/com.unity.cloud.collaborate.git
  93. revision: 2346af88036ac7256d898e0bb536f60220ce6e18
  94. path:
  95. unityLifecycle:
  96. version: 1.17.1
  97. nextVersion:
  98. - packageId: com.unity.feature.development@1.0.1
  99. testable: 0
  100. isDirectDependency: 1
  101. version: 1.0.1
  102. source: 2
  103. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.feature.development@1.0.1
  104. assetPath: Packages/com.unity.feature.development
  105. name: com.unity.feature.development
  106. displayName: Engineering
  107. author:
  108. name:
  109. email:
  110. url:
  111. category:
  112. type: feature
  113. description: "Optimize your development experience in Unity with the Dev Tools
  114. feature set. Enable support for multiple integrated development environments
  115. (IDE) for editing your Unity code. Get access to development tools to help you
  116. test and analyze your project\u2019s performance."
  117. status: 4
  118. errors: []
  119. versions:
  120. all:
  121. - 1.0.1
  122. compatible:
  123. - 1.0.1
  124. verified: 1.0.1
  125. dependencies:
  126. - name: com.unity.ide.visualstudio
  127. version: default
  128. - name: com.unity.ide.rider
  129. version: default
  130. - name: com.unity.ide.vscode
  131. version: default
  132. - name: com.unity.editorcoroutines
  133. version: default
  134. - name: com.unity.performance.profile-analyzer
  135. version: default
  136. - name: com.unity.test-framework
  137. version: default
  138. - name: com.unity.testtools.codecoverage
  139. version: default
  140. resolvedDependencies:
  141. - name: com.unity.ide.visualstudio
  142. version: 2.0.16
  143. - name: com.unity.test-framework
  144. version: 1.1.31
  145. - name: com.unity.ext.nunit
  146. version: 1.0.6
  147. - name: com.unity.modules.imgui
  148. version: 1.0.0
  149. - name: com.unity.modules.jsonserialize
  150. version: 1.0.0
  151. - name: com.unity.ide.rider
  152. version: 3.0.15
  153. - name: com.unity.ide.vscode
  154. version: 1.2.5
  155. - name: com.unity.editorcoroutines
  156. version: 1.0.0
  157. - name: com.unity.performance.profile-analyzer
  158. version: 1.1.1
  159. - name: com.unity.testtools.codecoverage
  160. version: 1.0.1
  161. - name: com.unity.settings-manager
  162. version: 1.0.3
  163. keywords: []
  164. registry:
  165. id: main
  166. name:
  167. url: https://packages.unity.cn
  168. scopes: []
  169. isDefault: 1
  170. capabilities: 7
  171. hideInEditor: 0
  172. isAssetStorePackage: 0
  173. datePublishedTicks: 0
  174. documentationUrl:
  175. hasRepository: 0
  176. repository:
  177. type:
  178. url:
  179. revision:
  180. path:
  181. unityLifecycle:
  182. version: 1.0.1
  183. nextVersion:
  184. - packageId: com.unity.ide.rider@3.0.15
  185. testable: 0
  186. isDirectDependency: 1
  187. version: 3.0.15
  188. source: 1
  189. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.ide.rider@3.0.15
  190. assetPath: Packages/com.unity.ide.rider
  191. name: com.unity.ide.rider
  192. displayName: JetBrains Rider Editor
  193. author:
  194. name:
  195. email:
  196. url:
  197. category:
  198. type:
  199. description: The JetBrains Rider Editor package provides an integration for using
  200. the JetBrains Rider IDE as a code editor for Unity. It adds support for generating
  201. .csproj files for code completion and auto-discovery of installations.
  202. status: 4
  203. errors: []
  204. versions:
  205. all:
  206. - 3.0.15
  207. compatible:
  208. - 3.0.15
  209. verified: 3.0.15
  210. dependencies:
  211. - name: com.unity.ext.nunit
  212. version: 1.0.6
  213. resolvedDependencies:
  214. - name: com.unity.ext.nunit
  215. version: 1.0.6
  216. keywords: []
  217. registry:
  218. id: main
  219. name:
  220. url: https://packages.unity.cn
  221. scopes: []
  222. isDefault: 1
  223. capabilities: 7
  224. hideInEditor: 1
  225. isAssetStorePackage: 0
  226. datePublishedTicks: 0
  227. documentationUrl:
  228. hasRepository: 1
  229. repository:
  230. type: git
  231. url: https://github.cds.internal.unity3d.com/unity/com.unity.ide.rider.git
  232. revision: b61ff0378932fdf03b5891e09c91728337de674c
  233. path:
  234. unityLifecycle:
  235. version: 3.0.15
  236. nextVersion:
  237. - packageId: com.unity.ide.visualstudio@2.0.16
  238. testable: 0
  239. isDirectDependency: 1
  240. version: 2.0.16
  241. source: 1
  242. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.ide.visualstudio@2.0.16
  243. assetPath: Packages/com.unity.ide.visualstudio
  244. name: com.unity.ide.visualstudio
  245. displayName: Visual Studio Editor
  246. author:
  247. name:
  248. email:
  249. url:
  250. category:
  251. type:
  252. description: Code editor integration for supporting Visual Studio as code editor
  253. for unity. Adds support for generating csproj files for intellisense purposes,
  254. auto discovery of installations, etc.
  255. status: 4
  256. errors: []
  257. versions:
  258. all:
  259. - 2.0.16
  260. compatible:
  261. - 2.0.16
  262. verified: 2.0.16
  263. dependencies:
  264. - name: com.unity.test-framework
  265. version: 1.1.9
  266. resolvedDependencies:
  267. - name: com.unity.test-framework
  268. version: 1.1.31
  269. - name: com.unity.ext.nunit
  270. version: 1.0.6
  271. - name: com.unity.modules.imgui
  272. version: 1.0.0
  273. - name: com.unity.modules.jsonserialize
  274. version: 1.0.0
  275. keywords: []
  276. registry:
  277. id: main
  278. name:
  279. url: https://packages.unity.cn
  280. scopes: []
  281. isDefault: 1
  282. capabilities: 7
  283. hideInEditor: 1
  284. isAssetStorePackage: 0
  285. datePublishedTicks: 0
  286. documentationUrl:
  287. hasRepository: 1
  288. repository:
  289. type: git
  290. url: https://github.cds.internal.unity3d.com/unity/com.unity.ide.visualstudio.git
  291. revision: c01855ef6461b821ab0226135e96a4ee86de96be
  292. path:
  293. unityLifecycle:
  294. version: 2.0.16
  295. nextVersion:
  296. - packageId: com.unity.ide.vscode@1.2.5
  297. testable: 0
  298. isDirectDependency: 1
  299. version: 1.2.5
  300. source: 1
  301. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.ide.vscode@1.2.5
  302. assetPath: Packages/com.unity.ide.vscode
  303. name: com.unity.ide.vscode
  304. displayName: Visual Studio Code Editor
  305. author:
  306. name:
  307. email:
  308. url:
  309. category:
  310. type:
  311. description: Code editor integration for supporting Visual Studio Code as code
  312. editor for unity. Adds support for generating csproj files for intellisense purposes,
  313. auto discovery of installations, etc.
  314. status: 4
  315. errors: []
  316. versions:
  317. all:
  318. - 1.2.5
  319. compatible:
  320. - 1.2.5
  321. verified: 1.2.5
  322. dependencies: []
  323. resolvedDependencies: []
  324. keywords: []
  325. registry:
  326. id: main
  327. name:
  328. url: https://packages.unity.cn
  329. scopes: []
  330. isDefault: 1
  331. capabilities: 7
  332. hideInEditor: 1
  333. isAssetStorePackage: 0
  334. datePublishedTicks: 0
  335. documentationUrl:
  336. hasRepository: 1
  337. repository:
  338. type: git
  339. url: https://github.com/Unity-Technologies/com.unity.ide.vscode.git
  340. revision: b0740c80bfc2440527c317109f7c3d9100132722
  341. path:
  342. unityLifecycle:
  343. version: 1.2.5
  344. nextVersion:
  345. - packageId: com.unity.test-framework@1.1.31
  346. testable: 0
  347. isDirectDependency: 1
  348. version: 1.1.31
  349. source: 1
  350. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.test-framework@1.1.31
  351. assetPath: Packages/com.unity.test-framework
  352. name: com.unity.test-framework
  353. displayName: Test Framework
  354. author:
  355. name:
  356. email:
  357. url:
  358. category: Unity Test Framework
  359. type:
  360. description: Test framework for running Edit mode and Play mode tests in Unity.
  361. status: 4
  362. errors: []
  363. versions:
  364. all:
  365. - 1.1.31
  366. compatible:
  367. - 1.1.31
  368. verified: 1.1.31
  369. dependencies:
  370. - name: com.unity.ext.nunit
  371. version: 1.0.6
  372. - name: com.unity.modules.imgui
  373. version: 1.0.0
  374. - name: com.unity.modules.jsonserialize
  375. version: 1.0.0
  376. resolvedDependencies:
  377. - name: com.unity.ext.nunit
  378. version: 1.0.6
  379. - name: com.unity.modules.imgui
  380. version: 1.0.0
  381. - name: com.unity.modules.jsonserialize
  382. version: 1.0.0
  383. keywords:
  384. - Test
  385. - TestFramework
  386. registry:
  387. id: main
  388. name:
  389. url: https://packages.unity.cn
  390. scopes: []
  391. isDefault: 1
  392. capabilities: 7
  393. hideInEditor: 1
  394. isAssetStorePackage: 0
  395. datePublishedTicks: 0
  396. documentationUrl:
  397. hasRepository: 1
  398. repository:
  399. type: git
  400. url: https://github.com/Unity-Technologies/com.unity.test-framework.git
  401. revision: 438b0defc147c9be5c969ca79ff03a722b4590ed
  402. path:
  403. unityLifecycle:
  404. version: 1.1.31
  405. nextVersion:
  406. - packageId: com.unity.textmeshpro@3.0.6
  407. testable: 0
  408. isDirectDependency: 1
  409. version: 3.0.6
  410. source: 1
  411. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.textmeshpro@3.0.6
  412. assetPath: Packages/com.unity.textmeshpro
  413. name: com.unity.textmeshpro
  414. displayName: TextMeshPro
  415. author:
  416. name:
  417. email:
  418. url:
  419. category: Text Rendering
  420. type:
  421. description: 'TextMeshPro is the ultimate text solution for Unity. It''s the perfect
  422. replacement for Unity''s UI Text and the legacy Text Mesh.
  423. Powerful and
  424. easy to use, TextMeshPro (also known as TMP) uses Advanced Text Rendering techniques
  425. along with a set of custom shaders; delivering substantial visual quality improvements
  426. while giving users incredible flexibility when it comes to text styling and texturing.
  427. TextMeshPro
  428. provides Improved Control over text formatting and layout with features like
  429. character, word, line and paragraph spacing, kerning, justified text, Links,
  430. over 30 Rich Text Tags available, support for Multi Font & Sprites, Custom Styles
  431. and more.
  432. Great performance. Since the geometry created by TextMeshPro
  433. uses two triangles per character just like Unity''s text components, this improved
  434. visual quality and flexibility comes at no additional performance cost.'
  435. status: 4
  436. errors: []
  437. versions:
  438. all:
  439. - 3.0.6
  440. compatible:
  441. - 3.0.6
  442. verified: 3.0.6
  443. dependencies:
  444. - name: com.unity.ugui
  445. version: 1.0.0
  446. resolvedDependencies:
  447. - name: com.unity.ugui
  448. version: 1.0.0
  449. - name: com.unity.modules.ui
  450. version: 1.0.0
  451. - name: com.unity.modules.imgui
  452. version: 1.0.0
  453. keywords:
  454. - TextMeshPro
  455. - TextMesh Pro
  456. - TMP
  457. - Text
  458. - SDF
  459. registry:
  460. id: main
  461. name:
  462. url: https://packages.unity.cn
  463. scopes: []
  464. isDefault: 1
  465. capabilities: 7
  466. hideInEditor: 1
  467. isAssetStorePackage: 0
  468. datePublishedTicks: 0
  469. documentationUrl:
  470. hasRepository: 1
  471. repository:
  472. type: git
  473. url: https://github.cds.internal.unity3d.com/unity/com.unity.textmeshpro.git
  474. revision: 01e57e3b7de18af9dfe9baaa0a0ff5cc4765c899
  475. path:
  476. unityLifecycle:
  477. version: 3.0.6
  478. nextVersion:
  479. - packageId: com.unity.timeline@1.6.4
  480. testable: 0
  481. isDirectDependency: 1
  482. version: 1.6.4
  483. source: 1
  484. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.timeline@1.6.4
  485. assetPath: Packages/com.unity.timeline
  486. name: com.unity.timeline
  487. displayName: Timeline
  488. author:
  489. name:
  490. email:
  491. url:
  492. category:
  493. type:
  494. description: Use Unity Timeline to create cinematic content, game-play sequences,
  495. audio sequences, and complex particle effects.
  496. status: 4
  497. errors: []
  498. versions:
  499. all:
  500. - 1.6.4
  501. compatible:
  502. - 1.6.4
  503. verified: 1.6.4
  504. dependencies:
  505. - name: com.unity.modules.director
  506. version: 1.0.0
  507. - name: com.unity.modules.animation
  508. version: 1.0.0
  509. - name: com.unity.modules.audio
  510. version: 1.0.0
  511. - name: com.unity.modules.particlesystem
  512. version: 1.0.0
  513. resolvedDependencies:
  514. - name: com.unity.modules.director
  515. version: 1.0.0
  516. - name: com.unity.modules.audio
  517. version: 1.0.0
  518. - name: com.unity.modules.animation
  519. version: 1.0.0
  520. - name: com.unity.modules.particlesystem
  521. version: 1.0.0
  522. keywords:
  523. - unity
  524. - animation
  525. - editor
  526. - timeline
  527. - tools
  528. registry:
  529. id: main
  530. name:
  531. url: https://packages.unity.cn
  532. scopes: []
  533. isDefault: 1
  534. capabilities: 7
  535. hideInEditor: 1
  536. isAssetStorePackage: 0
  537. datePublishedTicks: 0
  538. documentationUrl:
  539. hasRepository: 1
  540. repository:
  541. type: git
  542. url: https://github.cds.internal.unity3d.com/unity/com.unity.timeline.git
  543. revision: d7e1eb6805737974459309b7d6e7db58635dd167
  544. path:
  545. unityLifecycle:
  546. version: 1.6.4
  547. nextVersion:
  548. - packageId: com.unity.ugui@1.0.0
  549. testable: 0
  550. isDirectDependency: 1
  551. version: 1.0.0
  552. source: 2
  553. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.ugui@1.0.0
  554. assetPath: Packages/com.unity.ugui
  555. name: com.unity.ugui
  556. displayName: Unity UI
  557. author:
  558. name:
  559. email:
  560. url:
  561. category:
  562. type:
  563. description: "Unity UI is a set of tools for developing user interfaces for games
  564. and applications. It is a GameObject-based UI system that uses Components and
  565. the Game View to arrange, position, and style user interfaces. \u200B You cannot
  566. use Unity UI to create or change user interfaces in the Unity Editor."
  567. status: 4
  568. errors: []
  569. versions:
  570. all:
  571. - 1.0.0
  572. compatible:
  573. - 1.0.0
  574. verified: 1.0.0
  575. dependencies:
  576. - name: com.unity.modules.ui
  577. version: 1.0.0
  578. - name: com.unity.modules.imgui
  579. version: 1.0.0
  580. resolvedDependencies:
  581. - name: com.unity.modules.ui
  582. version: 1.0.0
  583. - name: com.unity.modules.imgui
  584. version: 1.0.0
  585. keywords:
  586. - UI
  587. - ugui
  588. - Unity UI
  589. - Canvas
  590. registry:
  591. id: main
  592. name:
  593. url: https://packages.unity.cn
  594. scopes: []
  595. isDefault: 1
  596. capabilities: 7
  597. hideInEditor: 1
  598. isAssetStorePackage: 0
  599. datePublishedTicks: 0
  600. documentationUrl:
  601. hasRepository: 0
  602. repository:
  603. type:
  604. url:
  605. revision:
  606. path:
  607. unityLifecycle:
  608. version: 1.0.0
  609. nextVersion:
  610. - packageId: com.unity.visualscripting@1.7.8
  611. testable: 0
  612. isDirectDependency: 1
  613. version: 1.7.8
  614. source: 1
  615. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.visualscripting@1.7.8
  616. assetPath: Packages/com.unity.visualscripting
  617. name: com.unity.visualscripting
  618. displayName: Visual Scripting
  619. author:
  620. name:
  621. email:
  622. url:
  623. category:
  624. type: tool
  625. description: 'Visual scripting is a workflow that uses visual, node-based graphs
  626. to design behaviors rather than write lines of C# script.
  627. Enabling artists,
  628. designers and programmers alike, visual scripting can be used to design final
  629. logic, quickly create prototypes, iterate on gameplay and create custom nodes
  630. to help streamline collaboration.
  631. Visual scripting is compatible with third-party
  632. APIs, including most packages, assets and custom libraries.'
  633. status: 4
  634. errors: []
  635. versions:
  636. all:
  637. - 1.7.8
  638. compatible:
  639. - 1.7.8
  640. verified: 1.7.8
  641. dependencies:
  642. - name: com.unity.ugui
  643. version: 1.0.0
  644. - name: com.unity.modules.jsonserialize
  645. version: 1.0.0
  646. resolvedDependencies:
  647. - name: com.unity.ugui
  648. version: 1.0.0
  649. - name: com.unity.modules.ui
  650. version: 1.0.0
  651. - name: com.unity.modules.imgui
  652. version: 1.0.0
  653. - name: com.unity.modules.jsonserialize
  654. version: 1.0.0
  655. keywords: []
  656. registry:
  657. id: main
  658. name:
  659. url: https://packages.unity.cn
  660. scopes: []
  661. isDefault: 1
  662. capabilities: 7
  663. hideInEditor: 1
  664. isAssetStorePackage: 0
  665. datePublishedTicks: 0
  666. documentationUrl:
  667. hasRepository: 1
  668. repository:
  669. type: git
  670. url: https://github.cds.internal.unity3d.com/unity/com.unity.visualscripting.git
  671. revision: 775a560e6602f51ff05aca02264f8bed4d415fd3
  672. path:
  673. unityLifecycle:
  674. version: 1.7.8
  675. nextVersion:
  676. - packageId: com.unity.modules.ai@1.0.0
  677. testable: 0
  678. isDirectDependency: 1
  679. version: 1.0.0
  680. source: 2
  681. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.ai@1.0.0
  682. assetPath: Packages/com.unity.modules.ai
  683. name: com.unity.modules.ai
  684. displayName: AI
  685. author:
  686. name:
  687. email:
  688. url:
  689. category:
  690. type: module
  691. description: 'The AI module implements the path finding features in Unity. Scripting
  692. API: https://docs.unity3d.com/ScriptReference/UnityEngine.AIModule.html'
  693. status: 4
  694. errors: []
  695. versions:
  696. all:
  697. - 1.0.0
  698. compatible:
  699. - 1.0.0
  700. verified: 1.0.0
  701. dependencies: []
  702. resolvedDependencies: []
  703. keywords: []
  704. registry:
  705. id: main
  706. name:
  707. url: https://packages.unity.cn
  708. scopes: []
  709. isDefault: 1
  710. capabilities: 7
  711. hideInEditor: 1
  712. isAssetStorePackage: 0
  713. datePublishedTicks: 0
  714. documentationUrl:
  715. hasRepository: 0
  716. repository:
  717. type:
  718. url:
  719. revision:
  720. path:
  721. unityLifecycle:
  722. version: 1.0.0
  723. nextVersion:
  724. - packageId: com.unity.modules.androidjni@1.0.0
  725. testable: 0
  726. isDirectDependency: 1
  727. version: 1.0.0
  728. source: 2
  729. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.androidjni@1.0.0
  730. assetPath: Packages/com.unity.modules.androidjni
  731. name: com.unity.modules.androidjni
  732. displayName: Android JNI
  733. author:
  734. name:
  735. email:
  736. url:
  737. category:
  738. type: module
  739. description: 'AndroidJNI module allows you to call Java code. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.AndroidJNIModule.html'
  740. status: 4
  741. errors: []
  742. versions:
  743. all:
  744. - 1.0.0
  745. compatible:
  746. - 1.0.0
  747. verified: 1.0.0
  748. dependencies: []
  749. resolvedDependencies: []
  750. keywords: []
  751. registry:
  752. id: main
  753. name:
  754. url: https://packages.unity.cn
  755. scopes: []
  756. isDefault: 1
  757. capabilities: 7
  758. hideInEditor: 1
  759. isAssetStorePackage: 0
  760. datePublishedTicks: 0
  761. documentationUrl:
  762. hasRepository: 0
  763. repository:
  764. type:
  765. url:
  766. revision:
  767. path:
  768. unityLifecycle:
  769. version: 1.0.0
  770. nextVersion:
  771. - packageId: com.unity.modules.animation@1.0.0
  772. testable: 0
  773. isDirectDependency: 1
  774. version: 1.0.0
  775. source: 2
  776. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.animation@1.0.0
  777. assetPath: Packages/com.unity.modules.animation
  778. name: com.unity.modules.animation
  779. displayName: Animation
  780. author:
  781. name:
  782. email:
  783. url:
  784. category:
  785. type: module
  786. description: 'The Animation module implements Unity''s animation system. Scripting
  787. API: https://docs.unity3d.com/ScriptReference/UnityEngine.AnimationModule.html'
  788. status: 4
  789. errors: []
  790. versions:
  791. all:
  792. - 1.0.0
  793. compatible:
  794. - 1.0.0
  795. verified: 1.0.0
  796. dependencies: []
  797. resolvedDependencies: []
  798. keywords: []
  799. registry:
  800. id: main
  801. name:
  802. url: https://packages.unity.cn
  803. scopes: []
  804. isDefault: 1
  805. capabilities: 7
  806. hideInEditor: 1
  807. isAssetStorePackage: 0
  808. datePublishedTicks: 0
  809. documentationUrl:
  810. hasRepository: 0
  811. repository:
  812. type:
  813. url:
  814. revision:
  815. path:
  816. unityLifecycle:
  817. version: 1.0.0
  818. nextVersion:
  819. - packageId: com.unity.modules.assetbundle@1.0.0
  820. testable: 0
  821. isDirectDependency: 1
  822. version: 1.0.0
  823. source: 2
  824. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.assetbundle@1.0.0
  825. assetPath: Packages/com.unity.modules.assetbundle
  826. name: com.unity.modules.assetbundle
  827. displayName: Asset Bundle
  828. author:
  829. name:
  830. email:
  831. url:
  832. category:
  833. type: module
  834. description: 'The AssetBundle module implements the AssetBundle class and related
  835. APIs to load data from AssetBundles. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.AssetBundleModule.html'
  836. status: 4
  837. errors: []
  838. versions:
  839. all:
  840. - 1.0.0
  841. compatible:
  842. - 1.0.0
  843. verified: 1.0.0
  844. dependencies: []
  845. resolvedDependencies: []
  846. keywords: []
  847. registry:
  848. id: main
  849. name:
  850. url: https://packages.unity.cn
  851. scopes: []
  852. isDefault: 1
  853. capabilities: 7
  854. hideInEditor: 1
  855. isAssetStorePackage: 0
  856. datePublishedTicks: 0
  857. documentationUrl:
  858. hasRepository: 0
  859. repository:
  860. type:
  861. url:
  862. revision:
  863. path:
  864. unityLifecycle:
  865. version: 1.0.0
  866. nextVersion:
  867. - packageId: com.unity.modules.audio@1.0.0
  868. testable: 0
  869. isDirectDependency: 1
  870. version: 1.0.0
  871. source: 2
  872. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.audio@1.0.0
  873. assetPath: Packages/com.unity.modules.audio
  874. name: com.unity.modules.audio
  875. displayName: Audio
  876. author:
  877. name:
  878. email:
  879. url:
  880. category:
  881. type: module
  882. description: 'The Audio module implements Unity''s audio system. Scripting API:
  883. https://docs.unity3d.com/ScriptReference/UnityEngine.AudioModule.html'
  884. status: 4
  885. errors: []
  886. versions:
  887. all:
  888. - 1.0.0
  889. compatible:
  890. - 1.0.0
  891. verified: 1.0.0
  892. dependencies: []
  893. resolvedDependencies: []
  894. keywords: []
  895. registry:
  896. id: main
  897. name:
  898. url: https://packages.unity.cn
  899. scopes: []
  900. isDefault: 1
  901. capabilities: 7
  902. hideInEditor: 1
  903. isAssetStorePackage: 0
  904. datePublishedTicks: 0
  905. documentationUrl:
  906. hasRepository: 0
  907. repository:
  908. type:
  909. url:
  910. revision:
  911. path:
  912. unityLifecycle:
  913. version: 1.0.0
  914. nextVersion:
  915. - packageId: com.unity.modules.cloth@1.0.0
  916. testable: 0
  917. isDirectDependency: 1
  918. version: 1.0.0
  919. source: 2
  920. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.cloth@1.0.0
  921. assetPath: Packages/com.unity.modules.cloth
  922. name: com.unity.modules.cloth
  923. displayName: Cloth
  924. author:
  925. name:
  926. email:
  927. url:
  928. category:
  929. type: module
  930. description: 'The Cloth module implements cloth physics simulation through the
  931. Cloth component. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.ClothModule.html'
  932. status: 4
  933. errors: []
  934. versions:
  935. all:
  936. - 1.0.0
  937. compatible:
  938. - 1.0.0
  939. verified: 1.0.0
  940. dependencies:
  941. - name: com.unity.modules.physics
  942. version: 1.0.0
  943. resolvedDependencies:
  944. - name: com.unity.modules.physics
  945. version: 1.0.0
  946. keywords: []
  947. registry:
  948. id: main
  949. name:
  950. url: https://packages.unity.cn
  951. scopes: []
  952. isDefault: 1
  953. capabilities: 7
  954. hideInEditor: 1
  955. isAssetStorePackage: 0
  956. datePublishedTicks: 0
  957. documentationUrl:
  958. hasRepository: 0
  959. repository:
  960. type:
  961. url:
  962. revision:
  963. path:
  964. unityLifecycle:
  965. version: 1.0.0
  966. nextVersion:
  967. - packageId: com.unity.modules.director@1.0.0
  968. testable: 0
  969. isDirectDependency: 1
  970. version: 1.0.0
  971. source: 2
  972. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.director@1.0.0
  973. assetPath: Packages/com.unity.modules.director
  974. name: com.unity.modules.director
  975. displayName: Director
  976. author:
  977. name:
  978. email:
  979. url:
  980. category:
  981. type: module
  982. description: 'The Director module implements the PlayableDirector class. Scripting
  983. API: https://docs.unity3d.com/ScriptReference/UnityEngine.DirectorModule.html'
  984. status: 4
  985. errors: []
  986. versions:
  987. all:
  988. - 1.0.0
  989. compatible:
  990. - 1.0.0
  991. verified: 1.0.0
  992. dependencies:
  993. - name: com.unity.modules.audio
  994. version: 1.0.0
  995. - name: com.unity.modules.animation
  996. version: 1.0.0
  997. resolvedDependencies:
  998. - name: com.unity.modules.audio
  999. version: 1.0.0
  1000. - name: com.unity.modules.animation
  1001. version: 1.0.0
  1002. keywords: []
  1003. registry:
  1004. id: main
  1005. name:
  1006. url: https://packages.unity.cn
  1007. scopes: []
  1008. isDefault: 1
  1009. capabilities: 7
  1010. hideInEditor: 1
  1011. isAssetStorePackage: 0
  1012. datePublishedTicks: 0
  1013. documentationUrl:
  1014. hasRepository: 0
  1015. repository:
  1016. type:
  1017. url:
  1018. revision:
  1019. path:
  1020. unityLifecycle:
  1021. version: 1.0.0
  1022. nextVersion:
  1023. - packageId: com.unity.modules.imageconversion@1.0.0
  1024. testable: 0
  1025. isDirectDependency: 1
  1026. version: 1.0.0
  1027. source: 2
  1028. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.imageconversion@1.0.0
  1029. assetPath: Packages/com.unity.modules.imageconversion
  1030. name: com.unity.modules.imageconversion
  1031. displayName: Image Conversion
  1032. author:
  1033. name:
  1034. email:
  1035. url:
  1036. category:
  1037. type: module
  1038. description: 'The ImageConversion module implements the ImageConversion class which
  1039. provides helper methods to convert images from and to PNG, JPEG or EXR formats.
  1040. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.ImageConversionModule.html'
  1041. status: 4
  1042. errors: []
  1043. versions:
  1044. all:
  1045. - 1.0.0
  1046. compatible:
  1047. - 1.0.0
  1048. verified: 1.0.0
  1049. dependencies: []
  1050. resolvedDependencies: []
  1051. keywords: []
  1052. registry:
  1053. id: main
  1054. name:
  1055. url: https://packages.unity.cn
  1056. scopes: []
  1057. isDefault: 1
  1058. capabilities: 7
  1059. hideInEditor: 1
  1060. isAssetStorePackage: 0
  1061. datePublishedTicks: 0
  1062. documentationUrl:
  1063. hasRepository: 0
  1064. repository:
  1065. type:
  1066. url:
  1067. revision:
  1068. path:
  1069. unityLifecycle:
  1070. version: 1.0.0
  1071. nextVersion:
  1072. - packageId: com.unity.modules.imgui@1.0.0
  1073. testable: 0
  1074. isDirectDependency: 1
  1075. version: 1.0.0
  1076. source: 2
  1077. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.imgui@1.0.0
  1078. assetPath: Packages/com.unity.modules.imgui
  1079. name: com.unity.modules.imgui
  1080. displayName: IMGUI
  1081. author:
  1082. name:
  1083. email:
  1084. url:
  1085. category:
  1086. type: module
  1087. description: 'The IMGUI module provides Unity''s immediate mode GUI solution for
  1088. creating in-game and editor user interfaces. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.IMGUIModule.html'
  1089. status: 4
  1090. errors: []
  1091. versions:
  1092. all:
  1093. - 1.0.0
  1094. compatible:
  1095. - 1.0.0
  1096. verified: 1.0.0
  1097. dependencies: []
  1098. resolvedDependencies: []
  1099. keywords: []
  1100. registry:
  1101. id: main
  1102. name:
  1103. url: https://packages.unity.cn
  1104. scopes: []
  1105. isDefault: 1
  1106. capabilities: 7
  1107. hideInEditor: 1
  1108. isAssetStorePackage: 0
  1109. datePublishedTicks: 0
  1110. documentationUrl:
  1111. hasRepository: 0
  1112. repository:
  1113. type:
  1114. url:
  1115. revision:
  1116. path:
  1117. unityLifecycle:
  1118. version: 1.0.0
  1119. nextVersion:
  1120. - packageId: com.unity.modules.jsonserialize@1.0.0
  1121. testable: 0
  1122. isDirectDependency: 1
  1123. version: 1.0.0
  1124. source: 2
  1125. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.jsonserialize@1.0.0
  1126. assetPath: Packages/com.unity.modules.jsonserialize
  1127. name: com.unity.modules.jsonserialize
  1128. displayName: JSONSerialize
  1129. author:
  1130. name:
  1131. email:
  1132. url:
  1133. category:
  1134. type: module
  1135. description: 'The JSONSerialize module provides the JsonUtility class which lets
  1136. you serialize Unity Objects to JSON format. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.JSONSerializeModule.html'
  1137. status: 4
  1138. errors: []
  1139. versions:
  1140. all:
  1141. - 1.0.0
  1142. compatible:
  1143. - 1.0.0
  1144. verified: 1.0.0
  1145. dependencies: []
  1146. resolvedDependencies: []
  1147. keywords: []
  1148. registry:
  1149. id: main
  1150. name:
  1151. url: https://packages.unity.cn
  1152. scopes: []
  1153. isDefault: 1
  1154. capabilities: 7
  1155. hideInEditor: 1
  1156. isAssetStorePackage: 0
  1157. datePublishedTicks: 0
  1158. documentationUrl:
  1159. hasRepository: 0
  1160. repository:
  1161. type:
  1162. url:
  1163. revision:
  1164. path:
  1165. unityLifecycle:
  1166. version: 1.0.0
  1167. nextVersion:
  1168. - packageId: com.unity.modules.particlesystem@1.0.0
  1169. testable: 0
  1170. isDirectDependency: 1
  1171. version: 1.0.0
  1172. source: 2
  1173. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.particlesystem@1.0.0
  1174. assetPath: Packages/com.unity.modules.particlesystem
  1175. name: com.unity.modules.particlesystem
  1176. displayName: Particle System
  1177. author:
  1178. name:
  1179. email:
  1180. url:
  1181. category:
  1182. type: module
  1183. description: 'The ParticleSystem module implements Unity''s Particle System. Scripting
  1184. API: https://docs.unity3d.com/ScriptReference/UnityEngine.ParticleSystemModule.html'
  1185. status: 4
  1186. errors: []
  1187. versions:
  1188. all:
  1189. - 1.0.0
  1190. compatible:
  1191. - 1.0.0
  1192. verified: 1.0.0
  1193. dependencies: []
  1194. resolvedDependencies: []
  1195. keywords: []
  1196. registry:
  1197. id: main
  1198. name:
  1199. url: https://packages.unity.cn
  1200. scopes: []
  1201. isDefault: 1
  1202. capabilities: 7
  1203. hideInEditor: 1
  1204. isAssetStorePackage: 0
  1205. datePublishedTicks: 0
  1206. documentationUrl:
  1207. hasRepository: 0
  1208. repository:
  1209. type:
  1210. url:
  1211. revision:
  1212. path:
  1213. unityLifecycle:
  1214. version: 1.0.0
  1215. nextVersion:
  1216. - packageId: com.unity.modules.physics@1.0.0
  1217. testable: 0
  1218. isDirectDependency: 1
  1219. version: 1.0.0
  1220. source: 2
  1221. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.physics@1.0.0
  1222. assetPath: Packages/com.unity.modules.physics
  1223. name: com.unity.modules.physics
  1224. displayName: Physics
  1225. author:
  1226. name:
  1227. email:
  1228. url:
  1229. category:
  1230. type: module
  1231. description: 'The Physics module implements 3D physics in Unity. Scripting API:
  1232. https://docs.unity3d.com/ScriptReference/UnityEngine.PhysicsModule.html'
  1233. status: 4
  1234. errors: []
  1235. versions:
  1236. all:
  1237. - 1.0.0
  1238. compatible:
  1239. - 1.0.0
  1240. verified: 1.0.0
  1241. dependencies: []
  1242. resolvedDependencies: []
  1243. keywords: []
  1244. registry:
  1245. id: main
  1246. name:
  1247. url: https://packages.unity.cn
  1248. scopes: []
  1249. isDefault: 1
  1250. capabilities: 7
  1251. hideInEditor: 1
  1252. isAssetStorePackage: 0
  1253. datePublishedTicks: 0
  1254. documentationUrl:
  1255. hasRepository: 0
  1256. repository:
  1257. type:
  1258. url:
  1259. revision:
  1260. path:
  1261. unityLifecycle:
  1262. version: 1.0.0
  1263. nextVersion:
  1264. - packageId: com.unity.modules.physics2d@1.0.0
  1265. testable: 0
  1266. isDirectDependency: 1
  1267. version: 1.0.0
  1268. source: 2
  1269. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.physics2d@1.0.0
  1270. assetPath: Packages/com.unity.modules.physics2d
  1271. name: com.unity.modules.physics2d
  1272. displayName: Physics 2D
  1273. author:
  1274. name:
  1275. email:
  1276. url:
  1277. category:
  1278. type: module
  1279. description: 'The Physics2d module implements 2D physics in Unity. Scripting API:
  1280. https://docs.unity3d.com/ScriptReference/UnityEngine.Physics2DModule.html'
  1281. status: 4
  1282. errors: []
  1283. versions:
  1284. all:
  1285. - 1.0.0
  1286. compatible:
  1287. - 1.0.0
  1288. verified: 1.0.0
  1289. dependencies: []
  1290. resolvedDependencies: []
  1291. keywords: []
  1292. registry:
  1293. id: main
  1294. name:
  1295. url: https://packages.unity.cn
  1296. scopes: []
  1297. isDefault: 1
  1298. capabilities: 7
  1299. hideInEditor: 1
  1300. isAssetStorePackage: 0
  1301. datePublishedTicks: 0
  1302. documentationUrl:
  1303. hasRepository: 0
  1304. repository:
  1305. type:
  1306. url:
  1307. revision:
  1308. path:
  1309. unityLifecycle:
  1310. version: 1.0.0
  1311. nextVersion:
  1312. - packageId: com.unity.modules.screencapture@1.0.0
  1313. testable: 0
  1314. isDirectDependency: 1
  1315. version: 1.0.0
  1316. source: 2
  1317. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.screencapture@1.0.0
  1318. assetPath: Packages/com.unity.modules.screencapture
  1319. name: com.unity.modules.screencapture
  1320. displayName: Screen Capture
  1321. author:
  1322. name:
  1323. email:
  1324. url:
  1325. category:
  1326. type: module
  1327. description: 'The ScreenCapture module provides functionality to take screen shots
  1328. using the ScreenCapture class. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.ScreenCaptureModule.html'
  1329. status: 4
  1330. errors: []
  1331. versions:
  1332. all:
  1333. - 1.0.0
  1334. compatible:
  1335. - 1.0.0
  1336. verified: 1.0.0
  1337. dependencies:
  1338. - name: com.unity.modules.imageconversion
  1339. version: 1.0.0
  1340. resolvedDependencies:
  1341. - name: com.unity.modules.imageconversion
  1342. version: 1.0.0
  1343. keywords: []
  1344. registry:
  1345. id: main
  1346. name:
  1347. url: https://packages.unity.cn
  1348. scopes: []
  1349. isDefault: 1
  1350. capabilities: 7
  1351. hideInEditor: 1
  1352. isAssetStorePackage: 0
  1353. datePublishedTicks: 0
  1354. documentationUrl:
  1355. hasRepository: 0
  1356. repository:
  1357. type:
  1358. url:
  1359. revision:
  1360. path:
  1361. unityLifecycle:
  1362. version: 1.0.0
  1363. nextVersion:
  1364. - packageId: com.unity.modules.terrain@1.0.0
  1365. testable: 0
  1366. isDirectDependency: 1
  1367. version: 1.0.0
  1368. source: 2
  1369. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.terrain@1.0.0
  1370. assetPath: Packages/com.unity.modules.terrain
  1371. name: com.unity.modules.terrain
  1372. displayName: Terrain
  1373. author:
  1374. name:
  1375. email:
  1376. url:
  1377. category:
  1378. type: module
  1379. description: 'The Terrain module implements Unity''s Terrain rendering engine available
  1380. through the Terrain component. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.TerrainModule.html'
  1381. status: 4
  1382. errors: []
  1383. versions:
  1384. all:
  1385. - 1.0.0
  1386. compatible:
  1387. - 1.0.0
  1388. verified: 1.0.0
  1389. dependencies: []
  1390. resolvedDependencies: []
  1391. keywords: []
  1392. registry:
  1393. id: main
  1394. name:
  1395. url: https://packages.unity.cn
  1396. scopes: []
  1397. isDefault: 1
  1398. capabilities: 7
  1399. hideInEditor: 1
  1400. isAssetStorePackage: 0
  1401. datePublishedTicks: 0
  1402. documentationUrl:
  1403. hasRepository: 0
  1404. repository:
  1405. type:
  1406. url:
  1407. revision:
  1408. path:
  1409. unityLifecycle:
  1410. version: 1.0.0
  1411. nextVersion:
  1412. - packageId: com.unity.modules.terrainphysics@1.0.0
  1413. testable: 0
  1414. isDirectDependency: 1
  1415. version: 1.0.0
  1416. source: 2
  1417. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.terrainphysics@1.0.0
  1418. assetPath: Packages/com.unity.modules.terrainphysics
  1419. name: com.unity.modules.terrainphysics
  1420. displayName: Terrain Physics
  1421. author:
  1422. name:
  1423. email:
  1424. url:
  1425. category:
  1426. type: module
  1427. description: 'The TerrainPhysics module connects the Terrain and Physics modules
  1428. by implementing the TerrainCollider component. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.TerrainPhysicsModule.html'
  1429. status: 4
  1430. errors: []
  1431. versions:
  1432. all:
  1433. - 1.0.0
  1434. compatible:
  1435. - 1.0.0
  1436. verified: 1.0.0
  1437. dependencies:
  1438. - name: com.unity.modules.physics
  1439. version: 1.0.0
  1440. - name: com.unity.modules.terrain
  1441. version: 1.0.0
  1442. resolvedDependencies:
  1443. - name: com.unity.modules.physics
  1444. version: 1.0.0
  1445. - name: com.unity.modules.terrain
  1446. version: 1.0.0
  1447. keywords: []
  1448. registry:
  1449. id: main
  1450. name:
  1451. url: https://packages.unity.cn
  1452. scopes: []
  1453. isDefault: 1
  1454. capabilities: 7
  1455. hideInEditor: 1
  1456. isAssetStorePackage: 0
  1457. datePublishedTicks: 0
  1458. documentationUrl:
  1459. hasRepository: 0
  1460. repository:
  1461. type:
  1462. url:
  1463. revision:
  1464. path:
  1465. unityLifecycle:
  1466. version: 1.0.0
  1467. nextVersion:
  1468. - packageId: com.unity.modules.tilemap@1.0.0
  1469. testable: 0
  1470. isDirectDependency: 1
  1471. version: 1.0.0
  1472. source: 2
  1473. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.tilemap@1.0.0
  1474. assetPath: Packages/com.unity.modules.tilemap
  1475. name: com.unity.modules.tilemap
  1476. displayName: Tilemap
  1477. author:
  1478. name:
  1479. email:
  1480. url:
  1481. category:
  1482. type: module
  1483. description: 'The Tilemap module implements the Tilemap class. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.TilemapModule.html'
  1484. status: 4
  1485. errors: []
  1486. versions:
  1487. all:
  1488. - 1.0.0
  1489. compatible:
  1490. - 1.0.0
  1491. verified: 1.0.0
  1492. dependencies:
  1493. - name: com.unity.modules.physics2d
  1494. version: 1.0.0
  1495. resolvedDependencies:
  1496. - name: com.unity.modules.physics2d
  1497. version: 1.0.0
  1498. keywords: []
  1499. registry:
  1500. id: main
  1501. name:
  1502. url: https://packages.unity.cn
  1503. scopes: []
  1504. isDefault: 1
  1505. capabilities: 7
  1506. hideInEditor: 1
  1507. isAssetStorePackage: 0
  1508. datePublishedTicks: 0
  1509. documentationUrl:
  1510. hasRepository: 0
  1511. repository:
  1512. type:
  1513. url:
  1514. revision:
  1515. path:
  1516. unityLifecycle:
  1517. version: 1.0.0
  1518. nextVersion:
  1519. - packageId: com.unity.modules.ui@1.0.0
  1520. testable: 0
  1521. isDirectDependency: 1
  1522. version: 1.0.0
  1523. source: 2
  1524. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.ui@1.0.0
  1525. assetPath: Packages/com.unity.modules.ui
  1526. name: com.unity.modules.ui
  1527. displayName: UI
  1528. author:
  1529. name:
  1530. email:
  1531. url:
  1532. category:
  1533. type: module
  1534. description: 'The UI module implements basic components required for Unity''s UI
  1535. system Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UIModule.html'
  1536. status: 4
  1537. errors: []
  1538. versions:
  1539. all:
  1540. - 1.0.0
  1541. compatible:
  1542. - 1.0.0
  1543. verified: 1.0.0
  1544. dependencies: []
  1545. resolvedDependencies: []
  1546. keywords: []
  1547. registry:
  1548. id: main
  1549. name:
  1550. url: https://packages.unity.cn
  1551. scopes: []
  1552. isDefault: 1
  1553. capabilities: 7
  1554. hideInEditor: 1
  1555. isAssetStorePackage: 0
  1556. datePublishedTicks: 0
  1557. documentationUrl:
  1558. hasRepository: 0
  1559. repository:
  1560. type:
  1561. url:
  1562. revision:
  1563. path:
  1564. unityLifecycle:
  1565. version: 1.0.0
  1566. nextVersion:
  1567. - packageId: com.unity.modules.uielements@1.0.0
  1568. testable: 0
  1569. isDirectDependency: 1
  1570. version: 1.0.0
  1571. source: 2
  1572. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.uielements@1.0.0
  1573. assetPath: Packages/com.unity.modules.uielements
  1574. name: com.unity.modules.uielements
  1575. displayName: UIElements
  1576. author:
  1577. name:
  1578. email:
  1579. url:
  1580. category:
  1581. type: module
  1582. description: 'The UIElements module implements the UIElements retained mode UI
  1583. framework. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UIElementsModule.html'
  1584. status: 4
  1585. errors: []
  1586. versions:
  1587. all:
  1588. - 1.0.0
  1589. compatible:
  1590. - 1.0.0
  1591. verified: 1.0.0
  1592. dependencies:
  1593. - name: com.unity.modules.ui
  1594. version: 1.0.0
  1595. - name: com.unity.modules.imgui
  1596. version: 1.0.0
  1597. - name: com.unity.modules.jsonserialize
  1598. version: 1.0.0
  1599. - name: com.unity.modules.uielementsnative
  1600. version: 1.0.0
  1601. resolvedDependencies:
  1602. - name: com.unity.modules.ui
  1603. version: 1.0.0
  1604. - name: com.unity.modules.imgui
  1605. version: 1.0.0
  1606. - name: com.unity.modules.jsonserialize
  1607. version: 1.0.0
  1608. - name: com.unity.modules.uielementsnative
  1609. version: 1.0.0
  1610. keywords: []
  1611. registry:
  1612. id: main
  1613. name:
  1614. url: https://packages.unity.cn
  1615. scopes: []
  1616. isDefault: 1
  1617. capabilities: 7
  1618. hideInEditor: 1
  1619. isAssetStorePackage: 0
  1620. datePublishedTicks: 0
  1621. documentationUrl:
  1622. hasRepository: 0
  1623. repository:
  1624. type:
  1625. url:
  1626. revision:
  1627. path:
  1628. unityLifecycle:
  1629. version: 1.0.0
  1630. nextVersion:
  1631. - packageId: com.unity.modules.umbra@1.0.0
  1632. testable: 0
  1633. isDirectDependency: 1
  1634. version: 1.0.0
  1635. source: 2
  1636. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.umbra@1.0.0
  1637. assetPath: Packages/com.unity.modules.umbra
  1638. name: com.unity.modules.umbra
  1639. displayName: Umbra
  1640. author:
  1641. name:
  1642. email:
  1643. url:
  1644. category:
  1645. type: module
  1646. description: 'The Umbra module implements Unity''s occlusion culling system. Scripting
  1647. API: https://docs.unity3d.com/ScriptReference/UnityEngine.UmbraModule.html'
  1648. status: 4
  1649. errors: []
  1650. versions:
  1651. all:
  1652. - 1.0.0
  1653. compatible:
  1654. - 1.0.0
  1655. verified: 1.0.0
  1656. dependencies: []
  1657. resolvedDependencies: []
  1658. keywords: []
  1659. registry:
  1660. id: main
  1661. name:
  1662. url: https://packages.unity.cn
  1663. scopes: []
  1664. isDefault: 1
  1665. capabilities: 7
  1666. hideInEditor: 1
  1667. isAssetStorePackage: 0
  1668. datePublishedTicks: 0
  1669. documentationUrl:
  1670. hasRepository: 0
  1671. repository:
  1672. type:
  1673. url:
  1674. revision:
  1675. path:
  1676. unityLifecycle:
  1677. version: 1.0.0
  1678. nextVersion:
  1679. - packageId: com.unity.modules.unityanalytics@1.0.0
  1680. testable: 0
  1681. isDirectDependency: 1
  1682. version: 1.0.0
  1683. source: 2
  1684. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.unityanalytics@1.0.0
  1685. assetPath: Packages/com.unity.modules.unityanalytics
  1686. name: com.unity.modules.unityanalytics
  1687. displayName: Unity Analytics
  1688. author:
  1689. name:
  1690. email:
  1691. url:
  1692. category:
  1693. type: module
  1694. description: 'The UnityAnalytics module implements APIs required to use Unity Analytics.
  1695. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UnityAnalyticsModule.html'
  1696. status: 4
  1697. errors: []
  1698. versions:
  1699. all:
  1700. - 1.0.0
  1701. compatible:
  1702. - 1.0.0
  1703. verified: 1.0.0
  1704. dependencies:
  1705. - name: com.unity.modules.unitywebrequest
  1706. version: 1.0.0
  1707. - name: com.unity.modules.jsonserialize
  1708. version: 1.0.0
  1709. resolvedDependencies:
  1710. - name: com.unity.modules.unitywebrequest
  1711. version: 1.0.0
  1712. - name: com.unity.modules.jsonserialize
  1713. version: 1.0.0
  1714. keywords: []
  1715. registry:
  1716. id: main
  1717. name:
  1718. url: https://packages.unity.cn
  1719. scopes: []
  1720. isDefault: 1
  1721. capabilities: 7
  1722. hideInEditor: 1
  1723. isAssetStorePackage: 0
  1724. datePublishedTicks: 0
  1725. documentationUrl:
  1726. hasRepository: 0
  1727. repository:
  1728. type:
  1729. url:
  1730. revision:
  1731. path:
  1732. unityLifecycle:
  1733. version: 1.0.0
  1734. nextVersion:
  1735. - packageId: com.unity.modules.unitywebrequest@1.0.0
  1736. testable: 0
  1737. isDirectDependency: 1
  1738. version: 1.0.0
  1739. source: 2
  1740. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.unitywebrequest@1.0.0
  1741. assetPath: Packages/com.unity.modules.unitywebrequest
  1742. name: com.unity.modules.unitywebrequest
  1743. displayName: Unity Web Request
  1744. author:
  1745. name:
  1746. email:
  1747. url:
  1748. category:
  1749. type: module
  1750. description: 'The UnityWebRequest module lets you communicate with http services.
  1751. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UnityWebRequestModule.html'
  1752. status: 4
  1753. errors: []
  1754. versions:
  1755. all:
  1756. - 1.0.0
  1757. compatible:
  1758. - 1.0.0
  1759. verified: 1.0.0
  1760. dependencies: []
  1761. resolvedDependencies: []
  1762. keywords: []
  1763. registry:
  1764. id: main
  1765. name:
  1766. url: https://packages.unity.cn
  1767. scopes: []
  1768. isDefault: 1
  1769. capabilities: 7
  1770. hideInEditor: 1
  1771. isAssetStorePackage: 0
  1772. datePublishedTicks: 0
  1773. documentationUrl:
  1774. hasRepository: 0
  1775. repository:
  1776. type:
  1777. url:
  1778. revision:
  1779. path:
  1780. unityLifecycle:
  1781. version: 1.0.0
  1782. nextVersion:
  1783. - packageId: com.unity.modules.unitywebrequestassetbundle@1.0.0
  1784. testable: 0
  1785. isDirectDependency: 1
  1786. version: 1.0.0
  1787. source: 2
  1788. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle@1.0.0
  1789. assetPath: Packages/com.unity.modules.unitywebrequestassetbundle
  1790. name: com.unity.modules.unitywebrequestassetbundle
  1791. displayName: Unity Web Request Asset Bundle
  1792. author:
  1793. name:
  1794. email:
  1795. url:
  1796. category:
  1797. type: module
  1798. description: 'The UnityWebRequestAssetBundle module provides the DownloadHandlerAssetBundle
  1799. class to use UnityWebRequest to download Asset Bundles. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UnityWebRequestAssetBundleModule.html'
  1800. status: 4
  1801. errors: []
  1802. versions:
  1803. all:
  1804. - 1.0.0
  1805. compatible:
  1806. - 1.0.0
  1807. verified: 1.0.0
  1808. dependencies:
  1809. - name: com.unity.modules.assetbundle
  1810. version: 1.0.0
  1811. - name: com.unity.modules.unitywebrequest
  1812. version: 1.0.0
  1813. resolvedDependencies:
  1814. - name: com.unity.modules.assetbundle
  1815. version: 1.0.0
  1816. - name: com.unity.modules.unitywebrequest
  1817. version: 1.0.0
  1818. keywords: []
  1819. registry:
  1820. id: main
  1821. name:
  1822. url: https://packages.unity.cn
  1823. scopes: []
  1824. isDefault: 1
  1825. capabilities: 7
  1826. hideInEditor: 1
  1827. isAssetStorePackage: 0
  1828. datePublishedTicks: 0
  1829. documentationUrl:
  1830. hasRepository: 0
  1831. repository:
  1832. type:
  1833. url:
  1834. revision:
  1835. path:
  1836. unityLifecycle:
  1837. version: 1.0.0
  1838. nextVersion:
  1839. - packageId: com.unity.modules.unitywebrequestaudio@1.0.0
  1840. testable: 0
  1841. isDirectDependency: 1
  1842. version: 1.0.0
  1843. source: 2
  1844. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.unitywebrequestaudio@1.0.0
  1845. assetPath: Packages/com.unity.modules.unitywebrequestaudio
  1846. name: com.unity.modules.unitywebrequestaudio
  1847. displayName: Unity Web Request Audio
  1848. author:
  1849. name:
  1850. email:
  1851. url:
  1852. category:
  1853. type: module
  1854. description: 'The UnityWebRequestAudio module provides the DownloadHandlerAudioClip
  1855. class to use UnityWebRequest to download AudioClips. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UnityWebRequestAudioModule.html'
  1856. status: 4
  1857. errors: []
  1858. versions:
  1859. all:
  1860. - 1.0.0
  1861. compatible:
  1862. - 1.0.0
  1863. verified: 1.0.0
  1864. dependencies:
  1865. - name: com.unity.modules.unitywebrequest
  1866. version: 1.0.0
  1867. - name: com.unity.modules.audio
  1868. version: 1.0.0
  1869. resolvedDependencies:
  1870. - name: com.unity.modules.unitywebrequest
  1871. version: 1.0.0
  1872. - name: com.unity.modules.audio
  1873. version: 1.0.0
  1874. keywords: []
  1875. registry:
  1876. id: main
  1877. name:
  1878. url: https://packages.unity.cn
  1879. scopes: []
  1880. isDefault: 1
  1881. capabilities: 7
  1882. hideInEditor: 1
  1883. isAssetStorePackage: 0
  1884. datePublishedTicks: 0
  1885. documentationUrl:
  1886. hasRepository: 0
  1887. repository:
  1888. type:
  1889. url:
  1890. revision:
  1891. path:
  1892. unityLifecycle:
  1893. version: 1.0.0
  1894. nextVersion:
  1895. - packageId: com.unity.modules.unitywebrequesttexture@1.0.0
  1896. testable: 0
  1897. isDirectDependency: 1
  1898. version: 1.0.0
  1899. source: 2
  1900. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.unitywebrequesttexture@1.0.0
  1901. assetPath: Packages/com.unity.modules.unitywebrequesttexture
  1902. name: com.unity.modules.unitywebrequesttexture
  1903. displayName: Unity Web Request Texture
  1904. author:
  1905. name:
  1906. email:
  1907. url:
  1908. category:
  1909. type: module
  1910. description: 'The UnityWebRequestTexture module provides the DownloadHandlerTexture
  1911. class to use UnityWebRequest to download Textures. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UnityWebRequestTextureModule.html'
  1912. status: 4
  1913. errors: []
  1914. versions:
  1915. all:
  1916. - 1.0.0
  1917. compatible:
  1918. - 1.0.0
  1919. verified: 1.0.0
  1920. dependencies:
  1921. - name: com.unity.modules.unitywebrequest
  1922. version: 1.0.0
  1923. - name: com.unity.modules.imageconversion
  1924. version: 1.0.0
  1925. resolvedDependencies:
  1926. - name: com.unity.modules.unitywebrequest
  1927. version: 1.0.0
  1928. - name: com.unity.modules.imageconversion
  1929. version: 1.0.0
  1930. keywords: []
  1931. registry:
  1932. id: main
  1933. name:
  1934. url: https://packages.unity.cn
  1935. scopes: []
  1936. isDefault: 1
  1937. capabilities: 7
  1938. hideInEditor: 1
  1939. isAssetStorePackage: 0
  1940. datePublishedTicks: 0
  1941. documentationUrl:
  1942. hasRepository: 0
  1943. repository:
  1944. type:
  1945. url:
  1946. revision:
  1947. path:
  1948. unityLifecycle:
  1949. version: 1.0.0
  1950. nextVersion:
  1951. - packageId: com.unity.modules.unitywebrequestwww@1.0.0
  1952. testable: 0
  1953. isDirectDependency: 1
  1954. version: 1.0.0
  1955. source: 2
  1956. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.unitywebrequestwww@1.0.0
  1957. assetPath: Packages/com.unity.modules.unitywebrequestwww
  1958. name: com.unity.modules.unitywebrequestwww
  1959. displayName: Unity Web Request WWW
  1960. author:
  1961. name:
  1962. email:
  1963. url:
  1964. category:
  1965. type: module
  1966. description: 'The UnityWebRequestWWW module implements the legacy WWW lets you
  1967. communicate with http services. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UnityWebRequestWWWModule.html'
  1968. status: 4
  1969. errors: []
  1970. versions:
  1971. all:
  1972. - 1.0.0
  1973. compatible:
  1974. - 1.0.0
  1975. verified: 1.0.0
  1976. dependencies:
  1977. - name: com.unity.modules.unitywebrequest
  1978. version: 1.0.0
  1979. - name: com.unity.modules.unitywebrequestassetbundle
  1980. version: 1.0.0
  1981. - name: com.unity.modules.unitywebrequestaudio
  1982. version: 1.0.0
  1983. - name: com.unity.modules.audio
  1984. version: 1.0.0
  1985. - name: com.unity.modules.assetbundle
  1986. version: 1.0.0
  1987. - name: com.unity.modules.imageconversion
  1988. version: 1.0.0
  1989. resolvedDependencies:
  1990. - name: com.unity.modules.unitywebrequest
  1991. version: 1.0.0
  1992. - name: com.unity.modules.unitywebrequestassetbundle
  1993. version: 1.0.0
  1994. - name: com.unity.modules.assetbundle
  1995. version: 1.0.0
  1996. - name: com.unity.modules.unitywebrequestaudio
  1997. version: 1.0.0
  1998. - name: com.unity.modules.audio
  1999. version: 1.0.0
  2000. - name: com.unity.modules.imageconversion
  2001. version: 1.0.0
  2002. keywords: []
  2003. registry:
  2004. id: main
  2005. name:
  2006. url: https://packages.unity.cn
  2007. scopes: []
  2008. isDefault: 1
  2009. capabilities: 7
  2010. hideInEditor: 1
  2011. isAssetStorePackage: 0
  2012. datePublishedTicks: 0
  2013. documentationUrl:
  2014. hasRepository: 0
  2015. repository:
  2016. type:
  2017. url:
  2018. revision:
  2019. path:
  2020. unityLifecycle:
  2021. version: 1.0.0
  2022. nextVersion:
  2023. - packageId: com.unity.modules.vehicles@1.0.0
  2024. testable: 0
  2025. isDirectDependency: 1
  2026. version: 1.0.0
  2027. source: 2
  2028. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.vehicles@1.0.0
  2029. assetPath: Packages/com.unity.modules.vehicles
  2030. name: com.unity.modules.vehicles
  2031. displayName: Vehicles
  2032. author:
  2033. name:
  2034. email:
  2035. url:
  2036. category:
  2037. type: module
  2038. description: 'The Vehicles module implements vehicle physics simulation through
  2039. the WheelCollider component. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.VehiclesModule.html'
  2040. status: 4
  2041. errors: []
  2042. versions:
  2043. all:
  2044. - 1.0.0
  2045. compatible:
  2046. - 1.0.0
  2047. verified: 1.0.0
  2048. dependencies:
  2049. - name: com.unity.modules.physics
  2050. version: 1.0.0
  2051. resolvedDependencies:
  2052. - name: com.unity.modules.physics
  2053. version: 1.0.0
  2054. keywords: []
  2055. registry:
  2056. id: main
  2057. name:
  2058. url: https://packages.unity.cn
  2059. scopes: []
  2060. isDefault: 1
  2061. capabilities: 7
  2062. hideInEditor: 1
  2063. isAssetStorePackage: 0
  2064. datePublishedTicks: 0
  2065. documentationUrl:
  2066. hasRepository: 0
  2067. repository:
  2068. type:
  2069. url:
  2070. revision:
  2071. path:
  2072. unityLifecycle:
  2073. version: 1.0.0
  2074. nextVersion:
  2075. - packageId: com.unity.modules.video@1.0.0
  2076. testable: 0
  2077. isDirectDependency: 1
  2078. version: 1.0.0
  2079. source: 2
  2080. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.video@1.0.0
  2081. assetPath: Packages/com.unity.modules.video
  2082. name: com.unity.modules.video
  2083. displayName: Video
  2084. author:
  2085. name:
  2086. email:
  2087. url:
  2088. category:
  2089. type: module
  2090. description: 'The Video module lets you play back video files in your content.
  2091. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.VideoModule.html'
  2092. status: 4
  2093. errors: []
  2094. versions:
  2095. all:
  2096. - 1.0.0
  2097. compatible:
  2098. - 1.0.0
  2099. verified: 1.0.0
  2100. dependencies:
  2101. - name: com.unity.modules.audio
  2102. version: 1.0.0
  2103. - name: com.unity.modules.ui
  2104. version: 1.0.0
  2105. - name: com.unity.modules.unitywebrequest
  2106. version: 1.0.0
  2107. resolvedDependencies:
  2108. - name: com.unity.modules.audio
  2109. version: 1.0.0
  2110. - name: com.unity.modules.ui
  2111. version: 1.0.0
  2112. - name: com.unity.modules.unitywebrequest
  2113. version: 1.0.0
  2114. keywords: []
  2115. registry:
  2116. id: main
  2117. name:
  2118. url: https://packages.unity.cn
  2119. scopes: []
  2120. isDefault: 1
  2121. capabilities: 7
  2122. hideInEditor: 1
  2123. isAssetStorePackage: 0
  2124. datePublishedTicks: 0
  2125. documentationUrl:
  2126. hasRepository: 0
  2127. repository:
  2128. type:
  2129. url:
  2130. revision:
  2131. path:
  2132. unityLifecycle:
  2133. version: 1.0.0
  2134. nextVersion:
  2135. - packageId: com.unity.modules.vr@1.0.0
  2136. testable: 0
  2137. isDirectDependency: 1
  2138. version: 1.0.0
  2139. source: 2
  2140. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.vr@1.0.0
  2141. assetPath: Packages/com.unity.modules.vr
  2142. name: com.unity.modules.vr
  2143. displayName: VR
  2144. author:
  2145. name:
  2146. email:
  2147. url:
  2148. category:
  2149. type: module
  2150. description: 'The VR module implements support for virtual reality devices in Unity.
  2151. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.VRModule.html'
  2152. status: 4
  2153. errors: []
  2154. versions:
  2155. all:
  2156. - 1.0.0
  2157. compatible:
  2158. - 1.0.0
  2159. verified: 1.0.0
  2160. dependencies:
  2161. - name: com.unity.modules.jsonserialize
  2162. version: 1.0.0
  2163. - name: com.unity.modules.physics
  2164. version: 1.0.0
  2165. - name: com.unity.modules.xr
  2166. version: 1.0.0
  2167. resolvedDependencies:
  2168. - name: com.unity.modules.jsonserialize
  2169. version: 1.0.0
  2170. - name: com.unity.modules.physics
  2171. version: 1.0.0
  2172. - name: com.unity.modules.xr
  2173. version: 1.0.0
  2174. - name: com.unity.modules.subsystems
  2175. version: 1.0.0
  2176. keywords: []
  2177. registry:
  2178. id: main
  2179. name:
  2180. url: https://packages.unity.cn
  2181. scopes: []
  2182. isDefault: 1
  2183. capabilities: 7
  2184. hideInEditor: 1
  2185. isAssetStorePackage: 0
  2186. datePublishedTicks: 0
  2187. documentationUrl:
  2188. hasRepository: 0
  2189. repository:
  2190. type:
  2191. url:
  2192. revision:
  2193. path:
  2194. unityLifecycle:
  2195. version: 1.0.0
  2196. nextVersion:
  2197. - packageId: com.unity.modules.wind@1.0.0
  2198. testable: 0
  2199. isDirectDependency: 1
  2200. version: 1.0.0
  2201. source: 2
  2202. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.wind@1.0.0
  2203. assetPath: Packages/com.unity.modules.wind
  2204. name: com.unity.modules.wind
  2205. displayName: Wind
  2206. author:
  2207. name:
  2208. email:
  2209. url:
  2210. category:
  2211. type: module
  2212. description: 'The Wind module implements the WindZone component which can affect
  2213. terrain rendering and particle simulations. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.WindModule.html'
  2214. status: 4
  2215. errors: []
  2216. versions:
  2217. all:
  2218. - 1.0.0
  2219. compatible:
  2220. - 1.0.0
  2221. verified: 1.0.0
  2222. dependencies: []
  2223. resolvedDependencies: []
  2224. keywords: []
  2225. registry:
  2226. id: main
  2227. name:
  2228. url: https://packages.unity.cn
  2229. scopes: []
  2230. isDefault: 1
  2231. capabilities: 7
  2232. hideInEditor: 1
  2233. isAssetStorePackage: 0
  2234. datePublishedTicks: 0
  2235. documentationUrl:
  2236. hasRepository: 0
  2237. repository:
  2238. type:
  2239. url:
  2240. revision:
  2241. path:
  2242. unityLifecycle:
  2243. version: 1.0.0
  2244. nextVersion:
  2245. - packageId: com.unity.modules.xr@1.0.0
  2246. testable: 0
  2247. isDirectDependency: 1
  2248. version: 1.0.0
  2249. source: 2
  2250. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.xr@1.0.0
  2251. assetPath: Packages/com.unity.modules.xr
  2252. name: com.unity.modules.xr
  2253. displayName: XR
  2254. author:
  2255. name:
  2256. email:
  2257. url:
  2258. category:
  2259. type: module
  2260. description: 'The XR module contains the VR and AR related platform support functionality.
  2261. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.XRModule.html'
  2262. status: 4
  2263. errors: []
  2264. versions:
  2265. all:
  2266. - 1.0.0
  2267. compatible:
  2268. - 1.0.0
  2269. verified: 1.0.0
  2270. dependencies:
  2271. - name: com.unity.modules.physics
  2272. version: 1.0.0
  2273. - name: com.unity.modules.jsonserialize
  2274. version: 1.0.0
  2275. - name: com.unity.modules.subsystems
  2276. version: 1.0.0
  2277. resolvedDependencies:
  2278. - name: com.unity.modules.physics
  2279. version: 1.0.0
  2280. - name: com.unity.modules.jsonserialize
  2281. version: 1.0.0
  2282. - name: com.unity.modules.subsystems
  2283. version: 1.0.0
  2284. keywords: []
  2285. registry:
  2286. id: main
  2287. name:
  2288. url: https://packages.unity.cn
  2289. scopes: []
  2290. isDefault: 1
  2291. capabilities: 7
  2292. hideInEditor: 1
  2293. isAssetStorePackage: 0
  2294. datePublishedTicks: 0
  2295. documentationUrl:
  2296. hasRepository: 0
  2297. repository:
  2298. type:
  2299. url:
  2300. revision:
  2301. path:
  2302. unityLifecycle:
  2303. version: 1.0.0
  2304. nextVersion:
  2305. - packageId: com.unity.modules.subsystems@1.0.0
  2306. testable: 0
  2307. isDirectDependency: 0
  2308. version: 1.0.0
  2309. source: 2
  2310. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.subsystems@1.0.0
  2311. assetPath: Packages/com.unity.modules.subsystems
  2312. name: com.unity.modules.subsystems
  2313. displayName: Subsystems
  2314. author:
  2315. name:
  2316. email:
  2317. url:
  2318. category:
  2319. type: module
  2320. description: 'The Subsystem module contains the definitions and runtime support
  2321. for general subsystems in Unity. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.SubsystemsModule.html'
  2322. status: 4
  2323. errors: []
  2324. versions:
  2325. all:
  2326. - 1.0.0
  2327. compatible:
  2328. - 1.0.0
  2329. verified: 1.0.0
  2330. dependencies:
  2331. - name: com.unity.modules.jsonserialize
  2332. version: 1.0.0
  2333. resolvedDependencies:
  2334. - name: com.unity.modules.jsonserialize
  2335. version: 1.0.0
  2336. keywords: []
  2337. registry:
  2338. id: main
  2339. name:
  2340. url: https://packages.unity.cn
  2341. scopes: []
  2342. isDefault: 1
  2343. capabilities: 7
  2344. hideInEditor: 1
  2345. isAssetStorePackage: 0
  2346. datePublishedTicks: 0
  2347. documentationUrl:
  2348. hasRepository: 0
  2349. repository:
  2350. type:
  2351. url:
  2352. revision:
  2353. path:
  2354. unityLifecycle:
  2355. version:
  2356. nextVersion:
  2357. - packageId: com.unity.modules.uielementsnative@1.0.0
  2358. testable: 0
  2359. isDirectDependency: 0
  2360. version: 1.0.0
  2361. source: 2
  2362. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.modules.uielementsnative@1.0.0
  2363. assetPath: Packages/com.unity.modules.uielementsnative
  2364. name: com.unity.modules.uielementsnative
  2365. displayName: UIElements Native
  2366. author:
  2367. name:
  2368. email:
  2369. url:
  2370. category:
  2371. type: module
  2372. description:
  2373. status: 4
  2374. errors: []
  2375. versions:
  2376. all:
  2377. - 1.0.0
  2378. compatible:
  2379. - 1.0.0
  2380. verified: 1.0.0
  2381. dependencies:
  2382. - name: com.unity.modules.ui
  2383. version: 1.0.0
  2384. - name: com.unity.modules.imgui
  2385. version: 1.0.0
  2386. - name: com.unity.modules.jsonserialize
  2387. version: 1.0.0
  2388. resolvedDependencies:
  2389. - name: com.unity.modules.ui
  2390. version: 1.0.0
  2391. - name: com.unity.modules.imgui
  2392. version: 1.0.0
  2393. - name: com.unity.modules.jsonserialize
  2394. version: 1.0.0
  2395. keywords: []
  2396. registry:
  2397. id: main
  2398. name:
  2399. url: https://packages.unity.cn
  2400. scopes: []
  2401. isDefault: 1
  2402. capabilities: 7
  2403. hideInEditor: 1
  2404. isAssetStorePackage: 0
  2405. datePublishedTicks: 0
  2406. documentationUrl:
  2407. hasRepository: 0
  2408. repository:
  2409. type:
  2410. url:
  2411. revision:
  2412. path:
  2413. unityLifecycle:
  2414. version:
  2415. nextVersion:
  2416. - packageId: com.unity.ext.nunit@1.0.6
  2417. testable: 0
  2418. isDirectDependency: 0
  2419. version: 1.0.6
  2420. source: 1
  2421. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.ext.nunit@1.0.6
  2422. assetPath: Packages/com.unity.ext.nunit
  2423. name: com.unity.ext.nunit
  2424. displayName: Custom NUnit
  2425. author:
  2426. name:
  2427. email:
  2428. url:
  2429. category: Libraries
  2430. type:
  2431. description: Custom version of the nunit package build to work with Unity. Used
  2432. by the Unity Test Framework.
  2433. status: 4
  2434. errors: []
  2435. versions:
  2436. all:
  2437. - 1.0.6
  2438. compatible:
  2439. - 1.0.6
  2440. verified: 1.0.6
  2441. dependencies: []
  2442. resolvedDependencies: []
  2443. keywords:
  2444. - nunit
  2445. - unittest
  2446. - test
  2447. registry:
  2448. id: main
  2449. name:
  2450. url: https://packages.unity.cn
  2451. scopes: []
  2452. isDefault: 1
  2453. capabilities: 7
  2454. hideInEditor: 1
  2455. isAssetStorePackage: 0
  2456. datePublishedTicks: 0
  2457. documentationUrl:
  2458. hasRepository: 1
  2459. repository:
  2460. type: git
  2461. url: https://github.cds.internal.unity3d.com/unity/com.unity.ext.nunit.git
  2462. revision: 29ea4d6504a5f58fb3a6934db839aa80ae6d9d88
  2463. path:
  2464. unityLifecycle:
  2465. version: 1.0.6
  2466. nextVersion:
  2467. - packageId: com.unity.editorcoroutines@1.0.0
  2468. testable: 0
  2469. isDirectDependency: 0
  2470. version: 1.0.0
  2471. source: 1
  2472. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.editorcoroutines@1.0.0
  2473. assetPath: Packages/com.unity.editorcoroutines
  2474. name: com.unity.editorcoroutines
  2475. displayName: Editor Coroutines
  2476. author:
  2477. name:
  2478. email:
  2479. url:
  2480. category:
  2481. type:
  2482. description: 'The editor coroutines package allows developers to start constructs
  2483. similar to Unity''s monobehaviour based coroutines within the editor using abitrary
  2484. objects. '
  2485. status: 4
  2486. errors: []
  2487. versions:
  2488. all:
  2489. - 1.0.0
  2490. compatible:
  2491. - 1.0.0
  2492. verified: 1.0.0
  2493. dependencies: []
  2494. resolvedDependencies: []
  2495. keywords:
  2496. - coroutine
  2497. - coroutines
  2498. - editor
  2499. registry:
  2500. id: main
  2501. name:
  2502. url: https://packages.unity.cn
  2503. scopes: []
  2504. isDefault: 1
  2505. capabilities: 7
  2506. hideInEditor: 1
  2507. isAssetStorePackage: 0
  2508. datePublishedTicks: 0
  2509. documentationUrl:
  2510. hasRepository: 1
  2511. repository:
  2512. type: git
  2513. url: https://github.cds.internal.unity3d.com/unity/com.unity.editorcoroutines.git
  2514. revision: f67fc9992bbc7a553b17375de53a8b2db136528e
  2515. path:
  2516. unityLifecycle:
  2517. version: 1.0.0
  2518. nextVersion:
  2519. - packageId: com.unity.performance.profile-analyzer@1.1.1
  2520. testable: 0
  2521. isDirectDependency: 0
  2522. version: 1.1.1
  2523. source: 1
  2524. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.performance.profile-analyzer@1.1.1
  2525. assetPath: Packages/com.unity.performance.profile-analyzer
  2526. name: com.unity.performance.profile-analyzer
  2527. displayName: Profile Analyzer
  2528. author:
  2529. name:
  2530. email:
  2531. url:
  2532. category:
  2533. type:
  2534. description: "The Profile Analyzer tool supports the standard Unity Profiler. You
  2535. can use it to analyze multiple frames and multiple data sets of the CPU data
  2536. in the Profiler.\n\nMain features: \n\u25AA Multi-frame analysis of a single
  2537. set of Profiler CPU data \n\u25AA Comparison of two multi-frame profile scans
  2538. \n\n"
  2539. status: 4
  2540. errors: []
  2541. versions:
  2542. all:
  2543. - 1.1.1
  2544. compatible:
  2545. - 1.1.1
  2546. verified: 1.1.1
  2547. dependencies: []
  2548. resolvedDependencies: []
  2549. keywords: []
  2550. registry:
  2551. id: main
  2552. name:
  2553. url: https://packages.unity.cn
  2554. scopes: []
  2555. isDefault: 1
  2556. capabilities: 7
  2557. hideInEditor: 1
  2558. isAssetStorePackage: 0
  2559. datePublishedTicks: 0
  2560. documentationUrl:
  2561. hasRepository: 1
  2562. repository:
  2563. type: git
  2564. url: https://github.cds.internal.unity3d.com/unity/com.unity.performance.profile-analyzer.git
  2565. revision: 6dcda6aee96901e98a4f01b85589054b9274ba74
  2566. path:
  2567. unityLifecycle:
  2568. version: 1.1.1
  2569. nextVersion:
  2570. - packageId: com.unity.testtools.codecoverage@1.0.1
  2571. testable: 0
  2572. isDirectDependency: 0
  2573. version: 1.0.1
  2574. source: 1
  2575. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.testtools.codecoverage@1.0.1
  2576. assetPath: Packages/com.unity.testtools.codecoverage
  2577. name: com.unity.testtools.codecoverage
  2578. displayName: Code Coverage
  2579. author:
  2580. name:
  2581. email:
  2582. url:
  2583. category:
  2584. type:
  2585. description: Use this package to export code coverage data and reports from your
  2586. automated tests. Additionally, the Code Coverage package offers a Coverage Recording
  2587. feature which allows capturing coverage data on demand, for manual testing or
  2588. when there are no automated tests in the project.
  2589. status: 4
  2590. errors: []
  2591. versions:
  2592. all:
  2593. - 1.0.1
  2594. compatible:
  2595. - 1.0.1
  2596. verified: 1.0.1
  2597. dependencies:
  2598. - name: com.unity.test-framework
  2599. version: 1.0.16
  2600. - name: com.unity.settings-manager
  2601. version: 1.0.1
  2602. resolvedDependencies:
  2603. - name: com.unity.test-framework
  2604. version: 1.1.31
  2605. - name: com.unity.ext.nunit
  2606. version: 1.0.6
  2607. - name: com.unity.modules.imgui
  2608. version: 1.0.0
  2609. - name: com.unity.modules.jsonserialize
  2610. version: 1.0.0
  2611. - name: com.unity.settings-manager
  2612. version: 1.0.3
  2613. keywords:
  2614. - test
  2615. - coverage
  2616. - testing
  2617. - opencover
  2618. registry:
  2619. id: main
  2620. name:
  2621. url: https://packages.unity.cn
  2622. scopes: []
  2623. isDefault: 1
  2624. capabilities: 7
  2625. hideInEditor: 1
  2626. isAssetStorePackage: 0
  2627. datePublishedTicks: 0
  2628. documentationUrl:
  2629. hasRepository: 1
  2630. repository:
  2631. type: git
  2632. url: https://github.cds.internal.unity3d.com/unity/com.unity.testtools.codecoverage.git
  2633. revision: 2777556fc6ade4006a02ea7febbae1dd3257eb7d
  2634. path:
  2635. unityLifecycle:
  2636. version: 1.0.1
  2637. nextVersion:
  2638. - packageId: com.unity.services.core@1.4.2
  2639. testable: 0
  2640. isDirectDependency: 0
  2641. version: 1.4.2
  2642. source: 1
  2643. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.services.core@1.4.2
  2644. assetPath: Packages/com.unity.services.core
  2645. name: com.unity.services.core
  2646. displayName: Services Core
  2647. author:
  2648. name:
  2649. email:
  2650. url:
  2651. category:
  2652. type:
  2653. description: 'This package defines common components used by multiple Game Service
  2654. packages.
  2655. These are standardized and aim to unify the overall experience
  2656. of working with Game Services SDK.'
  2657. status: 4
  2658. errors: []
  2659. versions:
  2660. all:
  2661. - 1.4.2
  2662. compatible:
  2663. - 1.4.2
  2664. verified: 1.4.2
  2665. dependencies:
  2666. - name: com.unity.modules.unitywebrequest
  2667. version: 1.0.0
  2668. - name: com.unity.nuget.newtonsoft-json
  2669. version: 3.0.2
  2670. - name: com.unity.modules.androidjni
  2671. version: 1.0.0
  2672. resolvedDependencies:
  2673. - name: com.unity.modules.unitywebrequest
  2674. version: 1.0.0
  2675. - name: com.unity.nuget.newtonsoft-json
  2676. version: 3.0.2
  2677. - name: com.unity.modules.androidjni
  2678. version: 1.0.0
  2679. keywords: []
  2680. registry:
  2681. id: main
  2682. name:
  2683. url: https://packages.unity.cn
  2684. scopes: []
  2685. isDefault: 1
  2686. capabilities: 7
  2687. hideInEditor: 1
  2688. isAssetStorePackage: 0
  2689. datePublishedTicks: 0
  2690. documentationUrl:
  2691. hasRepository: 1
  2692. repository:
  2693. type: git
  2694. url: https://github.cds.internal.unity3d.com/unity/operate-services-sdk.git
  2695. revision: 3964d1641ebec474aa425853985bccbdb89c2a49
  2696. path:
  2697. unityLifecycle:
  2698. version: 1.4.2
  2699. nextVersion:
  2700. - packageId: com.unity.settings-manager@1.0.3
  2701. testable: 0
  2702. isDirectDependency: 0
  2703. version: 1.0.3
  2704. source: 1
  2705. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.settings-manager@1.0.3
  2706. assetPath: Packages/com.unity.settings-manager
  2707. name: com.unity.settings-manager
  2708. displayName: Settings Manager
  2709. author:
  2710. name:
  2711. email:
  2712. url:
  2713. category:
  2714. type:
  2715. description: A framework for making any serializable field a setting, complete
  2716. with a pre-built settings interface.
  2717. status: 4
  2718. errors: []
  2719. versions:
  2720. all:
  2721. - 1.0.3
  2722. compatible:
  2723. - 1.0.3
  2724. verified: 1.0.3
  2725. dependencies: []
  2726. resolvedDependencies: []
  2727. keywords: []
  2728. registry:
  2729. id: main
  2730. name:
  2731. url: https://packages.unity.cn
  2732. scopes: []
  2733. isDefault: 1
  2734. capabilities: 7
  2735. hideInEditor: 1
  2736. isAssetStorePackage: 0
  2737. datePublishedTicks: 0
  2738. documentationUrl:
  2739. hasRepository: 1
  2740. repository:
  2741. type: git
  2742. url: https://github.com/Unity-Technologies/com.unity.settings-manager.git
  2743. revision: 473664ccba1496294b741cf169740a5d54b3d0b6
  2744. path:
  2745. unityLifecycle:
  2746. version: 1.0.3
  2747. nextVersion:
  2748. - packageId: com.unity.nuget.newtonsoft-json@3.0.2
  2749. testable: 0
  2750. isDirectDependency: 0
  2751. version: 3.0.2
  2752. source: 1
  2753. resolvedPath: D:\U3D\My project\Library\PackageCache\com.unity.nuget.newtonsoft-json@3.0.2
  2754. assetPath: Packages/com.unity.nuget.newtonsoft-json
  2755. name: com.unity.nuget.newtonsoft-json
  2756. displayName: Newtonsoft Json
  2757. author:
  2758. name:
  2759. email:
  2760. url:
  2761. category:
  2762. type: library
  2763. description: 'Newtonsoft Json for use in Unity projects and Unity packages. Currently
  2764. synced to version 13.0.1.
  2765. This package is used for advanced json serialization
  2766. and deserialization. Most Unity users will be better suited using the existing
  2767. json tools built into Unity.
  2768. To avoid assembly clashes, please use this
  2769. package if you intend to use Newtonsoft Json.'
  2770. status: 4
  2771. errors: []
  2772. versions:
  2773. all:
  2774. - 3.0.2
  2775. compatible:
  2776. - 3.0.2
  2777. verified: 3.0.2
  2778. dependencies: []
  2779. resolvedDependencies: []
  2780. keywords: []
  2781. registry:
  2782. id: main
  2783. name:
  2784. url: https://packages.unity.cn
  2785. scopes: []
  2786. isDefault: 1
  2787. capabilities: 7
  2788. hideInEditor: 1
  2789. isAssetStorePackage: 0
  2790. datePublishedTicks: 0
  2791. documentationUrl:
  2792. hasRepository: 1
  2793. repository:
  2794. type: git
  2795. url: https://github.cds.internal.unity3d.com/unity/com.unity.nuget.newtonsoft-json.git
  2796. revision: 8f66870a71ad3f2cdd46330b5c482dfd138ffc64
  2797. path:
  2798. unityLifecycle:
  2799. version: 3.0.2
  2800. nextVersion: