Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755
  1. m_ProjectFiles:
  2. m_ManifestFileStatus:
  3. m_FilePath: D:/gcmfarmer-android/Packages/manifest.json
  4. m_PathExists: 1
  5. m_ContentTrackingEnabled: 1
  6. m_ModificationDate:
  7. serializedVersion: 2
  8. ticks: 638483961860000000
  9. m_Hash: 1289257170
  10. m_LockFileStatus:
  11. m_FilePath: D:/gcmfarmer-android/Packages/packages-lock.json
  12. m_PathExists: 1
  13. m_ContentTrackingEnabled: 1
  14. m_ModificationDate:
  15. serializedVersion: 2
  16. ticks: 638483961860000000
  17. m_Hash: 1182365549
  18. m_EmbeddedPackageManifests:
  19. m_ManifestsStatus: {}
  20. m_LocalPackages:
  21. m_LocalFileStatus: []
  22. m_ProjectPath: D:/gcmfarmer-android/Packages
  23. m_EditorVersion: 2021.3.18f1 (3129e69bc0c7)
  24. m_ResolvedPackages:
  25. - packageId: com.monitor1394.xcharts@https://github.com/XCharts-Team/XCharts.git#3.0
  26. testable: 0
  27. isDirectDependency: 1
  28. version: 3.6.0
  29. source: 5
  30. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.monitor1394.xcharts@bc31f86fcf
  31. assetPath: Packages/com.monitor1394.xcharts
  32. name: com.monitor1394.xcharts
  33. displayName: XCharts
  34. author:
  35. name: monitor1394
  36. email:
  37. url:
  38. category: chart
  39. type:
  40. description: A charting and data visualization library for Unity.
  41. status: 0
  42. errors: []
  43. versions:
  44. all: []
  45. compatible: []
  46. verified:
  47. dependencies: []
  48. resolvedDependencies: []
  49. keywords:
  50. - chart
  51. - charts
  52. - graph
  53. - unity-chart
  54. - data-visualization
  55. registry:
  56. id: main
  57. name:
  58. url: https://packages.unity.com
  59. scopes: []
  60. isDefault: 1
  61. capabilities: 7
  62. configSource: 0
  63. hideInEditor: 1
  64. isAssetStorePackage: 0
  65. datePublishedTicks: 0
  66. documentationUrl:
  67. hasRepository: 1
  68. repository:
  69. type: git
  70. url: git+https://github.com/XCharts-Team/XCharts.git
  71. revision:
  72. path:
  73. unityLifecycle:
  74. version:
  75. nextVersion:
  76. - packageId: com.unity.adaptiveperformance@4.0.1
  77. testable: 0
  78. isDirectDependency: 1
  79. version: 4.0.1
  80. source: 1
  81. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.adaptiveperformance@4.0.1
  82. assetPath: Packages/com.unity.adaptiveperformance
  83. name: com.unity.adaptiveperformance
  84. displayName: Adaptive Performance
  85. author:
  86. name:
  87. email:
  88. url:
  89. category:
  90. type: asset
  91. description: 'The Adaptive Performance package provides an API to get feedback
  92. about the thermal and power state of mobile devices, enabling applications to
  93. make performance-relevant adaptions at runtime.
  94. For instruction on how
  95. to use samples, please read the documentation.
  96. By installing this package,
  97. you agree to the terms and conditions of the Unity End User License Agreement
  98. found under "View licenses" above.'
  99. status: 0
  100. errors: []
  101. versions:
  102. all:
  103. - 0.2.0-preview.1
  104. - 1.0.0
  105. - 1.0.1
  106. - 1.1.0-preview.2
  107. - 1.1.0-preview.3
  108. - 1.1.0-preview.4
  109. - 1.1.0-preview.5
  110. - 1.1.0-preview.7
  111. - 1.1.0
  112. - 1.1.6
  113. - 1.1.9
  114. - 1.1.10
  115. - 1.2.0
  116. - 1.2.2
  117. - 1.2.3
  118. - 2.0.0-preview.1
  119. - 2.0.0-preview.2
  120. - 2.0.0-preview.4
  121. - 2.0.0-preview.7
  122. - 2.0.0-preview.8
  123. - 2.0.0-preview.9
  124. - 2.0.0-preview.10
  125. - 2.0.0-preview.11
  126. - 2.0.0
  127. - 2.0.1
  128. - 2.0.2
  129. - 2.1.0
  130. - 2.1.1
  131. - 2.2.1
  132. - 2.2.3
  133. - 2.2.4
  134. - 3.0.0-pre.2
  135. - 3.0.0
  136. - 3.0.2
  137. - 3.0.3
  138. - 4.0.0-pre.1
  139. - 4.0.0
  140. - 4.0.1
  141. - 5.0.0-pre.1
  142. - 5.0.0-pre.2
  143. - 5.0.0-pre.3
  144. - 5.0.0-pre.4
  145. - 5.0.0
  146. - 5.0.1
  147. - 5.0.2
  148. - 5.1.0
  149. compatible:
  150. - 4.0.1
  151. - 5.0.0-pre.1
  152. - 5.0.0-pre.2
  153. - 5.0.0-pre.3
  154. - 5.0.0-pre.4
  155. - 5.0.0
  156. - 5.0.1
  157. - 5.0.2
  158. - 5.1.0
  159. verified: 4.0.1
  160. dependencies:
  161. - name: com.unity.subsystemregistration
  162. version: 1.1.0
  163. - name: com.unity.profiling.core
  164. version: 1.0.2
  165. resolvedDependencies:
  166. - name: com.unity.subsystemregistration
  167. version: 1.1.0
  168. - name: com.unity.modules.subsystems
  169. version: 1.0.0
  170. - name: com.unity.modules.jsonserialize
  171. version: 1.0.0
  172. - name: com.unity.profiling.core
  173. version: 1.0.2
  174. keywords:
  175. - mobile
  176. - adaptive
  177. - performance
  178. - utility
  179. - utilities
  180. - core
  181. - samsung
  182. - ap
  183. - provider
  184. - subsystem
  185. - indexer
  186. - scaler
  187. - vrr
  188. - boost
  189. - profiles
  190. - cluster
  191. - clusterinfo
  192. registry:
  193. id: main
  194. name:
  195. url: https://packages.unity.com
  196. scopes: []
  197. isDefault: 1
  198. capabilities: 7
  199. configSource: 0
  200. hideInEditor: 0
  201. isAssetStorePackage: 0
  202. datePublishedTicks: 637940147290000000
  203. documentationUrl:
  204. hasRepository: 1
  205. repository:
  206. type: git
  207. url: https://github.cds.internal.unity3d.com/unity/com.unity.adaptiveperformance.git
  208. revision: 08f36a7c7e7e80b8ec602e108f0e40d1661540b5
  209. path:
  210. unityLifecycle:
  211. version: 4.0.1
  212. nextVersion:
  213. - packageId: com.unity.adaptiveperformance.samsung.android@4.0.2
  214. testable: 0
  215. isDirectDependency: 1
  216. version: 4.0.2
  217. source: 1
  218. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.adaptiveperformance.samsung.android@4.0.2
  219. assetPath: Packages/com.unity.adaptiveperformance.samsung.android
  220. name: com.unity.adaptiveperformance.samsung.android
  221. displayName: Adaptive Performance Samsung Android
  222. author:
  223. name:
  224. email:
  225. url:
  226. category:
  227. type: asset
  228. description: "The Adaptive Performance Samsung (Android) provider is a subsystem
  229. for Adaptive Performance to extend Adaptive Performance to Samsung Android devices.
  230. It transmits device-specific information to the Adaptive Performance system and
  231. enables you to receive data about the thermal state of a Samsung Android device.
  232. \n\nBy installing this package, you agree to the terms and conditions of the
  233. Samsung GameSDK End User License Agreement found under \"View licenses\" above."
  234. status: 0
  235. errors: []
  236. versions:
  237. all:
  238. - 0.2.0-preview.1
  239. - 1.0.0
  240. - 1.0.1
  241. - 1.0.2-preview.1
  242. - 1.1.0-preview.2
  243. - 1.1.0
  244. - 1.1.1
  245. - 1.1.2
  246. - 1.1.3
  247. - 1.1.4
  248. - 1.1.6
  249. - 1.1.9
  250. - 1.1.10
  251. - 1.2.1
  252. - 1.2.2
  253. - 1.2.3
  254. - 2.0.0-preview.4
  255. - 2.0.0-preview.7
  256. - 2.0.0-preview.8
  257. - 2.0.0-preview.9
  258. - 2.0.0-preview.10
  259. - 2.0.0-preview.11
  260. - 2.0.0
  261. - 2.0.1
  262. - 2.0.2
  263. - 2.1.0
  264. - 2.1.1
  265. - 2.2.1
  266. - 2.2.2
  267. - 2.2.4
  268. - 2.2.5
  269. - 3.0.0-pre.2
  270. - 3.0.0
  271. - 3.0.1
  272. - 3.0.3
  273. - 3.0.4
  274. - 4.0.0-pre.1
  275. - 4.0.0
  276. - 4.0.1
  277. - 4.0.2
  278. - 5.0.0-pre.1
  279. - 5.0.0-pre.2
  280. - 5.0.0
  281. compatible:
  282. - 4.0.2
  283. - 5.0.0-pre.1
  284. - 5.0.0-pre.2
  285. - 5.0.0
  286. verified: 4.0.2
  287. dependencies:
  288. - name: com.unity.adaptiveperformance
  289. version: 4.0.1
  290. resolvedDependencies:
  291. - name: com.unity.adaptiveperformance
  292. version: 4.0.1
  293. - name: com.unity.subsystemregistration
  294. version: 1.1.0
  295. - name: com.unity.modules.subsystems
  296. version: 1.0.0
  297. - name: com.unity.modules.jsonserialize
  298. version: 1.0.0
  299. - name: com.unity.profiling.core
  300. version: 1.0.2
  301. keywords:
  302. - mobile
  303. - adaptive
  304. - performance
  305. - utility
  306. - utilities
  307. - core
  308. - samsung
  309. - ap
  310. - provider
  311. - subsystem
  312. - gamesdk
  313. - VRR
  314. - indexer
  315. - scaler
  316. - boost
  317. - profiles
  318. - cluster
  319. - clusterinfo
  320. registry:
  321. id: main
  322. name:
  323. url: https://packages.unity.com
  324. scopes: []
  325. isDefault: 1
  326. capabilities: 7
  327. configSource: 0
  328. hideInEditor: 0
  329. isAssetStorePackage: 0
  330. datePublishedTicks: 638056149620000000
  331. documentationUrl:
  332. hasRepository: 1
  333. repository:
  334. type: git
  335. url: https://github.cds.internal.unity3d.com/unity/com.unity.adaptiveperformance.samsung.android.git
  336. revision: 7bbfbd0761a4523a6d571b29d2fe37d4d255c5db
  337. path:
  338. unityLifecycle:
  339. version: 4.0.2
  340. nextVersion:
  341. - packageId: com.unity.collab-proxy@2.0.0
  342. testable: 0
  343. isDirectDependency: 1
  344. version: 2.0.0
  345. source: 1
  346. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.collab-proxy@2.0.0
  347. assetPath: Packages/com.unity.collab-proxy
  348. name: com.unity.collab-proxy
  349. displayName: Version Control
  350. author:
  351. name:
  352. email:
  353. url:
  354. category: Editor
  355. type: asset
  356. description: The Version Control package gives you the ability to use either Collaborate
  357. or Plastic SCM for Unity (beta) in the Unity editor. To use Plastic SCM for Unity
  358. (beta), a Plastic SCM subscription is required. Learn more about how you can
  359. get started for free by visiting plasticscm.com.
  360. status: 0
  361. errors: []
  362. versions:
  363. all:
  364. - 1.2.3-preview
  365. - 1.2.4-preview
  366. - 1.2.6
  367. - 1.2.7
  368. - 1.2.9
  369. - 1.2.11
  370. - 1.2.15
  371. - 1.2.16
  372. - 1.2.17-preview.3
  373. - 1.3.2
  374. - 1.3.3
  375. - 1.3.4
  376. - 1.3.5
  377. - 1.3.6
  378. - 1.3.7
  379. - 1.3.8
  380. - 1.3.9
  381. - 1.4.9
  382. - 1.5.7
  383. - 1.6.0
  384. - 1.7.1
  385. - 1.8.0
  386. - 1.9.0
  387. - 1.10.2
  388. - 1.11.2
  389. - 1.12.5
  390. - 1.13.5
  391. - 1.14.1
  392. - 1.14.4
  393. - 1.14.7
  394. - 1.14.9
  395. - 1.14.12
  396. - 1.14.13
  397. - 1.14.15
  398. - 1.14.16
  399. - 1.14.17
  400. - 1.14.18
  401. - 1.15.1
  402. - 1.15.4
  403. - 1.15.7
  404. - 1.15.9
  405. - 1.15.12
  406. - 1.15.13
  407. - 1.15.15
  408. - 1.15.16
  409. - 1.15.17
  410. - 1.15.18
  411. - 1.17.0
  412. - 1.17.1
  413. - 1.17.2
  414. - 1.17.6
  415. - 1.17.7
  416. - 2.0.0-preview.6
  417. - 2.0.0-preview.8
  418. - 2.0.0-preview.15
  419. - 2.0.0-preview.17
  420. - 2.0.0-preview.20
  421. - 2.0.0-preview.21
  422. - 2.0.0-preview.22
  423. - 2.0.0
  424. - 2.0.1
  425. - 2.0.3
  426. - 2.0.4
  427. - 2.0.5
  428. - 2.0.7
  429. - 2.1.0-preview.3
  430. - 2.1.0-preview.5
  431. - 2.1.0-preview.6
  432. - 2.1.0
  433. - 2.2.0
  434. - 2.3.1
  435. compatible:
  436. - 2.0.0
  437. - 2.0.1
  438. - 2.0.3
  439. - 2.0.4
  440. - 2.0.5
  441. - 2.0.7
  442. - 2.1.0-preview.3
  443. - 2.1.0-preview.5
  444. - 2.1.0-preview.6
  445. - 2.1.0
  446. - 2.2.0
  447. - 2.3.1
  448. verified: 2.0.7
  449. dependencies: []
  450. resolvedDependencies: []
  451. keywords:
  452. - backup
  453. - cloud
  454. - collab
  455. - collaborate
  456. - collaboration
  457. - control
  458. - plastic
  459. - plasticscm
  460. - source
  461. - team
  462. - teams
  463. - version
  464. - vcs
  465. registry:
  466. id: main
  467. name:
  468. url: https://packages.unity.com
  469. scopes: []
  470. isDefault: 1
  471. capabilities: 7
  472. configSource: 0
  473. hideInEditor: 0
  474. isAssetStorePackage: 0
  475. datePublishedTicks: 638095491550000000
  476. documentationUrl: https://docs.unity3d.com/Packages/com.unity.collab-proxy@2.0/manual/index.html
  477. hasRepository: 1
  478. repository:
  479. type: git
  480. url: https://github.cds.internal.unity3d.com/unity/com.unity.cloud.collaborate.git
  481. revision: a1b1151e0c90bc327ea95678473c1f3a935b2c9e
  482. path:
  483. unityLifecycle:
  484. version: 2.0.0
  485. nextVersion:
  486. - packageId: com.unity.feature.2d@1.0.0
  487. testable: 0
  488. isDirectDependency: 1
  489. version: 1.0.0
  490. source: 2
  491. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.feature.2d@1.0.0
  492. assetPath: Packages/com.unity.feature.2d
  493. name: com.unity.feature.2d
  494. displayName: 2D
  495. author:
  496. name:
  497. email:
  498. url:
  499. category:
  500. type: feature
  501. description: Import images including multi-layered Photoshop files as Sprites and
  502. configure them to create 2D games. Create freeform, tile-based and spline-based
  503. 2D game worlds. Create frame-by-frame and bone-based animated characters. Integrated
  504. with 2D physics to support simulations with colliders and joints. Supports the
  505. needs of a range of 2D art styles, including pixel art.
  506. status: 0
  507. errors: []
  508. versions:
  509. all:
  510. - 1.0.0
  511. compatible:
  512. - 1.0.0
  513. verified: 1.0.0
  514. dependencies:
  515. - name: com.unity.2d.animation
  516. version: default
  517. - name: com.unity.2d.pixel-perfect
  518. version: default
  519. - name: com.unity.2d.psdimporter
  520. version: default
  521. - name: com.unity.2d.sprite
  522. version: default
  523. - name: com.unity.2d.spriteshape
  524. version: default
  525. - name: com.unity.2d.tilemap
  526. version: default
  527. - name: com.unity.2d.tilemap.extras
  528. version: default
  529. resolvedDependencies:
  530. - name: com.unity.2d.animation
  531. version: 7.0.9
  532. - name: com.unity.2d.common
  533. version: 6.0.6
  534. - name: com.unity.2d.sprite
  535. version: 1.0.0
  536. - name: com.unity.mathematics
  537. version: 1.2.6
  538. - name: com.unity.modules.uielements
  539. version: 1.0.0
  540. - name: com.unity.modules.ui
  541. version: 1.0.0
  542. - name: com.unity.modules.imgui
  543. version: 1.0.0
  544. - name: com.unity.modules.jsonserialize
  545. version: 1.0.0
  546. - name: com.unity.modules.uielementsnative
  547. version: 1.0.0
  548. - name: com.unity.burst
  549. version: 1.6.6
  550. - name: com.unity.modules.animation
  551. version: 1.0.0
  552. - name: com.unity.2d.pixel-perfect
  553. version: 5.0.3
  554. - name: com.unity.2d.psdimporter
  555. version: 6.0.7
  556. - name: com.unity.2d.spriteshape
  557. version: 7.0.6
  558. - name: com.unity.2d.path
  559. version: 5.0.2
  560. - name: com.unity.modules.physics2d
  561. version: 1.0.0
  562. - name: com.unity.2d.tilemap
  563. version: 1.0.0
  564. - name: com.unity.2d.tilemap.extras
  565. version: 2.2.4
  566. - name: com.unity.modules.tilemap
  567. version: 1.0.0
  568. - name: com.unity.ugui
  569. version: 1.0.0
  570. keywords: []
  571. registry:
  572. id: main
  573. name:
  574. url: https://packages.unity.com
  575. scopes: []
  576. isDefault: 1
  577. capabilities: 7
  578. configSource: 0
  579. hideInEditor: 0
  580. isAssetStorePackage: 0
  581. datePublishedTicks: 0
  582. documentationUrl:
  583. hasRepository: 0
  584. repository:
  585. type:
  586. url:
  587. revision:
  588. path:
  589. unityLifecycle:
  590. version: 1.0.0
  591. nextVersion:
  592. - packageId: com.unity.ide.rider@3.0.18
  593. testable: 0
  594. isDirectDependency: 1
  595. version: 3.0.18
  596. source: 1
  597. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.ide.rider@3.0.18
  598. assetPath: Packages/com.unity.ide.rider
  599. name: com.unity.ide.rider
  600. displayName: JetBrains Rider Editor
  601. author:
  602. name:
  603. email:
  604. url:
  605. category:
  606. type: asset
  607. description: The JetBrains Rider Editor package provides an integration for using
  608. the JetBrains Rider IDE as a code editor for Unity. It adds support for generating
  609. .csproj files for code completion and auto-discovery of installations.
  610. status: 0
  611. errors: []
  612. versions:
  613. all:
  614. - 1.0.2
  615. - 1.0.6
  616. - 1.0.8
  617. - 1.1.0
  618. - 1.1.1
  619. - 1.1.2-preview
  620. - 1.1.2-preview.2
  621. - 1.1.3-preview.1
  622. - 1.1.4-preview
  623. - 1.1.4
  624. - 1.2.0-preview
  625. - 1.2.1
  626. - 2.0.0-preview
  627. - 2.0.1
  628. - 2.0.2
  629. - 2.0.3
  630. - 2.0.5
  631. - 2.0.7
  632. - 3.0.1
  633. - 3.0.2
  634. - 3.0.3
  635. - 3.0.4
  636. - 3.0.5
  637. - 3.0.6
  638. - 3.0.7
  639. - 3.0.9
  640. - 3.0.10
  641. - 3.0.12
  642. - 3.0.13
  643. - 3.0.14
  644. - 3.0.15
  645. - 3.0.16
  646. - 3.0.17
  647. - 3.0.18
  648. - 3.0.20
  649. - 3.0.21
  650. - 3.0.22
  651. - 3.0.24
  652. - 3.0.25
  653. - 3.0.26
  654. - 3.0.27
  655. - 3.0.28
  656. compatible:
  657. - 3.0.18
  658. - 3.0.20
  659. - 3.0.21
  660. - 3.0.22
  661. - 3.0.24
  662. - 3.0.25
  663. - 3.0.26
  664. - 3.0.27
  665. - 3.0.28
  666. verified: 3.0.28
  667. dependencies:
  668. - name: com.unity.ext.nunit
  669. version: 1.0.6
  670. resolvedDependencies:
  671. - name: com.unity.ext.nunit
  672. version: 1.0.6
  673. keywords: []
  674. registry:
  675. id: main
  676. name:
  677. url: https://packages.unity.com
  678. scopes: []
  679. isDefault: 1
  680. capabilities: 7
  681. configSource: 0
  682. hideInEditor: 0
  683. isAssetStorePackage: 0
  684. datePublishedTicks: 638088746970000000
  685. documentationUrl: https://docs.unity3d.com/Packages/com.unity.ide.rider@3.0/manual/index.html
  686. hasRepository: 1
  687. repository:
  688. type: git
  689. url: https://github.cds.internal.unity3d.com/unity/com.unity.ide.rider.git
  690. revision: b40b39e6834c2915637f431d002d1f3dd8ec9ce5
  691. path:
  692. unityLifecycle:
  693. version: 3.0.18
  694. nextVersion:
  695. - packageId: com.unity.ide.visualstudio@2.0.17
  696. testable: 0
  697. isDirectDependency: 1
  698. version: 2.0.17
  699. source: 1
  700. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.ide.visualstudio@2.0.17
  701. assetPath: Packages/com.unity.ide.visualstudio
  702. name: com.unity.ide.visualstudio
  703. displayName: Visual Studio Editor
  704. author:
  705. name:
  706. email:
  707. url:
  708. category:
  709. type: asset
  710. description: Code editor integration for supporting Visual Studio as code editor
  711. for unity. Adds support for generating csproj files for intellisense purposes,
  712. auto discovery of installations, etc.
  713. status: 0
  714. errors: []
  715. versions:
  716. all:
  717. - 1.0.2
  718. - 1.0.3
  719. - 1.0.4
  720. - 1.0.9
  721. - 1.0.10
  722. - 1.0.11
  723. - 2.0.0
  724. - 2.0.1
  725. - 2.0.2
  726. - 2.0.3
  727. - 2.0.5
  728. - 2.0.7
  729. - 2.0.8
  730. - 2.0.9
  731. - 2.0.11
  732. - 2.0.12
  733. - 2.0.14
  734. - 2.0.15
  735. - 2.0.16
  736. - 2.0.17
  737. - 2.0.18
  738. - 2.0.20
  739. - 2.0.21
  740. - 2.0.22
  741. compatible:
  742. - 2.0.17
  743. - 2.0.18
  744. - 2.0.20
  745. - 2.0.21
  746. - 2.0.22
  747. verified: 2.0.22
  748. dependencies:
  749. - name: com.unity.test-framework
  750. version: 1.1.9
  751. resolvedDependencies:
  752. - name: com.unity.test-framework
  753. version: 1.1.31
  754. - name: com.unity.ext.nunit
  755. version: 1.0.6
  756. - name: com.unity.modules.imgui
  757. version: 1.0.0
  758. - name: com.unity.modules.jsonserialize
  759. version: 1.0.0
  760. keywords: []
  761. registry:
  762. id: main
  763. name:
  764. url: https://packages.unity.com
  765. scopes: []
  766. isDefault: 1
  767. capabilities: 7
  768. configSource: 0
  769. hideInEditor: 0
  770. isAssetStorePackage: 0
  771. datePublishedTicks: 638059987360000000
  772. documentationUrl: https://docs.unity3d.com/Packages/com.unity.ide.visualstudio@2.0/manual/index.html
  773. hasRepository: 1
  774. repository:
  775. type: git
  776. url: https://github.cds.internal.unity3d.com/unity/com.unity.ide.visualstudio.git
  777. revision: 1f126893bfb18ea9661fb15771613e841467073c
  778. path:
  779. unityLifecycle:
  780. version: 2.0.17
  781. nextVersion:
  782. - packageId: com.unity.ide.vscode@1.2.5
  783. testable: 0
  784. isDirectDependency: 1
  785. version: 1.2.5
  786. source: 1
  787. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.ide.vscode@1.2.5
  788. assetPath: Packages/com.unity.ide.vscode
  789. name: com.unity.ide.vscode
  790. displayName: Visual Studio Code Editor
  791. author:
  792. name:
  793. email:
  794. url:
  795. category:
  796. type: asset
  797. description: Code editor integration for supporting Visual Studio Code as code
  798. editor for unity. Adds support for generating csproj files for intellisense purposes,
  799. auto discovery of installations, etc.
  800. status: 0
  801. errors: []
  802. versions:
  803. all:
  804. - 1.0.2
  805. - 1.0.3
  806. - 1.0.7
  807. - 1.1.0
  808. - 1.1.2
  809. - 1.1.3
  810. - 1.1.4
  811. - 1.2.0
  812. - 1.2.1
  813. - 1.2.2
  814. - 1.2.3
  815. - 1.2.4
  816. - 1.2.5
  817. compatible:
  818. - 1.2.5
  819. verified: 1.2.5
  820. dependencies: []
  821. resolvedDependencies: []
  822. keywords: []
  823. registry:
  824. id: main
  825. name:
  826. url: https://packages.unity.com
  827. scopes: []
  828. isDefault: 1
  829. capabilities: 7
  830. configSource: 0
  831. hideInEditor: 0
  832. isAssetStorePackage: 0
  833. datePublishedTicks: 637800255360000000
  834. documentationUrl:
  835. hasRepository: 1
  836. repository:
  837. type: git
  838. url: https://github.com/Unity-Technologies/com.unity.ide.vscode.git
  839. revision: b0740c80bfc2440527c317109f7c3d9100132722
  840. path:
  841. unityLifecycle:
  842. version: 1.2.5
  843. nextVersion:
  844. - packageId: com.unity.test-framework@1.1.31
  845. testable: 0
  846. isDirectDependency: 1
  847. version: 1.1.31
  848. source: 1
  849. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.test-framework@1.1.31
  850. assetPath: Packages/com.unity.test-framework
  851. name: com.unity.test-framework
  852. displayName: Test Framework
  853. author:
  854. name:
  855. email:
  856. url:
  857. category: Unity Test Framework
  858. type: asset
  859. description: Test framework for running Edit mode and Play mode tests in Unity.
  860. status: 0
  861. errors: []
  862. versions:
  863. all:
  864. - 0.0.4-preview
  865. - 0.0.29-preview
  866. - 1.0.0
  867. - 1.0.7
  868. - 1.0.9
  869. - 1.0.11
  870. - 1.0.12
  871. - 1.0.13
  872. - 1.0.14
  873. - 1.0.16
  874. - 1.0.17
  875. - 1.0.18
  876. - 1.1.0
  877. - 1.1.1
  878. - 1.1.2
  879. - 1.1.3
  880. - 1.1.5
  881. - 1.1.8
  882. - 1.1.9
  883. - 1.1.11
  884. - 1.1.13
  885. - 1.1.14
  886. - 1.1.16
  887. - 1.1.18
  888. - 1.1.19
  889. - 1.1.20
  890. - 1.1.22
  891. - 1.1.24
  892. - 1.1.26
  893. - 1.1.27
  894. - 1.1.29
  895. - 1.1.30
  896. - 1.1.31
  897. - 1.1.33
  898. - 1.3.0
  899. - 1.3.1
  900. - 1.3.2
  901. - 1.3.3
  902. - 1.3.4
  903. - 1.3.5
  904. - 1.3.7
  905. - 1.3.8
  906. - 1.3.9
  907. - 1.4.0
  908. - 1.4.1
  909. - 1.4.2
  910. - 1.4.3
  911. - 2.0.1-exp.1
  912. - 2.0.1-exp.2
  913. - 2.0.1-pre.12
  914. - 2.0.1-pre.18
  915. compatible:
  916. - 1.1.31
  917. - 1.1.33
  918. - 1.3.0
  919. - 1.3.1
  920. - 1.3.2
  921. - 1.3.3
  922. - 1.3.4
  923. - 1.3.5
  924. - 1.3.7
  925. - 1.3.8
  926. - 1.3.9
  927. - 1.4.0
  928. - 1.4.1
  929. - 1.4.2
  930. - 1.4.3
  931. - 2.0.1-exp.1
  932. - 2.0.1-exp.2
  933. - 2.0.1-pre.12
  934. - 2.0.1-pre.18
  935. verified: 1.1.33
  936. dependencies:
  937. - name: com.unity.ext.nunit
  938. version: 1.0.6
  939. - name: com.unity.modules.imgui
  940. version: 1.0.0
  941. - name: com.unity.modules.jsonserialize
  942. version: 1.0.0
  943. resolvedDependencies:
  944. - name: com.unity.ext.nunit
  945. version: 1.0.6
  946. - name: com.unity.modules.imgui
  947. version: 1.0.0
  948. - name: com.unity.modules.jsonserialize
  949. version: 1.0.0
  950. keywords:
  951. - Test
  952. - TestFramework
  953. registry:
  954. id: main
  955. name:
  956. url: https://packages.unity.com
  957. scopes: []
  958. isDefault: 1
  959. capabilities: 7
  960. configSource: 0
  961. hideInEditor: 0
  962. isAssetStorePackage: 0
  963. datePublishedTicks: 637804266210000000
  964. documentationUrl:
  965. hasRepository: 1
  966. repository:
  967. type: git
  968. url: https://github.com/Unity-Technologies/com.unity.test-framework.git
  969. revision: 438b0defc147c9be5c969ca79ff03a722b4590ed
  970. path:
  971. unityLifecycle:
  972. version: 1.1.31
  973. nextVersion:
  974. - packageId: com.unity.textmeshpro@3.0.6
  975. testable: 0
  976. isDirectDependency: 1
  977. version: 3.0.6
  978. source: 1
  979. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.textmeshpro@3.0.6
  980. assetPath: Packages/com.unity.textmeshpro
  981. name: com.unity.textmeshpro
  982. displayName: TextMeshPro
  983. author:
  984. name:
  985. email:
  986. url:
  987. category: Text Rendering
  988. type: asset
  989. description: 'TextMeshPro is the ultimate text solution for Unity. It''s the perfect
  990. replacement for Unity''s UI Text and the legacy Text Mesh.
  991. Powerful and
  992. easy to use, TextMeshPro (also known as TMP) uses Advanced Text Rendering techniques
  993. along with a set of custom shaders; delivering substantial visual quality improvements
  994. while giving users incredible flexibility when it comes to text styling and texturing.
  995. TextMeshPro
  996. provides Improved Control over text formatting and layout with features like
  997. character, word, line and paragraph spacing, kerning, justified text, Links,
  998. over 30 Rich Text Tags available, support for Multi Font & Sprites, Custom Styles
  999. and more.
  1000. Great performance. Since the geometry created by TextMeshPro
  1001. uses two triangles per character just like Unity''s text components, this improved
  1002. visual quality and flexibility comes at no additional performance cost.'
  1003. status: 0
  1004. errors: []
  1005. versions:
  1006. all:
  1007. - 0.1.2
  1008. - 1.0.21
  1009. - 1.0.23
  1010. - 1.0.25
  1011. - 1.0.26
  1012. - 1.1.0
  1013. - 1.2.0
  1014. - 1.2.1
  1015. - 1.2.2
  1016. - 1.2.3
  1017. - 1.2.4
  1018. - 1.3.0-preview
  1019. - 1.3.0
  1020. - 1.4.0-preview.1b
  1021. - 1.4.0-preview.2a
  1022. - 1.4.0-preview.3a
  1023. - 1.4.0
  1024. - 1.4.1-preview.1
  1025. - 1.4.1
  1026. - 1.5.0-preview.1
  1027. - 1.5.0-preview.2
  1028. - 1.5.0-preview.3
  1029. - 1.5.0-preview.4
  1030. - 1.5.0-preview.5
  1031. - 1.5.0-preview.6
  1032. - 1.5.0-preview.7
  1033. - 1.5.0-preview.8
  1034. - 1.5.0-preview.10
  1035. - 1.5.0-preview.11
  1036. - 1.5.0-preview.12
  1037. - 1.5.0-preview.13
  1038. - 1.5.0-preview.14
  1039. - 1.5.0
  1040. - 1.5.1
  1041. - 1.5.3
  1042. - 1.5.4
  1043. - 1.5.5
  1044. - 1.5.6
  1045. - 1.6.0-preview.1
  1046. - 2.0.0
  1047. - 2.0.1-preview.1
  1048. - 2.0.1
  1049. - 2.1.0-preview.1
  1050. - 2.1.0-preview.2
  1051. - 2.1.0-preview.3
  1052. - 2.1.0-preview.4
  1053. - 2.1.0-preview.5
  1054. - 2.1.0-preview.7
  1055. - 2.1.0-preview.8
  1056. - 2.1.0-preview.10
  1057. - 2.1.0-preview.11
  1058. - 2.1.0-preview.12
  1059. - 2.1.0-preview.13
  1060. - 2.1.0-preview.14
  1061. - 2.1.0
  1062. - 2.1.1
  1063. - 2.1.3
  1064. - 2.1.4
  1065. - 2.1.5
  1066. - 2.1.6
  1067. - 2.2.0-preview.1
  1068. - 2.2.0-preview.2
  1069. - 2.2.0-preview.3
  1070. - 3.0.0-preview.1
  1071. - 3.0.0-preview.3
  1072. - 3.0.0-preview.4
  1073. - 3.0.0-preview.5
  1074. - 3.0.0-preview.7
  1075. - 3.0.0-preview.8
  1076. - 3.0.0-preview.10
  1077. - 3.0.0-preview.11
  1078. - 3.0.0-preview.12
  1079. - 3.0.0-preview.13
  1080. - 3.0.0-preview.14
  1081. - 3.0.0
  1082. - 3.0.1
  1083. - 3.0.3
  1084. - 3.0.4
  1085. - 3.0.5
  1086. - 3.0.6
  1087. - 3.0.7
  1088. - 3.0.8
  1089. - 3.2.0-pre.1
  1090. - 3.2.0-pre.2
  1091. - 3.2.0-pre.3
  1092. - 3.2.0-pre.4
  1093. - 3.2.0-pre.5
  1094. - 3.2.0-pre.6
  1095. - 3.2.0-pre.7
  1096. - 3.2.0-pre.8
  1097. - 3.2.0-pre.9
  1098. - 4.0.0-pre.1
  1099. - 4.0.0-pre.2
  1100. compatible:
  1101. - 3.0.6
  1102. - 3.0.7
  1103. - 3.0.8
  1104. - 3.2.0-pre.1
  1105. - 3.2.0-pre.2
  1106. - 3.2.0-pre.3
  1107. - 3.2.0-pre.4
  1108. - 3.2.0-pre.5
  1109. - 3.2.0-pre.6
  1110. - 3.2.0-pre.7
  1111. - 3.2.0-pre.8
  1112. - 3.2.0-pre.9
  1113. verified: 3.0.8
  1114. dependencies:
  1115. - name: com.unity.ugui
  1116. version: 1.0.0
  1117. resolvedDependencies:
  1118. - name: com.unity.ugui
  1119. version: 1.0.0
  1120. - name: com.unity.modules.ui
  1121. version: 1.0.0
  1122. - name: com.unity.modules.imgui
  1123. version: 1.0.0
  1124. keywords:
  1125. - TextMeshPro
  1126. - TextMesh Pro
  1127. - TMP
  1128. - Text
  1129. - SDF
  1130. registry:
  1131. id: main
  1132. name:
  1133. url: https://packages.unity.com
  1134. scopes: []
  1135. isDefault: 1
  1136. capabilities: 7
  1137. configSource: 0
  1138. hideInEditor: 0
  1139. isAssetStorePackage: 0
  1140. datePublishedTicks: 637547111200000000
  1141. documentationUrl:
  1142. hasRepository: 1
  1143. repository:
  1144. type: git
  1145. url: https://github.cds.internal.unity3d.com/unity/com.unity.textmeshpro.git
  1146. revision: 01e57e3b7de18af9dfe9baaa0a0ff5cc4765c899
  1147. path:
  1148. unityLifecycle:
  1149. version: 3.0.6
  1150. nextVersion:
  1151. - packageId: com.unity.timeline@1.6.4
  1152. testable: 0
  1153. isDirectDependency: 1
  1154. version: 1.6.4
  1155. source: 1
  1156. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.timeline@1.6.4
  1157. assetPath: Packages/com.unity.timeline
  1158. name: com.unity.timeline
  1159. displayName: Timeline
  1160. author:
  1161. name:
  1162. email:
  1163. url:
  1164. category:
  1165. type: asset
  1166. description: Use Unity Timeline to create cinematic content, game-play sequences,
  1167. audio sequences, and complex particle effects.
  1168. status: 0
  1169. errors: []
  1170. versions:
  1171. all:
  1172. - 1.2.0
  1173. - 1.2.1
  1174. - 1.2.2
  1175. - 1.2.3
  1176. - 1.2.4
  1177. - 1.2.5
  1178. - 1.2.6
  1179. - 1.2.7
  1180. - 1.2.9
  1181. - 1.2.10
  1182. - 1.2.11
  1183. - 1.2.12
  1184. - 1.2.13
  1185. - 1.2.14
  1186. - 1.2.15
  1187. - 1.2.16
  1188. - 1.2.17
  1189. - 1.2.18
  1190. - 1.3.0-preview.2
  1191. - 1.3.0-preview.3
  1192. - 1.3.0-preview.5
  1193. - 1.3.0-preview.6
  1194. - 1.3.0-preview.7
  1195. - 1.3.0
  1196. - 1.3.1
  1197. - 1.3.2
  1198. - 1.3.3
  1199. - 1.3.4
  1200. - 1.3.5
  1201. - 1.3.6
  1202. - 1.3.7
  1203. - 1.4.0-preview.1
  1204. - 1.4.0-preview.2
  1205. - 1.4.0-preview.3
  1206. - 1.4.0-preview.5
  1207. - 1.4.0-preview.6
  1208. - 1.4.0-preview.7
  1209. - 1.4.0
  1210. - 1.4.1
  1211. - 1.4.2
  1212. - 1.4.3
  1213. - 1.4.4
  1214. - 1.4.5
  1215. - 1.4.6
  1216. - 1.4.7
  1217. - 1.4.8
  1218. - 1.5.0-pre.2
  1219. - 1.5.0-preview.1
  1220. - 1.5.0-preview.2
  1221. - 1.5.0-preview.3
  1222. - 1.5.0-preview.4
  1223. - 1.5.0-preview.5
  1224. - 1.5.1-pre.1
  1225. - 1.5.1-pre.2
  1226. - 1.5.1-pre.3
  1227. - 1.5.2
  1228. - 1.5.4
  1229. - 1.5.5
  1230. - 1.5.6
  1231. - 1.5.7
  1232. - 1.6.0-pre.1
  1233. - 1.6.0-pre.3
  1234. - 1.6.0-pre.4
  1235. - 1.6.0-pre.5
  1236. - 1.6.1
  1237. - 1.6.2
  1238. - 1.6.3
  1239. - 1.6.4
  1240. - 1.6.5
  1241. - 1.7.0-pre.1
  1242. - 1.7.0-pre.2
  1243. - 1.7.0
  1244. - 1.7.1
  1245. - 1.7.2
  1246. - 1.7.3
  1247. - 1.7.4
  1248. - 1.7.5
  1249. - 1.7.6
  1250. - 1.8.0
  1251. - 1.8.1
  1252. - 1.8.2
  1253. - 1.8.3
  1254. - 1.8.4
  1255. - 1.8.5
  1256. - 1.8.6
  1257. compatible:
  1258. - 1.6.4
  1259. - 1.6.5
  1260. - 1.7.0-pre.1
  1261. - 1.7.0-pre.2
  1262. - 1.7.0
  1263. - 1.7.1
  1264. - 1.7.2
  1265. - 1.7.3
  1266. - 1.7.4
  1267. - 1.7.5
  1268. - 1.7.6
  1269. - 1.8.0
  1270. - 1.8.1
  1271. - 1.8.2
  1272. - 1.8.3
  1273. - 1.8.4
  1274. - 1.8.5
  1275. - 1.8.6
  1276. verified: 1.6.5
  1277. dependencies:
  1278. - name: com.unity.modules.director
  1279. version: 1.0.0
  1280. - name: com.unity.modules.animation
  1281. version: 1.0.0
  1282. - name: com.unity.modules.audio
  1283. version: 1.0.0
  1284. - name: com.unity.modules.particlesystem
  1285. version: 1.0.0
  1286. resolvedDependencies:
  1287. - name: com.unity.modules.director
  1288. version: 1.0.0
  1289. - name: com.unity.modules.audio
  1290. version: 1.0.0
  1291. - name: com.unity.modules.animation
  1292. version: 1.0.0
  1293. - name: com.unity.modules.particlesystem
  1294. version: 1.0.0
  1295. keywords:
  1296. - unity
  1297. - animation
  1298. - editor
  1299. - timeline
  1300. - tools
  1301. registry:
  1302. id: main
  1303. name:
  1304. url: https://packages.unity.com
  1305. scopes: []
  1306. isDefault: 1
  1307. capabilities: 7
  1308. configSource: 0
  1309. hideInEditor: 0
  1310. isAssetStorePackage: 0
  1311. datePublishedTicks: 637789039180000000
  1312. documentationUrl:
  1313. hasRepository: 1
  1314. repository:
  1315. type: git
  1316. url: https://github.cds.internal.unity3d.com/unity/com.unity.timeline.git
  1317. revision: d7e1eb6805737974459309b7d6e7db58635dd167
  1318. path:
  1319. unityLifecycle:
  1320. version: 1.6.4
  1321. nextVersion:
  1322. - packageId: com.unity.ugui@1.0.0
  1323. testable: 0
  1324. isDirectDependency: 1
  1325. version: 1.0.0
  1326. source: 2
  1327. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.ugui@1.0.0
  1328. assetPath: Packages/com.unity.ugui
  1329. name: com.unity.ugui
  1330. displayName: Unity UI
  1331. author:
  1332. name:
  1333. email:
  1334. url:
  1335. category:
  1336. type:
  1337. description: "Unity UI is a set of tools for developing user interfaces for games
  1338. and applications. It is a GameObject-based UI system that uses Components and
  1339. the Game View to arrange, position, and style user interfaces. \u200B You cannot
  1340. use Unity UI to create or change user interfaces in the Unity Editor."
  1341. status: 0
  1342. errors: []
  1343. versions:
  1344. all:
  1345. - 1.0.0
  1346. - 3.0.0-exp.1
  1347. - 3.0.0-exp.3
  1348. compatible:
  1349. - 1.0.0
  1350. verified: 1.0.0
  1351. dependencies:
  1352. - name: com.unity.modules.ui
  1353. version: 1.0.0
  1354. - name: com.unity.modules.imgui
  1355. version: 1.0.0
  1356. resolvedDependencies:
  1357. - name: com.unity.modules.ui
  1358. version: 1.0.0
  1359. - name: com.unity.modules.imgui
  1360. version: 1.0.0
  1361. keywords:
  1362. - UI
  1363. - ugui
  1364. - Unity UI
  1365. - Canvas
  1366. registry:
  1367. id: main
  1368. name:
  1369. url: https://packages.unity.com
  1370. scopes: []
  1371. isDefault: 1
  1372. capabilities: 7
  1373. configSource: 0
  1374. hideInEditor: 1
  1375. isAssetStorePackage: 0
  1376. datePublishedTicks: 0
  1377. documentationUrl:
  1378. hasRepository: 0
  1379. repository:
  1380. type:
  1381. url:
  1382. revision:
  1383. path:
  1384. unityLifecycle:
  1385. version: 1.0.0
  1386. nextVersion:
  1387. - packageId: com.unity.visualscripting@1.8.0
  1388. testable: 0
  1389. isDirectDependency: 1
  1390. version: 1.8.0
  1391. source: 1
  1392. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.visualscripting@1.8.0
  1393. assetPath: Packages/com.unity.visualscripting
  1394. name: com.unity.visualscripting
  1395. displayName: Visual Scripting
  1396. author:
  1397. name:
  1398. email:
  1399. url:
  1400. category:
  1401. type: tool
  1402. description: 'Visual scripting is a workflow that uses visual, node-based graphs
  1403. to design behaviors rather than write lines of C# script.
  1404. Enabling artists,
  1405. designers and programmers alike, visual scripting can be used to design final
  1406. logic, quickly create prototypes, iterate on gameplay and create custom nodes
  1407. to help streamline collaboration.
  1408. Visual scripting is compatible with third-party
  1409. APIs, including most packages, assets and custom libraries.'
  1410. status: 0
  1411. errors: []
  1412. versions:
  1413. all:
  1414. - 1.5.0
  1415. - 1.5.1-pre.3
  1416. - 1.5.1-pre.5
  1417. - 1.5.1
  1418. - 1.5.2
  1419. - 1.6.0-pre.3
  1420. - 1.6.0
  1421. - 1.6.1
  1422. - 1.7.1
  1423. - 1.7.2
  1424. - 1.7.3
  1425. - 1.7.5
  1426. - 1.7.6
  1427. - 1.7.7
  1428. - 1.7.8
  1429. - 1.8.0-pre.1
  1430. - 1.8.0
  1431. - 1.9.0
  1432. - 1.9.1
  1433. - 1.9.2
  1434. compatible:
  1435. - 1.8.0
  1436. - 1.9.0
  1437. - 1.9.1
  1438. - 1.9.2
  1439. verified: 1.8.0
  1440. dependencies:
  1441. - name: com.unity.ugui
  1442. version: 1.0.0
  1443. - name: com.unity.modules.jsonserialize
  1444. version: 1.0.0
  1445. resolvedDependencies:
  1446. - name: com.unity.ugui
  1447. version: 1.0.0
  1448. - name: com.unity.modules.ui
  1449. version: 1.0.0
  1450. - name: com.unity.modules.imgui
  1451. version: 1.0.0
  1452. - name: com.unity.modules.jsonserialize
  1453. version: 1.0.0
  1454. keywords: []
  1455. registry:
  1456. id: main
  1457. name:
  1458. url: https://packages.unity.com
  1459. scopes: []
  1460. isDefault: 1
  1461. capabilities: 7
  1462. configSource: 0
  1463. hideInEditor: 1
  1464. isAssetStorePackage: 0
  1465. datePublishedTicks: 638060044680000000
  1466. documentationUrl:
  1467. hasRepository: 1
  1468. repository:
  1469. type: git
  1470. url: https://github.cds.internal.unity3d.com/unity/com.unity.visualscripting.git
  1471. revision: 0de66378b19e990494d98f39ecc2b6aa5ac65351
  1472. path:
  1473. unityLifecycle:
  1474. version: 1.8.0
  1475. nextVersion:
  1476. - packageId: com.unity.modules.ai@1.0.0
  1477. testable: 0
  1478. isDirectDependency: 1
  1479. version: 1.0.0
  1480. source: 2
  1481. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.ai@1.0.0
  1482. assetPath: Packages/com.unity.modules.ai
  1483. name: com.unity.modules.ai
  1484. displayName: AI
  1485. author:
  1486. name:
  1487. email:
  1488. url:
  1489. category:
  1490. type: module
  1491. description: 'The AI module implements the path finding features in Unity. Scripting
  1492. API: https://docs.unity3d.com/ScriptReference/UnityEngine.AIModule.html'
  1493. status: 0
  1494. errors: []
  1495. versions:
  1496. all:
  1497. - 1.0.0
  1498. compatible:
  1499. - 1.0.0
  1500. verified: 1.0.0
  1501. dependencies: []
  1502. resolvedDependencies: []
  1503. keywords: []
  1504. registry:
  1505. id: main
  1506. name:
  1507. url: https://packages.unity.com
  1508. scopes: []
  1509. isDefault: 1
  1510. capabilities: 7
  1511. configSource: 0
  1512. hideInEditor: 1
  1513. isAssetStorePackage: 0
  1514. datePublishedTicks: 0
  1515. documentationUrl:
  1516. hasRepository: 0
  1517. repository:
  1518. type:
  1519. url:
  1520. revision:
  1521. path:
  1522. unityLifecycle:
  1523. version: 1.0.0
  1524. nextVersion:
  1525. - packageId: com.unity.modules.androidjni@1.0.0
  1526. testable: 0
  1527. isDirectDependency: 1
  1528. version: 1.0.0
  1529. source: 2
  1530. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.androidjni@1.0.0
  1531. assetPath: Packages/com.unity.modules.androidjni
  1532. name: com.unity.modules.androidjni
  1533. displayName: Android JNI
  1534. author:
  1535. name:
  1536. email:
  1537. url:
  1538. category:
  1539. type: module
  1540. description: 'AndroidJNI module allows you to call Java code. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.AndroidJNIModule.html'
  1541. status: 0
  1542. errors: []
  1543. versions:
  1544. all:
  1545. - 1.0.0
  1546. compatible:
  1547. - 1.0.0
  1548. verified: 1.0.0
  1549. dependencies: []
  1550. resolvedDependencies: []
  1551. keywords: []
  1552. registry:
  1553. id: main
  1554. name:
  1555. url: https://packages.unity.com
  1556. scopes: []
  1557. isDefault: 1
  1558. capabilities: 7
  1559. configSource: 0
  1560. hideInEditor: 1
  1561. isAssetStorePackage: 0
  1562. datePublishedTicks: 0
  1563. documentationUrl:
  1564. hasRepository: 0
  1565. repository:
  1566. type:
  1567. url:
  1568. revision:
  1569. path:
  1570. unityLifecycle:
  1571. version: 1.0.0
  1572. nextVersion:
  1573. - packageId: com.unity.modules.animation@1.0.0
  1574. testable: 0
  1575. isDirectDependency: 1
  1576. version: 1.0.0
  1577. source: 2
  1578. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.animation@1.0.0
  1579. assetPath: Packages/com.unity.modules.animation
  1580. name: com.unity.modules.animation
  1581. displayName: Animation
  1582. author:
  1583. name:
  1584. email:
  1585. url:
  1586. category:
  1587. type: module
  1588. description: 'The Animation module implements Unity''s animation system. Scripting
  1589. API: https://docs.unity3d.com/ScriptReference/UnityEngine.AnimationModule.html'
  1590. status: 0
  1591. errors: []
  1592. versions:
  1593. all:
  1594. - 1.0.0
  1595. compatible:
  1596. - 1.0.0
  1597. verified: 1.0.0
  1598. dependencies: []
  1599. resolvedDependencies: []
  1600. keywords: []
  1601. registry:
  1602. id: main
  1603. name:
  1604. url: https://packages.unity.com
  1605. scopes: []
  1606. isDefault: 1
  1607. capabilities: 7
  1608. configSource: 0
  1609. hideInEditor: 1
  1610. isAssetStorePackage: 0
  1611. datePublishedTicks: 0
  1612. documentationUrl:
  1613. hasRepository: 0
  1614. repository:
  1615. type:
  1616. url:
  1617. revision:
  1618. path:
  1619. unityLifecycle:
  1620. version: 1.0.0
  1621. nextVersion:
  1622. - packageId: com.unity.modules.assetbundle@1.0.0
  1623. testable: 0
  1624. isDirectDependency: 1
  1625. version: 1.0.0
  1626. source: 2
  1627. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.assetbundle@1.0.0
  1628. assetPath: Packages/com.unity.modules.assetbundle
  1629. name: com.unity.modules.assetbundle
  1630. displayName: Asset Bundle
  1631. author:
  1632. name:
  1633. email:
  1634. url:
  1635. category:
  1636. type: module
  1637. description: 'The AssetBundle module implements the AssetBundle class and related
  1638. APIs to load data from AssetBundles. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.AssetBundleModule.html'
  1639. status: 0
  1640. errors: []
  1641. versions:
  1642. all:
  1643. - 1.0.0
  1644. compatible:
  1645. - 1.0.0
  1646. verified: 1.0.0
  1647. dependencies: []
  1648. resolvedDependencies: []
  1649. keywords: []
  1650. registry:
  1651. id: main
  1652. name:
  1653. url: https://packages.unity.com
  1654. scopes: []
  1655. isDefault: 1
  1656. capabilities: 7
  1657. configSource: 0
  1658. hideInEditor: 1
  1659. isAssetStorePackage: 0
  1660. datePublishedTicks: 0
  1661. documentationUrl:
  1662. hasRepository: 0
  1663. repository:
  1664. type:
  1665. url:
  1666. revision:
  1667. path:
  1668. unityLifecycle:
  1669. version: 1.0.0
  1670. nextVersion:
  1671. - packageId: com.unity.modules.audio@1.0.0
  1672. testable: 0
  1673. isDirectDependency: 1
  1674. version: 1.0.0
  1675. source: 2
  1676. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.audio@1.0.0
  1677. assetPath: Packages/com.unity.modules.audio
  1678. name: com.unity.modules.audio
  1679. displayName: Audio
  1680. author:
  1681. name:
  1682. email:
  1683. url:
  1684. category:
  1685. type: module
  1686. description: 'The Audio module implements Unity''s audio system. Scripting API:
  1687. https://docs.unity3d.com/ScriptReference/UnityEngine.AudioModule.html'
  1688. status: 0
  1689. errors: []
  1690. versions:
  1691. all:
  1692. - 1.0.0
  1693. compatible:
  1694. - 1.0.0
  1695. verified: 1.0.0
  1696. dependencies: []
  1697. resolvedDependencies: []
  1698. keywords: []
  1699. registry:
  1700. id: main
  1701. name:
  1702. url: https://packages.unity.com
  1703. scopes: []
  1704. isDefault: 1
  1705. capabilities: 7
  1706. configSource: 0
  1707. hideInEditor: 1
  1708. isAssetStorePackage: 0
  1709. datePublishedTicks: 0
  1710. documentationUrl:
  1711. hasRepository: 0
  1712. repository:
  1713. type:
  1714. url:
  1715. revision:
  1716. path:
  1717. unityLifecycle:
  1718. version: 1.0.0
  1719. nextVersion:
  1720. - packageId: com.unity.modules.cloth@1.0.0
  1721. testable: 0
  1722. isDirectDependency: 1
  1723. version: 1.0.0
  1724. source: 2
  1725. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.cloth@1.0.0
  1726. assetPath: Packages/com.unity.modules.cloth
  1727. name: com.unity.modules.cloth
  1728. displayName: Cloth
  1729. author:
  1730. name:
  1731. email:
  1732. url:
  1733. category:
  1734. type: module
  1735. description: 'The Cloth module implements cloth physics simulation through the
  1736. Cloth component. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.ClothModule.html'
  1737. status: 0
  1738. errors: []
  1739. versions:
  1740. all:
  1741. - 1.0.0
  1742. compatible:
  1743. - 1.0.0
  1744. verified: 1.0.0
  1745. dependencies:
  1746. - name: com.unity.modules.physics
  1747. version: 1.0.0
  1748. resolvedDependencies:
  1749. - name: com.unity.modules.physics
  1750. version: 1.0.0
  1751. keywords: []
  1752. registry:
  1753. id: main
  1754. name:
  1755. url: https://packages.unity.com
  1756. scopes: []
  1757. isDefault: 1
  1758. capabilities: 7
  1759. configSource: 0
  1760. hideInEditor: 1
  1761. isAssetStorePackage: 0
  1762. datePublishedTicks: 0
  1763. documentationUrl:
  1764. hasRepository: 0
  1765. repository:
  1766. type:
  1767. url:
  1768. revision:
  1769. path:
  1770. unityLifecycle:
  1771. version: 1.0.0
  1772. nextVersion:
  1773. - packageId: com.unity.modules.director@1.0.0
  1774. testable: 0
  1775. isDirectDependency: 1
  1776. version: 1.0.0
  1777. source: 2
  1778. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.director@1.0.0
  1779. assetPath: Packages/com.unity.modules.director
  1780. name: com.unity.modules.director
  1781. displayName: Director
  1782. author:
  1783. name:
  1784. email:
  1785. url:
  1786. category:
  1787. type: module
  1788. description: 'The Director module implements the PlayableDirector class. Scripting
  1789. API: https://docs.unity3d.com/ScriptReference/UnityEngine.DirectorModule.html'
  1790. status: 0
  1791. errors: []
  1792. versions:
  1793. all:
  1794. - 1.0.0
  1795. compatible:
  1796. - 1.0.0
  1797. verified: 1.0.0
  1798. dependencies:
  1799. - name: com.unity.modules.audio
  1800. version: 1.0.0
  1801. - name: com.unity.modules.animation
  1802. version: 1.0.0
  1803. resolvedDependencies:
  1804. - name: com.unity.modules.audio
  1805. version: 1.0.0
  1806. - name: com.unity.modules.animation
  1807. version: 1.0.0
  1808. keywords: []
  1809. registry:
  1810. id: main
  1811. name:
  1812. url: https://packages.unity.com
  1813. scopes: []
  1814. isDefault: 1
  1815. capabilities: 7
  1816. configSource: 0
  1817. hideInEditor: 1
  1818. isAssetStorePackage: 0
  1819. datePublishedTicks: 0
  1820. documentationUrl:
  1821. hasRepository: 0
  1822. repository:
  1823. type:
  1824. url:
  1825. revision:
  1826. path:
  1827. unityLifecycle:
  1828. version: 1.0.0
  1829. nextVersion:
  1830. - packageId: com.unity.modules.imageconversion@1.0.0
  1831. testable: 0
  1832. isDirectDependency: 1
  1833. version: 1.0.0
  1834. source: 2
  1835. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.imageconversion@1.0.0
  1836. assetPath: Packages/com.unity.modules.imageconversion
  1837. name: com.unity.modules.imageconversion
  1838. displayName: Image Conversion
  1839. author:
  1840. name:
  1841. email:
  1842. url:
  1843. category:
  1844. type: module
  1845. description: 'The ImageConversion module implements the ImageConversion class which
  1846. provides helper methods to convert images from and to PNG, JPEG or EXR formats.
  1847. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.ImageConversionModule.html'
  1848. status: 0
  1849. errors: []
  1850. versions:
  1851. all:
  1852. - 1.0.0
  1853. compatible:
  1854. - 1.0.0
  1855. verified: 1.0.0
  1856. dependencies: []
  1857. resolvedDependencies: []
  1858. keywords: []
  1859. registry:
  1860. id: main
  1861. name:
  1862. url: https://packages.unity.com
  1863. scopes: []
  1864. isDefault: 1
  1865. capabilities: 7
  1866. configSource: 0
  1867. hideInEditor: 1
  1868. isAssetStorePackage: 0
  1869. datePublishedTicks: 0
  1870. documentationUrl:
  1871. hasRepository: 0
  1872. repository:
  1873. type:
  1874. url:
  1875. revision:
  1876. path:
  1877. unityLifecycle:
  1878. version: 1.0.0
  1879. nextVersion:
  1880. - packageId: com.unity.modules.imgui@1.0.0
  1881. testable: 0
  1882. isDirectDependency: 1
  1883. version: 1.0.0
  1884. source: 2
  1885. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.imgui@1.0.0
  1886. assetPath: Packages/com.unity.modules.imgui
  1887. name: com.unity.modules.imgui
  1888. displayName: IMGUI
  1889. author:
  1890. name:
  1891. email:
  1892. url:
  1893. category:
  1894. type: module
  1895. description: 'The IMGUI module provides Unity''s immediate mode GUI solution for
  1896. creating in-game and editor user interfaces. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.IMGUIModule.html'
  1897. status: 0
  1898. errors: []
  1899. versions:
  1900. all:
  1901. - 1.0.0
  1902. compatible:
  1903. - 1.0.0
  1904. verified: 1.0.0
  1905. dependencies: []
  1906. resolvedDependencies: []
  1907. keywords: []
  1908. registry:
  1909. id: main
  1910. name:
  1911. url: https://packages.unity.com
  1912. scopes: []
  1913. isDefault: 1
  1914. capabilities: 7
  1915. configSource: 0
  1916. hideInEditor: 1
  1917. isAssetStorePackage: 0
  1918. datePublishedTicks: 0
  1919. documentationUrl:
  1920. hasRepository: 0
  1921. repository:
  1922. type:
  1923. url:
  1924. revision:
  1925. path:
  1926. unityLifecycle:
  1927. version: 1.0.0
  1928. nextVersion:
  1929. - packageId: com.unity.modules.jsonserialize@1.0.0
  1930. testable: 0
  1931. isDirectDependency: 1
  1932. version: 1.0.0
  1933. source: 2
  1934. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.jsonserialize@1.0.0
  1935. assetPath: Packages/com.unity.modules.jsonserialize
  1936. name: com.unity.modules.jsonserialize
  1937. displayName: JSONSerialize
  1938. author:
  1939. name:
  1940. email:
  1941. url:
  1942. category:
  1943. type: module
  1944. description: 'The JSONSerialize module provides the JsonUtility class which lets
  1945. you serialize Unity Objects to JSON format. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.JSONSerializeModule.html'
  1946. status: 0
  1947. errors: []
  1948. versions:
  1949. all:
  1950. - 1.0.0
  1951. compatible:
  1952. - 1.0.0
  1953. verified: 1.0.0
  1954. dependencies: []
  1955. resolvedDependencies: []
  1956. keywords: []
  1957. registry:
  1958. id: main
  1959. name:
  1960. url: https://packages.unity.com
  1961. scopes: []
  1962. isDefault: 1
  1963. capabilities: 7
  1964. configSource: 0
  1965. hideInEditor: 1
  1966. isAssetStorePackage: 0
  1967. datePublishedTicks: 0
  1968. documentationUrl:
  1969. hasRepository: 0
  1970. repository:
  1971. type:
  1972. url:
  1973. revision:
  1974. path:
  1975. unityLifecycle:
  1976. version: 1.0.0
  1977. nextVersion:
  1978. - packageId: com.unity.modules.particlesystem@1.0.0
  1979. testable: 0
  1980. isDirectDependency: 1
  1981. version: 1.0.0
  1982. source: 2
  1983. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.particlesystem@1.0.0
  1984. assetPath: Packages/com.unity.modules.particlesystem
  1985. name: com.unity.modules.particlesystem
  1986. displayName: Particle System
  1987. author:
  1988. name:
  1989. email:
  1990. url:
  1991. category:
  1992. type: module
  1993. description: 'The ParticleSystem module implements Unity''s Particle System. Scripting
  1994. API: https://docs.unity3d.com/ScriptReference/UnityEngine.ParticleSystemModule.html'
  1995. status: 0
  1996. errors: []
  1997. versions:
  1998. all:
  1999. - 1.0.0
  2000. compatible:
  2001. - 1.0.0
  2002. verified: 1.0.0
  2003. dependencies: []
  2004. resolvedDependencies: []
  2005. keywords: []
  2006. registry:
  2007. id: main
  2008. name:
  2009. url: https://packages.unity.com
  2010. scopes: []
  2011. isDefault: 1
  2012. capabilities: 7
  2013. configSource: 0
  2014. hideInEditor: 1
  2015. isAssetStorePackage: 0
  2016. datePublishedTicks: 0
  2017. documentationUrl:
  2018. hasRepository: 0
  2019. repository:
  2020. type:
  2021. url:
  2022. revision:
  2023. path:
  2024. unityLifecycle:
  2025. version: 1.0.0
  2026. nextVersion:
  2027. - packageId: com.unity.modules.physics@1.0.0
  2028. testable: 0
  2029. isDirectDependency: 1
  2030. version: 1.0.0
  2031. source: 2
  2032. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.physics@1.0.0
  2033. assetPath: Packages/com.unity.modules.physics
  2034. name: com.unity.modules.physics
  2035. displayName: Physics
  2036. author:
  2037. name:
  2038. email:
  2039. url:
  2040. category:
  2041. type: module
  2042. description: 'The Physics module implements 3D physics in Unity. Scripting API:
  2043. https://docs.unity3d.com/ScriptReference/UnityEngine.PhysicsModule.html'
  2044. status: 0
  2045. errors: []
  2046. versions:
  2047. all:
  2048. - 1.0.0
  2049. compatible:
  2050. - 1.0.0
  2051. verified: 1.0.0
  2052. dependencies: []
  2053. resolvedDependencies: []
  2054. keywords: []
  2055. registry:
  2056. id: main
  2057. name:
  2058. url: https://packages.unity.com
  2059. scopes: []
  2060. isDefault: 1
  2061. capabilities: 7
  2062. configSource: 0
  2063. hideInEditor: 1
  2064. isAssetStorePackage: 0
  2065. datePublishedTicks: 0
  2066. documentationUrl:
  2067. hasRepository: 0
  2068. repository:
  2069. type:
  2070. url:
  2071. revision:
  2072. path:
  2073. unityLifecycle:
  2074. version: 1.0.0
  2075. nextVersion:
  2076. - packageId: com.unity.modules.physics2d@1.0.0
  2077. testable: 0
  2078. isDirectDependency: 1
  2079. version: 1.0.0
  2080. source: 2
  2081. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.physics2d@1.0.0
  2082. assetPath: Packages/com.unity.modules.physics2d
  2083. name: com.unity.modules.physics2d
  2084. displayName: Physics 2D
  2085. author:
  2086. name:
  2087. email:
  2088. url:
  2089. category:
  2090. type: module
  2091. description: 'The Physics2d module implements 2D physics in Unity. Scripting API:
  2092. https://docs.unity3d.com/ScriptReference/UnityEngine.Physics2DModule.html'
  2093. status: 0
  2094. errors: []
  2095. versions:
  2096. all:
  2097. - 1.0.0
  2098. compatible:
  2099. - 1.0.0
  2100. verified: 1.0.0
  2101. dependencies: []
  2102. resolvedDependencies: []
  2103. keywords: []
  2104. registry:
  2105. id: main
  2106. name:
  2107. url: https://packages.unity.com
  2108. scopes: []
  2109. isDefault: 1
  2110. capabilities: 7
  2111. configSource: 0
  2112. hideInEditor: 1
  2113. isAssetStorePackage: 0
  2114. datePublishedTicks: 0
  2115. documentationUrl:
  2116. hasRepository: 0
  2117. repository:
  2118. type:
  2119. url:
  2120. revision:
  2121. path:
  2122. unityLifecycle:
  2123. version: 1.0.0
  2124. nextVersion:
  2125. - packageId: com.unity.modules.screencapture@1.0.0
  2126. testable: 0
  2127. isDirectDependency: 1
  2128. version: 1.0.0
  2129. source: 2
  2130. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.screencapture@1.0.0
  2131. assetPath: Packages/com.unity.modules.screencapture
  2132. name: com.unity.modules.screencapture
  2133. displayName: Screen Capture
  2134. author:
  2135. name:
  2136. email:
  2137. url:
  2138. category:
  2139. type: module
  2140. description: 'The ScreenCapture module provides functionality to take screen shots
  2141. using the ScreenCapture class. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.ScreenCaptureModule.html'
  2142. status: 0
  2143. errors: []
  2144. versions:
  2145. all:
  2146. - 1.0.0
  2147. compatible:
  2148. - 1.0.0
  2149. verified: 1.0.0
  2150. dependencies:
  2151. - name: com.unity.modules.imageconversion
  2152. version: 1.0.0
  2153. resolvedDependencies:
  2154. - name: com.unity.modules.imageconversion
  2155. version: 1.0.0
  2156. keywords: []
  2157. registry:
  2158. id: main
  2159. name:
  2160. url: https://packages.unity.com
  2161. scopes: []
  2162. isDefault: 1
  2163. capabilities: 7
  2164. configSource: 0
  2165. hideInEditor: 1
  2166. isAssetStorePackage: 0
  2167. datePublishedTicks: 0
  2168. documentationUrl:
  2169. hasRepository: 0
  2170. repository:
  2171. type:
  2172. url:
  2173. revision:
  2174. path:
  2175. unityLifecycle:
  2176. version: 1.0.0
  2177. nextVersion:
  2178. - packageId: com.unity.modules.terrain@1.0.0
  2179. testable: 0
  2180. isDirectDependency: 1
  2181. version: 1.0.0
  2182. source: 2
  2183. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.terrain@1.0.0
  2184. assetPath: Packages/com.unity.modules.terrain
  2185. name: com.unity.modules.terrain
  2186. displayName: Terrain
  2187. author:
  2188. name:
  2189. email:
  2190. url:
  2191. category:
  2192. type: module
  2193. description: 'The Terrain module implements Unity''s Terrain rendering engine available
  2194. through the Terrain component. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.TerrainModule.html'
  2195. status: 0
  2196. errors: []
  2197. versions:
  2198. all:
  2199. - 1.0.0
  2200. compatible:
  2201. - 1.0.0
  2202. verified: 1.0.0
  2203. dependencies: []
  2204. resolvedDependencies: []
  2205. keywords: []
  2206. registry:
  2207. id: main
  2208. name:
  2209. url: https://packages.unity.com
  2210. scopes: []
  2211. isDefault: 1
  2212. capabilities: 7
  2213. configSource: 0
  2214. hideInEditor: 1
  2215. isAssetStorePackage: 0
  2216. datePublishedTicks: 0
  2217. documentationUrl:
  2218. hasRepository: 0
  2219. repository:
  2220. type:
  2221. url:
  2222. revision:
  2223. path:
  2224. unityLifecycle:
  2225. version: 1.0.0
  2226. nextVersion:
  2227. - packageId: com.unity.modules.terrainphysics@1.0.0
  2228. testable: 0
  2229. isDirectDependency: 1
  2230. version: 1.0.0
  2231. source: 2
  2232. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.terrainphysics@1.0.0
  2233. assetPath: Packages/com.unity.modules.terrainphysics
  2234. name: com.unity.modules.terrainphysics
  2235. displayName: Terrain Physics
  2236. author:
  2237. name:
  2238. email:
  2239. url:
  2240. category:
  2241. type: module
  2242. description: 'The TerrainPhysics module connects the Terrain and Physics modules
  2243. by implementing the TerrainCollider component. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.TerrainPhysicsModule.html'
  2244. status: 0
  2245. errors: []
  2246. versions:
  2247. all:
  2248. - 1.0.0
  2249. compatible:
  2250. - 1.0.0
  2251. verified: 1.0.0
  2252. dependencies:
  2253. - name: com.unity.modules.physics
  2254. version: 1.0.0
  2255. - name: com.unity.modules.terrain
  2256. version: 1.0.0
  2257. resolvedDependencies:
  2258. - name: com.unity.modules.physics
  2259. version: 1.0.0
  2260. - name: com.unity.modules.terrain
  2261. version: 1.0.0
  2262. keywords: []
  2263. registry:
  2264. id: main
  2265. name:
  2266. url: https://packages.unity.com
  2267. scopes: []
  2268. isDefault: 1
  2269. capabilities: 7
  2270. configSource: 0
  2271. hideInEditor: 1
  2272. isAssetStorePackage: 0
  2273. datePublishedTicks: 0
  2274. documentationUrl:
  2275. hasRepository: 0
  2276. repository:
  2277. type:
  2278. url:
  2279. revision:
  2280. path:
  2281. unityLifecycle:
  2282. version: 1.0.0
  2283. nextVersion:
  2284. - packageId: com.unity.modules.tilemap@1.0.0
  2285. testable: 0
  2286. isDirectDependency: 1
  2287. version: 1.0.0
  2288. source: 2
  2289. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.tilemap@1.0.0
  2290. assetPath: Packages/com.unity.modules.tilemap
  2291. name: com.unity.modules.tilemap
  2292. displayName: Tilemap
  2293. author:
  2294. name:
  2295. email:
  2296. url:
  2297. category:
  2298. type: module
  2299. description: 'The Tilemap module implements the Tilemap class. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.TilemapModule.html'
  2300. status: 0
  2301. errors: []
  2302. versions:
  2303. all:
  2304. - 1.0.0
  2305. compatible:
  2306. - 1.0.0
  2307. verified: 1.0.0
  2308. dependencies:
  2309. - name: com.unity.modules.physics2d
  2310. version: 1.0.0
  2311. resolvedDependencies:
  2312. - name: com.unity.modules.physics2d
  2313. version: 1.0.0
  2314. keywords: []
  2315. registry:
  2316. id: main
  2317. name:
  2318. url: https://packages.unity.com
  2319. scopes: []
  2320. isDefault: 1
  2321. capabilities: 7
  2322. configSource: 0
  2323. hideInEditor: 1
  2324. isAssetStorePackage: 0
  2325. datePublishedTicks: 0
  2326. documentationUrl:
  2327. hasRepository: 0
  2328. repository:
  2329. type:
  2330. url:
  2331. revision:
  2332. path:
  2333. unityLifecycle:
  2334. version: 1.0.0
  2335. nextVersion:
  2336. - packageId: com.unity.modules.ui@1.0.0
  2337. testable: 0
  2338. isDirectDependency: 1
  2339. version: 1.0.0
  2340. source: 2
  2341. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.ui@1.0.0
  2342. assetPath: Packages/com.unity.modules.ui
  2343. name: com.unity.modules.ui
  2344. displayName: UI
  2345. author:
  2346. name:
  2347. email:
  2348. url:
  2349. category:
  2350. type: module
  2351. description: 'The UI module implements basic components required for Unity''s UI
  2352. system Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UIModule.html'
  2353. status: 0
  2354. errors: []
  2355. versions:
  2356. all:
  2357. - 1.0.0
  2358. compatible:
  2359. - 1.0.0
  2360. verified: 1.0.0
  2361. dependencies: []
  2362. resolvedDependencies: []
  2363. keywords: []
  2364. registry:
  2365. id: main
  2366. name:
  2367. url: https://packages.unity.com
  2368. scopes: []
  2369. isDefault: 1
  2370. capabilities: 7
  2371. configSource: 0
  2372. hideInEditor: 1
  2373. isAssetStorePackage: 0
  2374. datePublishedTicks: 0
  2375. documentationUrl:
  2376. hasRepository: 0
  2377. repository:
  2378. type:
  2379. url:
  2380. revision:
  2381. path:
  2382. unityLifecycle:
  2383. version: 1.0.0
  2384. nextVersion:
  2385. - packageId: com.unity.modules.uielements@1.0.0
  2386. testable: 0
  2387. isDirectDependency: 1
  2388. version: 1.0.0
  2389. source: 2
  2390. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.uielements@1.0.0
  2391. assetPath: Packages/com.unity.modules.uielements
  2392. name: com.unity.modules.uielements
  2393. displayName: UIElements
  2394. author:
  2395. name:
  2396. email:
  2397. url:
  2398. category:
  2399. type: module
  2400. description: 'The UIElements module implements the UIElements retained mode UI
  2401. framework. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UIElementsModule.html'
  2402. status: 0
  2403. errors: []
  2404. versions:
  2405. all:
  2406. - 1.0.0
  2407. compatible:
  2408. - 1.0.0
  2409. verified: 1.0.0
  2410. dependencies:
  2411. - name: com.unity.modules.ui
  2412. version: 1.0.0
  2413. - name: com.unity.modules.imgui
  2414. version: 1.0.0
  2415. - name: com.unity.modules.jsonserialize
  2416. version: 1.0.0
  2417. - name: com.unity.modules.uielementsnative
  2418. version: 1.0.0
  2419. resolvedDependencies:
  2420. - name: com.unity.modules.ui
  2421. version: 1.0.0
  2422. - name: com.unity.modules.imgui
  2423. version: 1.0.0
  2424. - name: com.unity.modules.jsonserialize
  2425. version: 1.0.0
  2426. - name: com.unity.modules.uielementsnative
  2427. version: 1.0.0
  2428. keywords: []
  2429. registry:
  2430. id: main
  2431. name:
  2432. url: https://packages.unity.com
  2433. scopes: []
  2434. isDefault: 1
  2435. capabilities: 7
  2436. configSource: 0
  2437. hideInEditor: 1
  2438. isAssetStorePackage: 0
  2439. datePublishedTicks: 0
  2440. documentationUrl:
  2441. hasRepository: 0
  2442. repository:
  2443. type:
  2444. url:
  2445. revision:
  2446. path:
  2447. unityLifecycle:
  2448. version: 1.0.0
  2449. nextVersion:
  2450. - packageId: com.unity.modules.umbra@1.0.0
  2451. testable: 0
  2452. isDirectDependency: 1
  2453. version: 1.0.0
  2454. source: 2
  2455. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.umbra@1.0.0
  2456. assetPath: Packages/com.unity.modules.umbra
  2457. name: com.unity.modules.umbra
  2458. displayName: Umbra
  2459. author:
  2460. name:
  2461. email:
  2462. url:
  2463. category:
  2464. type: module
  2465. description: 'The Umbra module implements Unity''s occlusion culling system. Scripting
  2466. API: https://docs.unity3d.com/ScriptReference/UnityEngine.UmbraModule.html'
  2467. status: 0
  2468. errors: []
  2469. versions:
  2470. all:
  2471. - 1.0.0
  2472. compatible:
  2473. - 1.0.0
  2474. verified: 1.0.0
  2475. dependencies: []
  2476. resolvedDependencies: []
  2477. keywords: []
  2478. registry:
  2479. id: main
  2480. name:
  2481. url: https://packages.unity.com
  2482. scopes: []
  2483. isDefault: 1
  2484. capabilities: 7
  2485. configSource: 0
  2486. hideInEditor: 1
  2487. isAssetStorePackage: 0
  2488. datePublishedTicks: 0
  2489. documentationUrl:
  2490. hasRepository: 0
  2491. repository:
  2492. type:
  2493. url:
  2494. revision:
  2495. path:
  2496. unityLifecycle:
  2497. version: 1.0.0
  2498. nextVersion:
  2499. - packageId: com.unity.modules.unityanalytics@1.0.0
  2500. testable: 0
  2501. isDirectDependency: 1
  2502. version: 1.0.0
  2503. source: 2
  2504. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.unityanalytics@1.0.0
  2505. assetPath: Packages/com.unity.modules.unityanalytics
  2506. name: com.unity.modules.unityanalytics
  2507. displayName: Unity Analytics
  2508. author:
  2509. name:
  2510. email:
  2511. url:
  2512. category:
  2513. type: module
  2514. description: 'The UnityAnalytics module implements APIs required to use Unity Analytics.
  2515. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UnityAnalyticsModule.html'
  2516. status: 0
  2517. errors: []
  2518. versions:
  2519. all:
  2520. - 1.0.0
  2521. compatible:
  2522. - 1.0.0
  2523. verified: 1.0.0
  2524. dependencies:
  2525. - name: com.unity.modules.unitywebrequest
  2526. version: 1.0.0
  2527. - name: com.unity.modules.jsonserialize
  2528. version: 1.0.0
  2529. resolvedDependencies:
  2530. - name: com.unity.modules.unitywebrequest
  2531. version: 1.0.0
  2532. - name: com.unity.modules.jsonserialize
  2533. version: 1.0.0
  2534. keywords: []
  2535. registry:
  2536. id: main
  2537. name:
  2538. url: https://packages.unity.com
  2539. scopes: []
  2540. isDefault: 1
  2541. capabilities: 7
  2542. configSource: 0
  2543. hideInEditor: 1
  2544. isAssetStorePackage: 0
  2545. datePublishedTicks: 0
  2546. documentationUrl:
  2547. hasRepository: 0
  2548. repository:
  2549. type:
  2550. url:
  2551. revision:
  2552. path:
  2553. unityLifecycle:
  2554. version: 1.0.0
  2555. nextVersion:
  2556. - packageId: com.unity.modules.unitywebrequest@1.0.0
  2557. testable: 0
  2558. isDirectDependency: 1
  2559. version: 1.0.0
  2560. source: 2
  2561. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.unitywebrequest@1.0.0
  2562. assetPath: Packages/com.unity.modules.unitywebrequest
  2563. name: com.unity.modules.unitywebrequest
  2564. displayName: Unity Web Request
  2565. author:
  2566. name:
  2567. email:
  2568. url:
  2569. category:
  2570. type: module
  2571. description: 'The UnityWebRequest module lets you communicate with http services.
  2572. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UnityWebRequestModule.html'
  2573. status: 0
  2574. errors: []
  2575. versions:
  2576. all:
  2577. - 1.0.0
  2578. compatible:
  2579. - 1.0.0
  2580. verified: 1.0.0
  2581. dependencies: []
  2582. resolvedDependencies: []
  2583. keywords: []
  2584. registry:
  2585. id: main
  2586. name:
  2587. url: https://packages.unity.com
  2588. scopes: []
  2589. isDefault: 1
  2590. capabilities: 7
  2591. configSource: 0
  2592. hideInEditor: 1
  2593. isAssetStorePackage: 0
  2594. datePublishedTicks: 0
  2595. documentationUrl:
  2596. hasRepository: 0
  2597. repository:
  2598. type:
  2599. url:
  2600. revision:
  2601. path:
  2602. unityLifecycle:
  2603. version: 1.0.0
  2604. nextVersion:
  2605. - packageId: com.unity.modules.unitywebrequestassetbundle@1.0.0
  2606. testable: 0
  2607. isDirectDependency: 1
  2608. version: 1.0.0
  2609. source: 2
  2610. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle@1.0.0
  2611. assetPath: Packages/com.unity.modules.unitywebrequestassetbundle
  2612. name: com.unity.modules.unitywebrequestassetbundle
  2613. displayName: Unity Web Request Asset Bundle
  2614. author:
  2615. name:
  2616. email:
  2617. url:
  2618. category:
  2619. type: module
  2620. description: 'The UnityWebRequestAssetBundle module provides the DownloadHandlerAssetBundle
  2621. class to use UnityWebRequest to download Asset Bundles. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UnityWebRequestAssetBundleModule.html'
  2622. status: 0
  2623. errors: []
  2624. versions:
  2625. all:
  2626. - 1.0.0
  2627. compatible:
  2628. - 1.0.0
  2629. verified: 1.0.0
  2630. dependencies:
  2631. - name: com.unity.modules.assetbundle
  2632. version: 1.0.0
  2633. - name: com.unity.modules.unitywebrequest
  2634. version: 1.0.0
  2635. resolvedDependencies:
  2636. - name: com.unity.modules.assetbundle
  2637. version: 1.0.0
  2638. - name: com.unity.modules.unitywebrequest
  2639. version: 1.0.0
  2640. keywords: []
  2641. registry:
  2642. id: main
  2643. name:
  2644. url: https://packages.unity.com
  2645. scopes: []
  2646. isDefault: 1
  2647. capabilities: 7
  2648. configSource: 0
  2649. hideInEditor: 1
  2650. isAssetStorePackage: 0
  2651. datePublishedTicks: 0
  2652. documentationUrl:
  2653. hasRepository: 0
  2654. repository:
  2655. type:
  2656. url:
  2657. revision:
  2658. path:
  2659. unityLifecycle:
  2660. version: 1.0.0
  2661. nextVersion:
  2662. - packageId: com.unity.modules.unitywebrequestaudio@1.0.0
  2663. testable: 0
  2664. isDirectDependency: 1
  2665. version: 1.0.0
  2666. source: 2
  2667. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.unitywebrequestaudio@1.0.0
  2668. assetPath: Packages/com.unity.modules.unitywebrequestaudio
  2669. name: com.unity.modules.unitywebrequestaudio
  2670. displayName: Unity Web Request Audio
  2671. author:
  2672. name:
  2673. email:
  2674. url:
  2675. category:
  2676. type: module
  2677. description: 'The UnityWebRequestAudio module provides the DownloadHandlerAudioClip
  2678. class to use UnityWebRequest to download AudioClips. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UnityWebRequestAudioModule.html'
  2679. status: 0
  2680. errors: []
  2681. versions:
  2682. all:
  2683. - 1.0.0
  2684. compatible:
  2685. - 1.0.0
  2686. verified: 1.0.0
  2687. dependencies:
  2688. - name: com.unity.modules.unitywebrequest
  2689. version: 1.0.0
  2690. - name: com.unity.modules.audio
  2691. version: 1.0.0
  2692. resolvedDependencies:
  2693. - name: com.unity.modules.unitywebrequest
  2694. version: 1.0.0
  2695. - name: com.unity.modules.audio
  2696. version: 1.0.0
  2697. keywords: []
  2698. registry:
  2699. id: main
  2700. name:
  2701. url: https://packages.unity.com
  2702. scopes: []
  2703. isDefault: 1
  2704. capabilities: 7
  2705. configSource: 0
  2706. hideInEditor: 1
  2707. isAssetStorePackage: 0
  2708. datePublishedTicks: 0
  2709. documentationUrl:
  2710. hasRepository: 0
  2711. repository:
  2712. type:
  2713. url:
  2714. revision:
  2715. path:
  2716. unityLifecycle:
  2717. version: 1.0.0
  2718. nextVersion:
  2719. - packageId: com.unity.modules.unitywebrequesttexture@1.0.0
  2720. testable: 0
  2721. isDirectDependency: 1
  2722. version: 1.0.0
  2723. source: 2
  2724. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.unitywebrequesttexture@1.0.0
  2725. assetPath: Packages/com.unity.modules.unitywebrequesttexture
  2726. name: com.unity.modules.unitywebrequesttexture
  2727. displayName: Unity Web Request Texture
  2728. author:
  2729. name:
  2730. email:
  2731. url:
  2732. category:
  2733. type: module
  2734. description: 'The UnityWebRequestTexture module provides the DownloadHandlerTexture
  2735. class to use UnityWebRequest to download Textures. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UnityWebRequestTextureModule.html'
  2736. status: 0
  2737. errors: []
  2738. versions:
  2739. all:
  2740. - 1.0.0
  2741. compatible:
  2742. - 1.0.0
  2743. verified: 1.0.0
  2744. dependencies:
  2745. - name: com.unity.modules.unitywebrequest
  2746. version: 1.0.0
  2747. - name: com.unity.modules.imageconversion
  2748. version: 1.0.0
  2749. resolvedDependencies:
  2750. - name: com.unity.modules.unitywebrequest
  2751. version: 1.0.0
  2752. - name: com.unity.modules.imageconversion
  2753. version: 1.0.0
  2754. keywords: []
  2755. registry:
  2756. id: main
  2757. name:
  2758. url: https://packages.unity.com
  2759. scopes: []
  2760. isDefault: 1
  2761. capabilities: 7
  2762. configSource: 0
  2763. hideInEditor: 1
  2764. isAssetStorePackage: 0
  2765. datePublishedTicks: 0
  2766. documentationUrl:
  2767. hasRepository: 0
  2768. repository:
  2769. type:
  2770. url:
  2771. revision:
  2772. path:
  2773. unityLifecycle:
  2774. version: 1.0.0
  2775. nextVersion:
  2776. - packageId: com.unity.modules.unitywebrequestwww@1.0.0
  2777. testable: 0
  2778. isDirectDependency: 1
  2779. version: 1.0.0
  2780. source: 2
  2781. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.unitywebrequestwww@1.0.0
  2782. assetPath: Packages/com.unity.modules.unitywebrequestwww
  2783. name: com.unity.modules.unitywebrequestwww
  2784. displayName: Unity Web Request WWW
  2785. author:
  2786. name:
  2787. email:
  2788. url:
  2789. category:
  2790. type: module
  2791. description: 'The UnityWebRequestWWW module implements the legacy WWW lets you
  2792. communicate with http services. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.UnityWebRequestWWWModule.html'
  2793. status: 0
  2794. errors: []
  2795. versions:
  2796. all:
  2797. - 1.0.0
  2798. compatible:
  2799. - 1.0.0
  2800. verified: 1.0.0
  2801. dependencies:
  2802. - name: com.unity.modules.unitywebrequest
  2803. version: 1.0.0
  2804. - name: com.unity.modules.unitywebrequestassetbundle
  2805. version: 1.0.0
  2806. - name: com.unity.modules.unitywebrequestaudio
  2807. version: 1.0.0
  2808. - name: com.unity.modules.audio
  2809. version: 1.0.0
  2810. - name: com.unity.modules.assetbundle
  2811. version: 1.0.0
  2812. - name: com.unity.modules.imageconversion
  2813. version: 1.0.0
  2814. resolvedDependencies:
  2815. - name: com.unity.modules.unitywebrequest
  2816. version: 1.0.0
  2817. - name: com.unity.modules.unitywebrequestassetbundle
  2818. version: 1.0.0
  2819. - name: com.unity.modules.assetbundle
  2820. version: 1.0.0
  2821. - name: com.unity.modules.unitywebrequestaudio
  2822. version: 1.0.0
  2823. - name: com.unity.modules.audio
  2824. version: 1.0.0
  2825. - name: com.unity.modules.imageconversion
  2826. version: 1.0.0
  2827. keywords: []
  2828. registry:
  2829. id: main
  2830. name:
  2831. url: https://packages.unity.com
  2832. scopes: []
  2833. isDefault: 1
  2834. capabilities: 7
  2835. configSource: 0
  2836. hideInEditor: 1
  2837. isAssetStorePackage: 0
  2838. datePublishedTicks: 0
  2839. documentationUrl:
  2840. hasRepository: 0
  2841. repository:
  2842. type:
  2843. url:
  2844. revision:
  2845. path:
  2846. unityLifecycle:
  2847. version: 1.0.0
  2848. nextVersion:
  2849. - packageId: com.unity.modules.vehicles@1.0.0
  2850. testable: 0
  2851. isDirectDependency: 1
  2852. version: 1.0.0
  2853. source: 2
  2854. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.vehicles@1.0.0
  2855. assetPath: Packages/com.unity.modules.vehicles
  2856. name: com.unity.modules.vehicles
  2857. displayName: Vehicles
  2858. author:
  2859. name:
  2860. email:
  2861. url:
  2862. category:
  2863. type: module
  2864. description: 'The Vehicles module implements vehicle physics simulation through
  2865. the WheelCollider component. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.VehiclesModule.html'
  2866. status: 0
  2867. errors: []
  2868. versions:
  2869. all:
  2870. - 1.0.0
  2871. compatible:
  2872. - 1.0.0
  2873. verified: 1.0.0
  2874. dependencies:
  2875. - name: com.unity.modules.physics
  2876. version: 1.0.0
  2877. resolvedDependencies:
  2878. - name: com.unity.modules.physics
  2879. version: 1.0.0
  2880. keywords: []
  2881. registry:
  2882. id: main
  2883. name:
  2884. url: https://packages.unity.com
  2885. scopes: []
  2886. isDefault: 1
  2887. capabilities: 7
  2888. configSource: 0
  2889. hideInEditor: 1
  2890. isAssetStorePackage: 0
  2891. datePublishedTicks: 0
  2892. documentationUrl:
  2893. hasRepository: 0
  2894. repository:
  2895. type:
  2896. url:
  2897. revision:
  2898. path:
  2899. unityLifecycle:
  2900. version: 1.0.0
  2901. nextVersion:
  2902. - packageId: com.unity.modules.video@1.0.0
  2903. testable: 0
  2904. isDirectDependency: 1
  2905. version: 1.0.0
  2906. source: 2
  2907. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.video@1.0.0
  2908. assetPath: Packages/com.unity.modules.video
  2909. name: com.unity.modules.video
  2910. displayName: Video
  2911. author:
  2912. name:
  2913. email:
  2914. url:
  2915. category:
  2916. type: module
  2917. description: 'The Video module lets you play back video files in your content.
  2918. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.VideoModule.html'
  2919. status: 0
  2920. errors: []
  2921. versions:
  2922. all:
  2923. - 1.0.0
  2924. compatible:
  2925. - 1.0.0
  2926. verified: 1.0.0
  2927. dependencies:
  2928. - name: com.unity.modules.audio
  2929. version: 1.0.0
  2930. - name: com.unity.modules.ui
  2931. version: 1.0.0
  2932. - name: com.unity.modules.unitywebrequest
  2933. version: 1.0.0
  2934. resolvedDependencies:
  2935. - name: com.unity.modules.audio
  2936. version: 1.0.0
  2937. - name: com.unity.modules.ui
  2938. version: 1.0.0
  2939. - name: com.unity.modules.unitywebrequest
  2940. version: 1.0.0
  2941. keywords: []
  2942. registry:
  2943. id: main
  2944. name:
  2945. url: https://packages.unity.com
  2946. scopes: []
  2947. isDefault: 1
  2948. capabilities: 7
  2949. configSource: 0
  2950. hideInEditor: 1
  2951. isAssetStorePackage: 0
  2952. datePublishedTicks: 0
  2953. documentationUrl:
  2954. hasRepository: 0
  2955. repository:
  2956. type:
  2957. url:
  2958. revision:
  2959. path:
  2960. unityLifecycle:
  2961. version: 1.0.0
  2962. nextVersion:
  2963. - packageId: com.unity.modules.vr@1.0.0
  2964. testable: 0
  2965. isDirectDependency: 1
  2966. version: 1.0.0
  2967. source: 2
  2968. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.vr@1.0.0
  2969. assetPath: Packages/com.unity.modules.vr
  2970. name: com.unity.modules.vr
  2971. displayName: VR
  2972. author:
  2973. name:
  2974. email:
  2975. url:
  2976. category:
  2977. type: module
  2978. description: 'The VR module implements support for virtual reality devices in Unity.
  2979. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.VRModule.html'
  2980. status: 0
  2981. errors: []
  2982. versions:
  2983. all:
  2984. - 1.0.0
  2985. compatible:
  2986. - 1.0.0
  2987. verified: 1.0.0
  2988. dependencies:
  2989. - name: com.unity.modules.jsonserialize
  2990. version: 1.0.0
  2991. - name: com.unity.modules.physics
  2992. version: 1.0.0
  2993. - name: com.unity.modules.xr
  2994. version: 1.0.0
  2995. resolvedDependencies:
  2996. - name: com.unity.modules.jsonserialize
  2997. version: 1.0.0
  2998. - name: com.unity.modules.physics
  2999. version: 1.0.0
  3000. - name: com.unity.modules.xr
  3001. version: 1.0.0
  3002. - name: com.unity.modules.subsystems
  3003. version: 1.0.0
  3004. keywords: []
  3005. registry:
  3006. id: main
  3007. name:
  3008. url: https://packages.unity.com
  3009. scopes: []
  3010. isDefault: 1
  3011. capabilities: 7
  3012. configSource: 0
  3013. hideInEditor: 1
  3014. isAssetStorePackage: 0
  3015. datePublishedTicks: 0
  3016. documentationUrl:
  3017. hasRepository: 0
  3018. repository:
  3019. type:
  3020. url:
  3021. revision:
  3022. path:
  3023. unityLifecycle:
  3024. version: 1.0.0
  3025. nextVersion:
  3026. - packageId: com.unity.modules.wind@1.0.0
  3027. testable: 0
  3028. isDirectDependency: 1
  3029. version: 1.0.0
  3030. source: 2
  3031. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.wind@1.0.0
  3032. assetPath: Packages/com.unity.modules.wind
  3033. name: com.unity.modules.wind
  3034. displayName: Wind
  3035. author:
  3036. name:
  3037. email:
  3038. url:
  3039. category:
  3040. type: module
  3041. description: 'The Wind module implements the WindZone component which can affect
  3042. terrain rendering and particle simulations. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.WindModule.html'
  3043. status: 0
  3044. errors: []
  3045. versions:
  3046. all:
  3047. - 1.0.0
  3048. compatible:
  3049. - 1.0.0
  3050. verified: 1.0.0
  3051. dependencies: []
  3052. resolvedDependencies: []
  3053. keywords: []
  3054. registry:
  3055. id: main
  3056. name:
  3057. url: https://packages.unity.com
  3058. scopes: []
  3059. isDefault: 1
  3060. capabilities: 7
  3061. configSource: 0
  3062. hideInEditor: 1
  3063. isAssetStorePackage: 0
  3064. datePublishedTicks: 0
  3065. documentationUrl:
  3066. hasRepository: 0
  3067. repository:
  3068. type:
  3069. url:
  3070. revision:
  3071. path:
  3072. unityLifecycle:
  3073. version: 1.0.0
  3074. nextVersion:
  3075. - packageId: com.unity.modules.xr@1.0.0
  3076. testable: 0
  3077. isDirectDependency: 1
  3078. version: 1.0.0
  3079. source: 2
  3080. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.xr@1.0.0
  3081. assetPath: Packages/com.unity.modules.xr
  3082. name: com.unity.modules.xr
  3083. displayName: XR
  3084. author:
  3085. name:
  3086. email:
  3087. url:
  3088. category:
  3089. type: module
  3090. description: 'The XR module contains the VR and AR related platform support functionality.
  3091. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.XRModule.html'
  3092. status: 0
  3093. errors: []
  3094. versions:
  3095. all:
  3096. - 1.0.0
  3097. compatible:
  3098. - 1.0.0
  3099. verified: 1.0.0
  3100. dependencies:
  3101. - name: com.unity.modules.physics
  3102. version: 1.0.0
  3103. - name: com.unity.modules.jsonserialize
  3104. version: 1.0.0
  3105. - name: com.unity.modules.subsystems
  3106. version: 1.0.0
  3107. resolvedDependencies:
  3108. - name: com.unity.modules.physics
  3109. version: 1.0.0
  3110. - name: com.unity.modules.jsonserialize
  3111. version: 1.0.0
  3112. - name: com.unity.modules.subsystems
  3113. version: 1.0.0
  3114. keywords: []
  3115. registry:
  3116. id: main
  3117. name:
  3118. url: https://packages.unity.com
  3119. scopes: []
  3120. isDefault: 1
  3121. capabilities: 7
  3122. configSource: 0
  3123. hideInEditor: 1
  3124. isAssetStorePackage: 0
  3125. datePublishedTicks: 0
  3126. documentationUrl:
  3127. hasRepository: 0
  3128. repository:
  3129. type:
  3130. url:
  3131. revision:
  3132. path:
  3133. unityLifecycle:
  3134. version: 1.0.0
  3135. nextVersion:
  3136. - packageId: com.unity.modules.subsystems@1.0.0
  3137. testable: 0
  3138. isDirectDependency: 0
  3139. version: 1.0.0
  3140. source: 2
  3141. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.subsystems@1.0.0
  3142. assetPath: Packages/com.unity.modules.subsystems
  3143. name: com.unity.modules.subsystems
  3144. displayName: Subsystems
  3145. author:
  3146. name:
  3147. email:
  3148. url:
  3149. category:
  3150. type: module
  3151. description: 'The Subsystem module contains the definitions and runtime support
  3152. for general subsystems in Unity. Scripting API: https://docs.unity3d.com/ScriptReference/UnityEngine.SubsystemsModule.html'
  3153. status: 0
  3154. errors: []
  3155. versions:
  3156. all:
  3157. - 1.0.0
  3158. compatible:
  3159. - 1.0.0
  3160. verified: 1.0.0
  3161. dependencies:
  3162. - name: com.unity.modules.jsonserialize
  3163. version: 1.0.0
  3164. resolvedDependencies:
  3165. - name: com.unity.modules.jsonserialize
  3166. version: 1.0.0
  3167. keywords: []
  3168. registry:
  3169. id: main
  3170. name:
  3171. url: https://packages.unity.com
  3172. scopes: []
  3173. isDefault: 1
  3174. capabilities: 7
  3175. configSource: 0
  3176. hideInEditor: 1
  3177. isAssetStorePackage: 0
  3178. datePublishedTicks: 0
  3179. documentationUrl:
  3180. hasRepository: 0
  3181. repository:
  3182. type:
  3183. url:
  3184. revision:
  3185. path:
  3186. unityLifecycle:
  3187. version:
  3188. nextVersion:
  3189. - packageId: com.unity.modules.uielementsnative@1.0.0
  3190. testable: 0
  3191. isDirectDependency: 0
  3192. version: 1.0.0
  3193. source: 2
  3194. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.modules.uielementsnative@1.0.0
  3195. assetPath: Packages/com.unity.modules.uielementsnative
  3196. name: com.unity.modules.uielementsnative
  3197. displayName: UIElements Native
  3198. author:
  3199. name:
  3200. email:
  3201. url:
  3202. category:
  3203. type: module
  3204. description:
  3205. status: 0
  3206. errors: []
  3207. versions:
  3208. all:
  3209. - 1.0.0
  3210. compatible:
  3211. - 1.0.0
  3212. verified: 1.0.0
  3213. dependencies:
  3214. - name: com.unity.modules.ui
  3215. version: 1.0.0
  3216. - name: com.unity.modules.imgui
  3217. version: 1.0.0
  3218. - name: com.unity.modules.jsonserialize
  3219. version: 1.0.0
  3220. resolvedDependencies:
  3221. - name: com.unity.modules.ui
  3222. version: 1.0.0
  3223. - name: com.unity.modules.imgui
  3224. version: 1.0.0
  3225. - name: com.unity.modules.jsonserialize
  3226. version: 1.0.0
  3227. keywords: []
  3228. registry:
  3229. id: main
  3230. name:
  3231. url: https://packages.unity.com
  3232. scopes: []
  3233. isDefault: 1
  3234. capabilities: 7
  3235. configSource: 0
  3236. hideInEditor: 1
  3237. isAssetStorePackage: 0
  3238. datePublishedTicks: 0
  3239. documentationUrl:
  3240. hasRepository: 0
  3241. repository:
  3242. type:
  3243. url:
  3244. revision:
  3245. path:
  3246. unityLifecycle:
  3247. version:
  3248. nextVersion:
  3249. - packageId: com.unity.ext.nunit@1.0.6
  3250. testable: 0
  3251. isDirectDependency: 0
  3252. version: 1.0.6
  3253. source: 1
  3254. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.ext.nunit@1.0.6
  3255. assetPath: Packages/com.unity.ext.nunit
  3256. name: com.unity.ext.nunit
  3257. displayName: Custom NUnit
  3258. author:
  3259. name:
  3260. email:
  3261. url:
  3262. category: Libraries
  3263. type: asset
  3264. description: Custom version of the nunit package build to work with Unity. Used
  3265. by the Unity Test Framework.
  3266. status: 0
  3267. errors: []
  3268. versions:
  3269. all:
  3270. - 0.1.5-preview
  3271. - 0.1.6-preview
  3272. - 0.1.9-preview
  3273. - 1.0.0
  3274. - 1.0.5
  3275. - 1.0.6
  3276. - 2.0.2
  3277. - 2.0.3
  3278. - 2.0.4
  3279. - 2.0.5
  3280. compatible:
  3281. - 1.0.6
  3282. - 2.0.2
  3283. - 2.0.3
  3284. - 2.0.4
  3285. - 2.0.5
  3286. verified: 1.0.6
  3287. dependencies: []
  3288. resolvedDependencies: []
  3289. keywords:
  3290. - nunit
  3291. - unittest
  3292. - test
  3293. registry:
  3294. id: main
  3295. name:
  3296. url: https://packages.unity.com
  3297. scopes: []
  3298. isDefault: 1
  3299. capabilities: 7
  3300. configSource: 0
  3301. hideInEditor: 0
  3302. isAssetStorePackage: 0
  3303. datePublishedTicks: 637429759280000000
  3304. documentationUrl:
  3305. hasRepository: 1
  3306. repository:
  3307. type: git
  3308. url: https://github.cds.internal.unity3d.com/unity/com.unity.ext.nunit.git
  3309. revision: 29ea4d6504a5f58fb3a6934db839aa80ae6d9d88
  3310. path:
  3311. unityLifecycle:
  3312. version: 1.0.6
  3313. nextVersion:
  3314. - packageId: com.unity.2d.animation@7.0.9
  3315. testable: 0
  3316. isDirectDependency: 0
  3317. version: 7.0.9
  3318. source: 1
  3319. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.2d.animation@7.0.9
  3320. assetPath: Packages/com.unity.2d.animation
  3321. name: com.unity.2d.animation
  3322. displayName: 2D Animation
  3323. author:
  3324. name:
  3325. email:
  3326. url:
  3327. category: 2D
  3328. type: asset
  3329. description: 2D Animation provides all the necessary tooling and runtime components
  3330. for skeletal animation using Sprites.
  3331. status: 0
  3332. errors: []
  3333. versions:
  3334. all:
  3335. - 1.0.15-preview.1
  3336. - 1.0.15-preview.2
  3337. - 1.0.15-preview.3
  3338. - 1.0.15-preview.4
  3339. - 1.0.15-preview.5
  3340. - 1.0.16-preview
  3341. - 1.0.16-preview.1
  3342. - 1.0.16-preview.2
  3343. - 2.0.0-preview.1
  3344. - 2.0.0-preview.2
  3345. - 2.0.0-preview.3
  3346. - 2.1.0-preview.1
  3347. - 2.1.0-preview.2
  3348. - 2.1.0-preview.4
  3349. - 2.1.0-preview.5
  3350. - 2.1.0-preview.7
  3351. - 2.2.0-preview.1
  3352. - 2.2.0-preview.4
  3353. - 2.2.0-preview.5
  3354. - 2.2.1-preview.1
  3355. - 2.2.1-preview.2
  3356. - 3.0.2
  3357. - 3.0.3
  3358. - 3.0.4
  3359. - 3.0.5
  3360. - 3.0.6
  3361. - 3.0.8
  3362. - 3.1.0
  3363. - 3.1.1
  3364. - 3.2.1
  3365. - 3.2.2
  3366. - 3.2.3
  3367. - 3.2.4
  3368. - 3.2.5
  3369. - 3.2.6
  3370. - 3.2.9
  3371. - 3.2.10
  3372. - 3.2.11
  3373. - 3.2.13
  3374. - 3.2.14
  3375. - 3.2.15
  3376. - 3.2.16
  3377. - 3.2.17
  3378. - 3.2.18
  3379. - 4.0.0
  3380. - 4.0.1
  3381. - 4.1.0
  3382. - 4.1.1
  3383. - 4.2.1
  3384. - 4.2.2
  3385. - 4.2.3
  3386. - 4.2.4
  3387. - 4.2.5
  3388. - 4.2.6
  3389. - 4.2.8
  3390. - 5.0.0
  3391. - 5.0.1
  3392. - 5.0.2
  3393. - 5.0.3
  3394. - 5.0.4
  3395. - 5.0.5
  3396. - 5.0.6
  3397. - 5.0.7
  3398. - 5.0.8
  3399. - 5.0.9
  3400. - 5.0.10
  3401. - 5.1.0
  3402. - 5.1.1
  3403. - 5.2.0
  3404. - 5.2.1
  3405. - 5.2.3
  3406. - 5.2.4
  3407. - 5.2.6
  3408. - 5.2.7
  3409. - 6.0.0-pre.1
  3410. - 6.0.0-pre.2
  3411. - 6.0.1
  3412. - 6.0.3
  3413. - 6.0.4
  3414. - 6.0.5
  3415. - 6.0.7
  3416. - 7.0.0-pre.2
  3417. - 7.0.0-pre.3
  3418. - 7.0.0
  3419. - 7.0.1
  3420. - 7.0.2
  3421. - 7.0.3
  3422. - 7.0.4
  3423. - 7.0.5
  3424. - 7.0.6
  3425. - 7.0.7
  3426. - 7.0.8
  3427. - 7.0.9
  3428. - 7.0.10
  3429. - 7.0.11
  3430. - 7.0.12
  3431. - 7.0.13
  3432. - 7.1.0
  3433. - 8.0.0-pre.3
  3434. - 8.0.0-pre.4
  3435. - 8.0.0
  3436. - 8.0.1
  3437. - 8.0.2
  3438. - 8.0.3
  3439. - 8.0.4
  3440. - 8.0.5
  3441. - 9.0.0-pre.1
  3442. - 9.0.0-pre.3
  3443. - 9.0.0
  3444. - 9.0.1
  3445. - 9.0.2
  3446. - 9.0.3
  3447. - 9.0.4
  3448. - 9.1.0
  3449. - 10.0.0-pre.1
  3450. - 10.0.0-pre.2
  3451. - 10.0.0
  3452. - 10.0.1
  3453. - 10.0.2
  3454. - 10.0.3
  3455. - 10.1.0
  3456. - 10.1.1
  3457. compatible:
  3458. - 7.0.9
  3459. - 7.0.10
  3460. - 7.0.11
  3461. - 7.0.12
  3462. - 7.0.13
  3463. - 7.1.0
  3464. verified: 7.0.13
  3465. dependencies:
  3466. - name: com.unity.2d.common
  3467. version: 6.0.6
  3468. - name: com.unity.2d.sprite
  3469. version: 1.0.0
  3470. - name: com.unity.modules.animation
  3471. version: 1.0.0
  3472. - name: com.unity.modules.uielements
  3473. version: 1.0.0
  3474. resolvedDependencies:
  3475. - name: com.unity.2d.common
  3476. version: 6.0.6
  3477. - name: com.unity.2d.sprite
  3478. version: 1.0.0
  3479. - name: com.unity.mathematics
  3480. version: 1.2.6
  3481. - name: com.unity.modules.uielements
  3482. version: 1.0.0
  3483. - name: com.unity.modules.ui
  3484. version: 1.0.0
  3485. - name: com.unity.modules.imgui
  3486. version: 1.0.0
  3487. - name: com.unity.modules.jsonserialize
  3488. version: 1.0.0
  3489. - name: com.unity.modules.uielementsnative
  3490. version: 1.0.0
  3491. - name: com.unity.burst
  3492. version: 1.6.6
  3493. - name: com.unity.modules.animation
  3494. version: 1.0.0
  3495. keywords:
  3496. - 2d
  3497. - animation
  3498. registry:
  3499. id: main
  3500. name:
  3501. url: https://packages.unity.com
  3502. scopes: []
  3503. isDefault: 1
  3504. capabilities: 7
  3505. configSource: 0
  3506. hideInEditor: 0
  3507. isAssetStorePackage: 0
  3508. datePublishedTicks: 638035874810000000
  3509. documentationUrl:
  3510. hasRepository: 1
  3511. repository:
  3512. type: git
  3513. url: https://github.cds.internal.unity3d.com/unity/2d.git
  3514. revision: aebc9b022b1d3ecdcc734e0ee8f139df3f3fe3dd
  3515. path:
  3516. unityLifecycle:
  3517. version: 7.0.9
  3518. nextVersion:
  3519. - packageId: com.unity.2d.pixel-perfect@5.0.3
  3520. testable: 0
  3521. isDirectDependency: 0
  3522. version: 5.0.3
  3523. source: 1
  3524. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.2d.pixel-perfect@5.0.3
  3525. assetPath: Packages/com.unity.2d.pixel-perfect
  3526. name: com.unity.2d.pixel-perfect
  3527. displayName: 2D Pixel Perfect
  3528. author:
  3529. name:
  3530. email:
  3531. url:
  3532. category:
  3533. type: tool
  3534. description: 'The 2D Pixel Perfect package contains the Pixel Perfect Camera component
  3535. which ensures your pixel art remains crisp and clear at different resolutions,
  3536. and stable in motion.
  3537. It is a single component that makes all the calculations
  3538. needed to scale the viewport with resolution changes, removing the hassle from
  3539. the user. The user can adjust the definition of the pixel art rendered within
  3540. the camera viewport through the component settings, as well preview any changes
  3541. immediately in Game view by using the Run in Edit Mode feature.'
  3542. status: 0
  3543. errors: []
  3544. versions:
  3545. all:
  3546. - 1.0.0-preview
  3547. - 1.0.1-preview
  3548. - 2.0.2
  3549. - 2.0.3
  3550. - 2.0.4
  3551. - 2.1.0
  3552. - 3.0.0
  3553. - 3.0.1
  3554. - 3.0.2
  3555. - 4.0.0
  3556. - 4.0.1
  3557. - 5.0.0-pre.1
  3558. - 5.0.0-pre.2
  3559. - 5.0.0
  3560. - 5.0.1
  3561. - 5.0.2
  3562. - 5.0.3
  3563. compatible:
  3564. - 5.0.3
  3565. verified: 5.0.3
  3566. dependencies: []
  3567. resolvedDependencies: []
  3568. keywords:
  3569. - pixel
  3570. - perfect
  3571. - 2D
  3572. - sprite
  3573. registry:
  3574. id: main
  3575. name:
  3576. url: https://packages.unity.com
  3577. scopes: []
  3578. isDefault: 1
  3579. capabilities: 7
  3580. configSource: 0
  3581. hideInEditor: 1
  3582. isAssetStorePackage: 0
  3583. datePublishedTicks: 638023910590000000
  3584. documentationUrl:
  3585. hasRepository: 1
  3586. repository:
  3587. type: git
  3588. url: https://github.cds.internal.unity3d.com/unity/2d.git
  3589. revision: 6dea8ac5bd6953acd64f1ac9d470912954b0c015
  3590. path:
  3591. unityLifecycle:
  3592. version: 5.0.3
  3593. nextVersion:
  3594. - packageId: com.unity.2d.psdimporter@6.0.7
  3595. testable: 0
  3596. isDirectDependency: 0
  3597. version: 6.0.7
  3598. source: 1
  3599. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.2d.psdimporter@6.0.7
  3600. assetPath: Packages/com.unity.2d.psdimporter
  3601. name: com.unity.2d.psdimporter
  3602. displayName: 2D PSD Importer
  3603. author:
  3604. name:
  3605. email:
  3606. url:
  3607. category: 2D
  3608. type: asset
  3609. description: A ScriptedImporter for importing Adobe Photoshop PSB (Photoshop Big)
  3610. file format. The ScriptedImporter is currently targeted for users who wants to
  3611. create multi Sprite character animation using Unity 2D Animation Package.
  3612. status: 0
  3613. errors: []
  3614. versions:
  3615. all:
  3616. - 1.0.0-preview.1
  3617. - 1.0.0-preview.2
  3618. - 1.0.0-preview.3
  3619. - 1.0.0-preview.4
  3620. - 1.1.0-preview.1
  3621. - 1.1.0-preview.3
  3622. - 1.2.0-preview.1
  3623. - 1.2.0-preview.3
  3624. - 1.2.0-preview.4
  3625. - 2.0.2
  3626. - 2.0.3
  3627. - 2.0.4
  3628. - 2.0.5
  3629. - 2.0.7
  3630. - 2.1.0
  3631. - 2.1.3
  3632. - 2.1.4
  3633. - 2.1.5
  3634. - 2.1.6
  3635. - 2.1.8
  3636. - 2.1.9
  3637. - 2.1.10
  3638. - 2.1.11
  3639. - 3.0.0
  3640. - 3.1.1
  3641. - 3.1.3
  3642. - 3.1.4
  3643. - 3.1.5
  3644. - 3.1.6
  3645. - 3.1.7
  3646. - 4.0.0
  3647. - 4.0.1
  3648. - 4.0.2
  3649. - 4.1.0
  3650. - 4.1.1
  3651. - 4.1.2
  3652. - 4.1.3
  3653. - 4.2.0
  3654. - 4.3.0
  3655. - 4.3.1
  3656. - 5.0.0-pre.1
  3657. - 5.0.0-pre.2
  3658. - 5.0.1
  3659. - 5.0.3
  3660. - 5.0.4
  3661. - 5.0.6
  3662. - 6.0.0-pre.2
  3663. - 6.0.0-pre.3
  3664. - 6.0.0-pre.4
  3665. - 6.0.0
  3666. - 6.0.1
  3667. - 6.0.2
  3668. - 6.0.3
  3669. - 6.0.4
  3670. - 6.0.5
  3671. - 6.0.6
  3672. - 6.0.7
  3673. - 6.0.8
  3674. - 6.0.9
  3675. - 7.0.0-pre.3
  3676. - 7.0.0-pre.4
  3677. - 7.0.0
  3678. - 7.0.1
  3679. - 7.0.2
  3680. - 7.0.3
  3681. - 8.0.0-pre.1
  3682. - 8.0.0-pre.3
  3683. - 8.0.0
  3684. - 8.0.1
  3685. - 8.0.2
  3686. - 8.0.3
  3687. - 8.0.4
  3688. - 9.0.0-pre.1
  3689. - 9.0.0-pre.2
  3690. - 9.0.0
  3691. - 9.0.1
  3692. - 9.0.2
  3693. compatible:
  3694. - 6.0.7
  3695. - 6.0.8
  3696. - 6.0.9
  3697. verified: 6.0.9
  3698. dependencies:
  3699. - name: com.unity.2d.animation
  3700. version: 7.0.9
  3701. - name: com.unity.2d.common
  3702. version: 6.0.6
  3703. - name: com.unity.2d.sprite
  3704. version: 1.0.0
  3705. resolvedDependencies:
  3706. - name: com.unity.2d.animation
  3707. version: 7.0.9
  3708. - name: com.unity.2d.common
  3709. version: 6.0.6
  3710. - name: com.unity.2d.sprite
  3711. version: 1.0.0
  3712. - name: com.unity.mathematics
  3713. version: 1.2.6
  3714. - name: com.unity.modules.uielements
  3715. version: 1.0.0
  3716. - name: com.unity.modules.ui
  3717. version: 1.0.0
  3718. - name: com.unity.modules.imgui
  3719. version: 1.0.0
  3720. - name: com.unity.modules.jsonserialize
  3721. version: 1.0.0
  3722. - name: com.unity.modules.uielementsnative
  3723. version: 1.0.0
  3724. - name: com.unity.burst
  3725. version: 1.6.6
  3726. - name: com.unity.modules.animation
  3727. version: 1.0.0
  3728. keywords:
  3729. - 2d
  3730. - psdimporter
  3731. - assetimporter
  3732. registry:
  3733. id: main
  3734. name:
  3735. url: https://packages.unity.com
  3736. scopes: []
  3737. isDefault: 1
  3738. capabilities: 7
  3739. configSource: 0
  3740. hideInEditor: 0
  3741. isAssetStorePackage: 0
  3742. datePublishedTicks: 638067887380000000
  3743. documentationUrl: https://docs.unity3d.com/Packages/com.unity.2d.psdimporter@6.0/manual/index.html
  3744. hasRepository: 1
  3745. repository:
  3746. type: git
  3747. url: https://github.cds.internal.unity3d.com/unity/2d.git
  3748. revision: 911204bb63dcf2da80b6063d54c4ec8737ad13dc
  3749. path:
  3750. unityLifecycle:
  3751. version: 6.0.7
  3752. nextVersion:
  3753. - packageId: com.unity.2d.sprite@1.0.0
  3754. testable: 0
  3755. isDirectDependency: 0
  3756. version: 1.0.0
  3757. source: 2
  3758. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.2d.sprite@1.0.0
  3759. assetPath: Packages/com.unity.2d.sprite
  3760. name: com.unity.2d.sprite
  3761. displayName: 2D Sprite
  3762. author:
  3763. name:
  3764. email:
  3765. url:
  3766. category: 2D
  3767. type:
  3768. description: Use Unity Sprite Editor Window to create and edit Sprite asset properties
  3769. like pivot, borders and Physics shape
  3770. status: 0
  3771. errors: []
  3772. versions:
  3773. all:
  3774. - 1.0.0
  3775. compatible:
  3776. - 1.0.0
  3777. verified: 1.0.0
  3778. dependencies: []
  3779. resolvedDependencies: []
  3780. keywords:
  3781. - 2d
  3782. - sprite
  3783. - sprite editor window
  3784. registry:
  3785. id: main
  3786. name:
  3787. url: https://packages.unity.com
  3788. scopes: []
  3789. isDefault: 1
  3790. capabilities: 7
  3791. configSource: 0
  3792. hideInEditor: 1
  3793. isAssetStorePackage: 0
  3794. datePublishedTicks: 0
  3795. documentationUrl:
  3796. hasRepository: 0
  3797. repository:
  3798. type:
  3799. url:
  3800. revision:
  3801. path:
  3802. unityLifecycle:
  3803. version: 1.0.0
  3804. nextVersion:
  3805. - packageId: com.unity.2d.spriteshape@7.0.6
  3806. testable: 0
  3807. isDirectDependency: 0
  3808. version: 7.0.6
  3809. source: 1
  3810. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.2d.spriteshape@7.0.6
  3811. assetPath: Packages/com.unity.2d.spriteshape
  3812. name: com.unity.2d.spriteshape
  3813. displayName: 2D SpriteShape
  3814. author:
  3815. name:
  3816. email:
  3817. url:
  3818. category: 2D
  3819. type: asset
  3820. description: SpriteShape Runtime & Editor Package contains the tooling and the
  3821. runtime component that allows you to create very organic looking spline based
  3822. 2D worlds. It comes with intuitive configurator and a highly performant renderer.
  3823. status: 0
  3824. errors: []
  3825. versions:
  3826. all:
  3827. - 1.0.10-preview.2
  3828. - 1.0.11-preview
  3829. - 1.0.12-preview
  3830. - 1.0.12-preview.1
  3831. - 1.0.14-preview.2
  3832. - 2.0.0-preview.4
  3833. - 2.0.0-preview.5
  3834. - 2.0.0-preview.7
  3835. - 2.0.0-preview.8
  3836. - 2.0.0-preview.9
  3837. - 2.1.0-preview.2
  3838. - 2.1.0-preview.6
  3839. - 2.1.0-preview.7
  3840. - 2.1.0-preview.10
  3841. - 2.1.0-preview.11
  3842. - 3.0.1
  3843. - 3.0.2
  3844. - 3.0.4
  3845. - 3.0.5
  3846. - 3.0.6
  3847. - 3.0.7
  3848. - 3.0.8
  3849. - 3.0.9
  3850. - 3.0.10
  3851. - 3.0.11
  3852. - 3.0.12
  3853. - 3.0.13
  3854. - 3.0.14
  3855. - 3.0.15
  3856. - 3.0.16
  3857. - 3.0.17
  3858. - 3.0.18
  3859. - 4.0.0
  3860. - 4.0.1
  3861. - 4.0.2
  3862. - 4.0.3
  3863. - 4.1.0
  3864. - 4.1.1
  3865. - 4.1.2
  3866. - 4.1.3
  3867. - 4.1.4
  3868. - 4.1.5
  3869. - 5.0.0
  3870. - 5.0.1
  3871. - 5.0.2
  3872. - 5.1.0
  3873. - 5.1.1
  3874. - 5.1.2
  3875. - 5.1.3
  3876. - 5.1.4
  3877. - 5.1.5
  3878. - 5.1.6
  3879. - 5.1.7
  3880. - 5.2.0
  3881. - 5.3.0
  3882. - 6.0.0-pre.1
  3883. - 6.0.0-pre.2
  3884. - 6.0.0
  3885. - 6.0.1
  3886. - 6.0.2
  3887. - 7.0.0-pre.2
  3888. - 7.0.0-pre.3
  3889. - 7.0.0
  3890. - 7.0.2
  3891. - 7.0.3
  3892. - 7.0.4
  3893. - 7.0.5
  3894. - 7.0.6
  3895. - 7.0.7
  3896. - 8.0.0-pre.4
  3897. - 8.0.0-pre.5
  3898. - 8.0.0
  3899. - 8.0.1
  3900. - 9.0.0-pre.1
  3901. - 9.0.0
  3902. - 9.0.1
  3903. - 9.0.2
  3904. - 10.0.0-pre.1
  3905. - 10.0.0-pre.2
  3906. - 10.0.0
  3907. - 10.0.1
  3908. - 10.0.2
  3909. - 10.0.3
  3910. compatible:
  3911. - 7.0.6
  3912. - 7.0.7
  3913. verified: 7.0.7
  3914. dependencies:
  3915. - name: com.unity.mathematics
  3916. version: 1.1.0
  3917. - name: com.unity.2d.common
  3918. version: 6.0.4
  3919. - name: com.unity.2d.path
  3920. version: 5.0.2
  3921. - name: com.unity.modules.physics2d
  3922. version: 1.0.0
  3923. resolvedDependencies:
  3924. - name: com.unity.mathematics
  3925. version: 1.2.6
  3926. - name: com.unity.2d.common
  3927. version: 6.0.6
  3928. - name: com.unity.2d.sprite
  3929. version: 1.0.0
  3930. - name: com.unity.modules.uielements
  3931. version: 1.0.0
  3932. - name: com.unity.modules.ui
  3933. version: 1.0.0
  3934. - name: com.unity.modules.imgui
  3935. version: 1.0.0
  3936. - name: com.unity.modules.jsonserialize
  3937. version: 1.0.0
  3938. - name: com.unity.modules.uielementsnative
  3939. version: 1.0.0
  3940. - name: com.unity.burst
  3941. version: 1.6.6
  3942. - name: com.unity.2d.path
  3943. version: 5.0.2
  3944. - name: com.unity.modules.physics2d
  3945. version: 1.0.0
  3946. keywords:
  3947. - 2d
  3948. - shape
  3949. - spriteshape
  3950. - smartsprite
  3951. - spline
  3952. - terrain2d
  3953. registry:
  3954. id: main
  3955. name:
  3956. url: https://packages.unity.com
  3957. scopes: []
  3958. isDefault: 1
  3959. capabilities: 7
  3960. configSource: 0
  3961. hideInEditor: 0
  3962. isAssetStorePackage: 0
  3963. datePublishedTicks: 637958913420000000
  3964. documentationUrl:
  3965. hasRepository: 1
  3966. repository:
  3967. type: git
  3968. url: https://github.cds.internal.unity3d.com/unity/2d.git
  3969. revision: 6b783c5dfb5a72d73e2b0a70d1caf4a367c58805
  3970. path:
  3971. unityLifecycle:
  3972. version: 7.0.6
  3973. nextVersion:
  3974. - packageId: com.unity.2d.tilemap@1.0.0
  3975. testable: 0
  3976. isDirectDependency: 0
  3977. version: 1.0.0
  3978. source: 2
  3979. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.2d.tilemap@1.0.0
  3980. assetPath: Packages/com.unity.2d.tilemap
  3981. name: com.unity.2d.tilemap
  3982. displayName: 2D Tilemap Editor
  3983. author:
  3984. name:
  3985. email:
  3986. url:
  3987. category: 2D
  3988. type:
  3989. description: 2D Tilemap Editor is a package that contains editor functionalities
  3990. for editing Tilemaps.
  3991. status: 0
  3992. errors: []
  3993. versions:
  3994. all:
  3995. - 1.0.0
  3996. compatible:
  3997. - 1.0.0
  3998. verified: 1.0.0
  3999. dependencies: []
  4000. resolvedDependencies: []
  4001. keywords:
  4002. - 2d
  4003. - Tilemap
  4004. registry:
  4005. id: main
  4006. name:
  4007. url: https://packages.unity.com
  4008. scopes: []
  4009. isDefault: 1
  4010. capabilities: 7
  4011. configSource: 0
  4012. hideInEditor: 1
  4013. isAssetStorePackage: 0
  4014. datePublishedTicks: 0
  4015. documentationUrl:
  4016. hasRepository: 0
  4017. repository:
  4018. type:
  4019. url:
  4020. revision:
  4021. path:
  4022. unityLifecycle:
  4023. version: 1.0.0
  4024. nextVersion:
  4025. - packageId: com.unity.2d.tilemap.extras@2.2.4
  4026. testable: 0
  4027. isDirectDependency: 0
  4028. version: 2.2.4
  4029. source: 1
  4030. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.2d.tilemap.extras@2.2.4
  4031. assetPath: Packages/com.unity.2d.tilemap.extras
  4032. name: com.unity.2d.tilemap.extras
  4033. displayName: 2D Tilemap Extras
  4034. author:
  4035. name:
  4036. email:
  4037. url:
  4038. category: 2D
  4039. type: asset
  4040. description: '2D Tilemap Extras is a package that contains extra scripts for use
  4041. with 2D Tilemap features in Unity. These include custom Tiles and Brushes for
  4042. the Tilemap feature.
  4043. The following are included in the package:
  4044. Brushes:
  4045. GameObject Brush, Group Brush, Line Brush, Random Brush
  4046. Tiles: Animated
  4047. Tile, Rule Tile, Rule Override Tile
  4048. Other: Grid Information, Custom Rules
  4049. for Rule Tile'
  4050. status: 0
  4051. errors: []
  4052. versions:
  4053. all:
  4054. - 1.5.0-preview
  4055. - 1.6.0-preview.1
  4056. - 1.6.1-preview
  4057. - 1.6.2-preview
  4058. - 1.6.3-preview
  4059. - 1.6.4-preview
  4060. - 1.7.0-preview
  4061. - 1.8.0-preview
  4062. - 1.8.1-preview
  4063. - 1.8.2-preview
  4064. - 1.8.3-preview
  4065. - 1.8.4-preview
  4066. - 2.0.0-pre.1
  4067. - 2.0.0-pre.2
  4068. - 2.0.0
  4069. - 2.2.0
  4070. - 2.2.1
  4071. - 2.2.2
  4072. - 2.2.3
  4073. - 2.2.4
  4074. - 2.2.5
  4075. - 2.2.6
  4076. - 2.2.7
  4077. - 3.0.0
  4078. - 3.0.1
  4079. - 3.0.2
  4080. - 3.0.3
  4081. - 3.1.0
  4082. - 3.1.1
  4083. - 3.1.2
  4084. - 4.0.0-pre.1
  4085. - 4.0.0-pre.2
  4086. - 4.0.0-pre.3
  4087. - 4.0.0
  4088. - 4.0.1
  4089. - 4.0.2
  4090. compatible:
  4091. - 2.2.4
  4092. - 2.2.5
  4093. - 2.2.6
  4094. - 2.2.7
  4095. verified: 2.2.7
  4096. dependencies:
  4097. - name: com.unity.modules.tilemap
  4098. version: 1.0.0
  4099. - name: com.unity.2d.tilemap
  4100. version: 1.0.0
  4101. - name: com.unity.ugui
  4102. version: 1.0.0
  4103. - name: com.unity.modules.jsonserialize
  4104. version: 1.0.0
  4105. resolvedDependencies:
  4106. - name: com.unity.modules.tilemap
  4107. version: 1.0.0
  4108. - name: com.unity.modules.physics2d
  4109. version: 1.0.0
  4110. - name: com.unity.2d.tilemap
  4111. version: 1.0.0
  4112. - name: com.unity.ugui
  4113. version: 1.0.0
  4114. - name: com.unity.modules.ui
  4115. version: 1.0.0
  4116. - name: com.unity.modules.imgui
  4117. version: 1.0.0
  4118. - name: com.unity.modules.jsonserialize
  4119. version: 1.0.0
  4120. keywords:
  4121. - 2d
  4122. registry:
  4123. id: main
  4124. name:
  4125. url: https://packages.unity.com
  4126. scopes: []
  4127. isDefault: 1
  4128. capabilities: 7
  4129. configSource: 0
  4130. hideInEditor: 0
  4131. isAssetStorePackage: 0
  4132. datePublishedTicks: 638067887390000000
  4133. documentationUrl: https://docs.unity3d.com/Packages/com.unity.2d.tilemap.extras@2.2/manual/index.html
  4134. hasRepository: 1
  4135. repository:
  4136. type: git
  4137. url: https://github.com/Unity-Technologies/2d-extras.git
  4138. revision: 2d8c9252168c8fe6d11dce4cfeb56d4d4ade3a70
  4139. path:
  4140. unityLifecycle:
  4141. version: 2.2.4
  4142. nextVersion:
  4143. - packageId: com.unity.subsystemregistration@1.1.0
  4144. testable: 0
  4145. isDirectDependency: 0
  4146. version: 1.1.0
  4147. source: 1
  4148. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.subsystemregistration@1.1.0
  4149. assetPath: Packages/com.unity.subsystemregistration
  4150. name: com.unity.subsystemregistration
  4151. displayName: Subsystem Registration
  4152. author:
  4153. name:
  4154. email:
  4155. url:
  4156. category:
  4157. type: asset
  4158. description: Provides internal registration mechanism for standalone subsystems.
  4159. It allows a standalone subsystem to inform the Subsystem Manager of its existence.
  4160. status: 0
  4161. errors: []
  4162. versions:
  4163. all:
  4164. - 1.0.0-preview.4
  4165. - 1.0.4
  4166. - 1.0.5
  4167. - 1.0.6
  4168. - 1.1.0
  4169. - 1.1.1
  4170. - 1.1.2
  4171. compatible:
  4172. - 1.1.0
  4173. - 1.1.1
  4174. - 1.1.2
  4175. verified: 1.1.2
  4176. dependencies:
  4177. - name: com.unity.modules.subsystems
  4178. version: 1.0.0
  4179. resolvedDependencies:
  4180. - name: com.unity.modules.subsystems
  4181. version: 1.0.0
  4182. - name: com.unity.modules.jsonserialize
  4183. version: 1.0.0
  4184. keywords:
  4185. - subsystem
  4186. - registration
  4187. - internal
  4188. registry:
  4189. id: main
  4190. name:
  4191. url: https://packages.unity.com
  4192. scopes: []
  4193. isDefault: 1
  4194. capabilities: 7
  4195. configSource: 0
  4196. hideInEditor: 0
  4197. isAssetStorePackage: 0
  4198. datePublishedTicks: 637314426150000000
  4199. documentationUrl:
  4200. hasRepository: 1
  4201. repository:
  4202. type: git
  4203. url: https://github.cds.internal.unity3d.com/unity/com.unity.subsystemregistration.git
  4204. revision: 72584ba5248fbe79e560e795ad819f876954fceb
  4205. path:
  4206. unityLifecycle:
  4207. version: 1.1.0
  4208. nextVersion:
  4209. - packageId: com.unity.profiling.core@1.0.2
  4210. testable: 0
  4211. isDirectDependency: 0
  4212. version: 1.0.2
  4213. source: 1
  4214. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.profiling.core@1.0.2
  4215. assetPath: Packages/com.unity.profiling.core
  4216. name: com.unity.profiling.core
  4217. displayName: Unity Profiling Core API
  4218. author:
  4219. name:
  4220. email:
  4221. url:
  4222. category:
  4223. type: asset
  4224. description: The Unity Profiling Core package provides an API for code instrumentation
  4225. markup, and for profiling statistic collection.
  4226. status: 0
  4227. errors: []
  4228. versions:
  4229. all:
  4230. - 0.1.0-preview.1
  4231. - 0.2.0-preview.1
  4232. - 0.2.1-preview.1
  4233. - 1.0.0-pre.1
  4234. - 1.0.0
  4235. - 1.0.2
  4236. compatible:
  4237. - 1.0.2
  4238. verified: 1.0.2
  4239. dependencies: []
  4240. resolvedDependencies: []
  4241. keywords:
  4242. - profiler
  4243. - profiling
  4244. - api
  4245. registry:
  4246. id: main
  4247. name:
  4248. url: https://packages.unity.com
  4249. scopes: []
  4250. isDefault: 1
  4251. capabilities: 7
  4252. configSource: 0
  4253. hideInEditor: 0
  4254. isAssetStorePackage: 0
  4255. datePublishedTicks: 637828752310000000
  4256. documentationUrl:
  4257. hasRepository: 1
  4258. repository:
  4259. type: git
  4260. url: https://github.cds.internal.unity3d.com/unity/profiler.git
  4261. revision: 2189ba14439d76a4083f59fae87163b4bdfd49c2
  4262. path:
  4263. unityLifecycle:
  4264. version: 1.0.2
  4265. nextVersion:
  4266. - packageId: com.unity.mathematics@1.2.6
  4267. testable: 0
  4268. isDirectDependency: 0
  4269. version: 1.2.6
  4270. source: 1
  4271. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.mathematics@1.2.6
  4272. assetPath: Packages/com.unity.mathematics
  4273. name: com.unity.mathematics
  4274. displayName: Mathematics
  4275. author:
  4276. name:
  4277. email:
  4278. url:
  4279. category:
  4280. type: asset
  4281. description: Unity's C# SIMD math library providing vector types and math functions
  4282. with a shader like syntax.
  4283. status: 0
  4284. errors: []
  4285. versions:
  4286. all:
  4287. - 0.0.12-preview.2
  4288. - 0.0.12-preview.5
  4289. - 0.0.12-preview.8
  4290. - 0.0.12-preview.10
  4291. - 0.0.12-preview.11
  4292. - 0.0.12-preview.13
  4293. - 0.0.12-preview.17
  4294. - 0.0.12-preview.19
  4295. - 0.0.12-preview.20
  4296. - 1.0.0-preview.1
  4297. - 1.0.1
  4298. - 1.1.0-preview.1
  4299. - 1.1.0
  4300. - 1.2.1
  4301. - 1.2.4
  4302. - 1.2.5
  4303. - 1.2.6
  4304. - 1.3.1
  4305. - 1.3.2
  4306. compatible:
  4307. - 1.2.6
  4308. - 1.3.1
  4309. - 1.3.2
  4310. verified: 1.2.6
  4311. dependencies: []
  4312. resolvedDependencies: []
  4313. keywords:
  4314. - unity
  4315. registry:
  4316. id: main
  4317. name:
  4318. url: https://packages.unity.com
  4319. scopes: []
  4320. isDefault: 1
  4321. capabilities: 7
  4322. configSource: 0
  4323. hideInEditor: 0
  4324. isAssetStorePackage: 0
  4325. datePublishedTicks: 637841876140000000
  4326. documentationUrl:
  4327. hasRepository: 1
  4328. repository:
  4329. type: git
  4330. url: https://github.com/Unity-Technologies/Unity.Mathematics.git
  4331. revision: f110c8c230d253654afed153569030a587cc7557
  4332. path:
  4333. unityLifecycle:
  4334. version: 1.2.6
  4335. nextVersion:
  4336. - packageId: com.unity.2d.common@6.0.6
  4337. testable: 0
  4338. isDirectDependency: 0
  4339. version: 6.0.6
  4340. source: 1
  4341. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.2d.common@6.0.6
  4342. assetPath: Packages/com.unity.2d.common
  4343. name: com.unity.2d.common
  4344. displayName: 2D Common
  4345. author:
  4346. name:
  4347. email:
  4348. url:
  4349. category: 2D
  4350. type: asset
  4351. description: 2D Common is a package that contains shared functionalities that are
  4352. used by most of the other 2D packages.
  4353. status: 0
  4354. errors: []
  4355. versions:
  4356. all:
  4357. - 1.0.9-preview.1
  4358. - 1.0.9-preview.2
  4359. - 1.0.10-preview
  4360. - 1.0.11-preview.1
  4361. - 1.1.0-preview.1
  4362. - 1.1.0-preview.2
  4363. - 1.2.0-preview.1
  4364. - 2.0.1
  4365. - 2.0.2
  4366. - 2.1.0
  4367. - 2.1.1
  4368. - 2.1.2
  4369. - 3.0.0
  4370. - 3.0.1
  4371. - 4.0.0
  4372. - 4.0.1
  4373. - 4.0.2
  4374. - 4.0.3
  4375. - 4.0.4
  4376. - 4.1.0
  4377. - 4.2.0
  4378. - 4.2.1
  4379. - 5.0.0-pre.1
  4380. - 5.0.0-pre.2
  4381. - 5.0.0
  4382. - 6.0.0-pre.2
  4383. - 6.0.0-pre.3
  4384. - 6.0.0-pre.4
  4385. - 6.0.0
  4386. - 6.0.1
  4387. - 6.0.2
  4388. - 6.0.3
  4389. - 6.0.4
  4390. - 6.0.5
  4391. - 6.0.6
  4392. - 6.0.7
  4393. - 7.0.0-pre.3
  4394. - 7.0.0-pre.4
  4395. - 7.0.0
  4396. - 7.0.1
  4397. - 7.0.2
  4398. - 7.0.3
  4399. - 8.0.0-pre.1
  4400. - 8.0.0-pre.2
  4401. - 8.0.0
  4402. - 8.0.1
  4403. - 8.0.2
  4404. - 9.0.0-pre.1
  4405. - 9.0.0-pre.2
  4406. - 9.0.0
  4407. - 9.0.1
  4408. - 9.0.2
  4409. - 9.0.3
  4410. - 9.0.4
  4411. compatible:
  4412. - 6.0.6
  4413. - 6.0.7
  4414. verified: 6.0.7
  4415. dependencies:
  4416. - name: com.unity.2d.sprite
  4417. version: 1.0.0
  4418. - name: com.unity.mathematics
  4419. version: 1.1.0
  4420. - name: com.unity.modules.uielements
  4421. version: 1.0.0
  4422. - name: com.unity.burst
  4423. version: 1.5.1
  4424. resolvedDependencies:
  4425. - name: com.unity.2d.sprite
  4426. version: 1.0.0
  4427. - name: com.unity.mathematics
  4428. version: 1.2.6
  4429. - name: com.unity.modules.uielements
  4430. version: 1.0.0
  4431. - name: com.unity.modules.ui
  4432. version: 1.0.0
  4433. - name: com.unity.modules.imgui
  4434. version: 1.0.0
  4435. - name: com.unity.modules.jsonserialize
  4436. version: 1.0.0
  4437. - name: com.unity.modules.uielementsnative
  4438. version: 1.0.0
  4439. - name: com.unity.burst
  4440. version: 1.6.6
  4441. keywords:
  4442. - 2d
  4443. registry:
  4444. id: main
  4445. name:
  4446. url: https://packages.unity.com
  4447. scopes: []
  4448. isDefault: 1
  4449. capabilities: 7
  4450. configSource: 0
  4451. hideInEditor: 0
  4452. isAssetStorePackage: 0
  4453. datePublishedTicks: 638035874770000000
  4454. documentationUrl:
  4455. hasRepository: 1
  4456. repository:
  4457. type: git
  4458. url: https://github.cds.internal.unity3d.com/unity/2d.git
  4459. revision: aebc9b022b1d3ecdcc734e0ee8f139df3f3fe3dd
  4460. path:
  4461. unityLifecycle:
  4462. version: 6.0.6
  4463. nextVersion:
  4464. - packageId: com.unity.2d.path@5.0.2
  4465. testable: 0
  4466. isDirectDependency: 0
  4467. version: 5.0.2
  4468. source: 1
  4469. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.2d.path@5.0.2
  4470. assetPath: Packages/com.unity.2d.path
  4471. name: com.unity.2d.path
  4472. displayName: 2D Path
  4473. author:
  4474. name:
  4475. email:
  4476. url:
  4477. category: 2D
  4478. type: asset
  4479. description: "2D Path provides tooling to edit shapes (polygons and B\xE9zier splines)
  4480. in EditorWindows and the SceneView."
  4481. status: 0
  4482. errors: []
  4483. versions:
  4484. all:
  4485. - 1.0.0-preview.1
  4486. - 1.0.0-preview.4
  4487. - 2.0.1
  4488. - 2.0.2
  4489. - 2.0.3
  4490. - 2.0.4
  4491. - 2.0.5
  4492. - 2.0.6
  4493. - 2.1.0
  4494. - 2.1.1
  4495. - 3.0.0
  4496. - 3.0.1
  4497. - 3.0.2
  4498. - 4.0.0
  4499. - 4.0.1
  4500. - 4.0.2
  4501. - 5.0.0-pre.1
  4502. - 5.0.0-pre.2
  4503. - 5.0.0
  4504. - 5.0.1
  4505. - 5.0.2
  4506. compatible:
  4507. - 5.0.2
  4508. verified: 5.0.2
  4509. dependencies: []
  4510. resolvedDependencies: []
  4511. keywords:
  4512. - 2d
  4513. - path
  4514. registry:
  4515. id: main
  4516. name:
  4517. url: https://packages.unity.com
  4518. scopes: []
  4519. isDefault: 1
  4520. capabilities: 7
  4521. configSource: 0
  4522. hideInEditor: 0
  4523. isAssetStorePackage: 0
  4524. datePublishedTicks: 637817447940000000
  4525. documentationUrl:
  4526. hasRepository: 1
  4527. repository:
  4528. type: git
  4529. url: https://github.cds.internal.unity3d.com/unity/2d.git
  4530. revision: 41fd674f8e4b2265bdbc50291dced1bd86c590ee
  4531. path:
  4532. unityLifecycle:
  4533. version: 5.0.2
  4534. nextVersion:
  4535. - packageId: com.unity.burst@1.6.6
  4536. testable: 0
  4537. isDirectDependency: 0
  4538. version: 1.6.6
  4539. source: 1
  4540. resolvedPath: D:\gcmfarmer-android\Library\PackageCache\com.unity.burst@1.6.6
  4541. assetPath: Packages/com.unity.burst
  4542. name: com.unity.burst
  4543. displayName: Burst
  4544. author:
  4545. name:
  4546. email:
  4547. url:
  4548. category:
  4549. type: asset
  4550. description: Burst is a compiler that translates from IL/.NET bytecode to highly
  4551. optimized native code using LLVM.
  4552. status: 0
  4553. errors: []
  4554. versions:
  4555. all:
  4556. - 0.2.4-preview.5
  4557. - 0.2.4-preview.7
  4558. - 0.2.4-preview.11
  4559. - 0.2.4-preview.12
  4560. - 0.2.4-preview.13
  4561. - 0.2.4-preview.14
  4562. - 0.2.4-preview.15
  4563. - 0.2.4-preview.16
  4564. - 0.2.4-preview.17
  4565. - 0.2.4-preview.18
  4566. - 0.2.4-preview.19
  4567. - 0.2.4-preview.20
  4568. - 0.2.4-preview.21
  4569. - 0.2.4-preview.22
  4570. - 0.2.4-preview.23
  4571. - 0.2.4-preview.24
  4572. - 0.2.4-preview.25
  4573. - 0.2.4-preview.30
  4574. - 0.2.4-preview.31
  4575. - 0.2.4-preview.33
  4576. - 0.2.4-preview.34
  4577. - 0.2.4-preview.37
  4578. - 0.2.4-preview.41
  4579. - 0.2.4-preview.45
  4580. - 0.2.4-preview.48
  4581. - 0.2.4-preview.50
  4582. - 1.1.0-preview.2
  4583. - 1.1.0-preview.3
  4584. - 1.1.0-preview.4
  4585. - 1.1.1
  4586. - 1.1.2
  4587. - 1.1.3-preview.3
  4588. - 1.2.0-preview.1
  4589. - 1.2.0-preview.5
  4590. - 1.2.0-preview.6
  4591. - 1.2.0-preview.8
  4592. - 1.2.0-preview.9
  4593. - 1.2.0-preview.10
  4594. - 1.2.0-preview.11
  4595. - 1.2.0-preview.12
  4596. - 1.2.0
  4597. - 1.2.1
  4598. - 1.2.2
  4599. - 1.2.3
  4600. - 1.3.0-preview.1
  4601. - 1.3.0-preview.2
  4602. - 1.3.0-preview.3
  4603. - 1.3.0-preview.4
  4604. - 1.3.0-preview.5
  4605. - 1.3.0-preview.6
  4606. - 1.3.0-preview.7
  4607. - 1.3.0-preview.8
  4608. - 1.3.0-preview.9
  4609. - 1.3.0-preview.10
  4610. - 1.3.0-preview.11
  4611. - 1.3.0-preview.12
  4612. - 1.3.0-preview.13
  4613. - 1.3.0
  4614. - 1.3.1
  4615. - 1.3.2
  4616. - 1.3.3
  4617. - 1.3.4
  4618. - 1.3.5
  4619. - 1.3.6
  4620. - 1.3.7
  4621. - 1.3.8
  4622. - 1.3.9
  4623. - 1.4.0-pre.1
  4624. - 1.4.0-preview.1
  4625. - 1.4.0-preview.2
  4626. - 1.4.0-preview.3
  4627. - 1.4.0-preview.4
  4628. - 1.4.0-preview.5
  4629. - 1.4.1-pre.1
  4630. - 1.4.1-pre.2
  4631. - 1.4.1
  4632. - 1.4.2
  4633. - 1.4.3
  4634. - 1.4.4-preview.1
  4635. - 1.4.4-preview.2
  4636. - 1.4.4
  4637. - 1.4.5
  4638. - 1.4.6
  4639. - 1.4.7
  4640. - 1.4.8
  4641. - 1.4.9
  4642. - 1.4.11
  4643. - 1.5.0-pre.3
  4644. - 1.5.0-pre.4
  4645. - 1.5.0-pre.5
  4646. - 1.5.0
  4647. - 1.5.1
  4648. - 1.5.2
  4649. - 1.5.3
  4650. - 1.5.4
  4651. - 1.5.5
  4652. - 1.5.6-preview.1
  4653. - 1.5.6
  4654. - 1.6.0-pre.2
  4655. - 1.6.0-pre.3
  4656. - 1.6.0-pre.4
  4657. - 1.6.0
  4658. - 1.6.1
  4659. - 1.6.2
  4660. - 1.6.3
  4661. - 1.6.4
  4662. - 1.6.5
  4663. - 1.6.6
  4664. - 1.7.0-pre.1
  4665. - 1.7.0
  4666. - 1.7.1
  4667. - 1.7.2
  4668. - 1.7.3
  4669. - 1.7.4
  4670. - 1.8.0-pre.1
  4671. - 1.8.0-pre.2
  4672. - 1.8.0
  4673. - 1.8.1
  4674. - 1.8.2
  4675. - 1.8.3
  4676. - 1.8.4
  4677. - 1.8.7
  4678. - 1.8.8
  4679. - 1.8.9
  4680. - 1.8.10
  4681. - 1.8.11
  4682. - 1.8.12
  4683. - 1.8.13
  4684. compatible:
  4685. - 1.6.6
  4686. - 1.7.0-pre.1
  4687. - 1.7.0
  4688. - 1.7.1
  4689. - 1.7.2
  4690. - 1.7.3
  4691. - 1.7.4
  4692. - 1.8.0-pre.1
  4693. - 1.8.0-pre.2
  4694. - 1.8.0
  4695. - 1.8.1
  4696. - 1.8.2
  4697. - 1.8.3
  4698. - 1.8.4
  4699. - 1.8.7
  4700. - 1.8.8
  4701. - 1.8.9
  4702. - 1.8.10
  4703. - 1.8.11
  4704. - 1.8.12
  4705. - 1.8.13
  4706. verified: 1.6.6
  4707. dependencies:
  4708. - name: com.unity.mathematics
  4709. version: 1.2.1
  4710. resolvedDependencies:
  4711. - name: com.unity.mathematics
  4712. version: 1.2.6
  4713. keywords: []
  4714. registry:
  4715. id: main
  4716. name:
  4717. url: https://packages.unity.com
  4718. scopes: []
  4719. isDefault: 1
  4720. capabilities: 7
  4721. configSource: 0
  4722. hideInEditor: 0
  4723. isAssetStorePackage: 0
  4724. datePublishedTicks: 637902875830000000
  4725. documentationUrl:
  4726. hasRepository: 1
  4727. repository:
  4728. type: git
  4729. url: https://github.cds.internal.unity3d.com/unity/burst.git
  4730. revision: 21ee3d01c6a374f6b01106f9eb6f1b43e113b1a3
  4731. path:
  4732. unityLifecycle:
  4733. version: 1.6.6
  4734. nextVersion: