EquipUpdate.prefab 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "EquipUpdate",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "EquipUpdate",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 17
  26. },
  27. {
  28. "__id__": 35
  29. }
  30. ],
  31. "_active": true,
  32. "_components": [
  33. {
  34. "__id__": 212
  35. },
  36. {
  37. "__id__": 214
  38. },
  39. {
  40. "__id__": 216
  41. },
  42. {
  43. "__id__": 218
  44. },
  45. {
  46. "__id__": 220
  47. }
  48. ],
  49. "_prefab": {
  50. "__id__": 222
  51. },
  52. "_lpos": {
  53. "__type__": "cc.Vec3",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0
  57. },
  58. "_lrot": {
  59. "__type__": "cc.Quat",
  60. "x": 0,
  61. "y": 0,
  62. "z": 0,
  63. "w": 1
  64. },
  65. "_lscale": {
  66. "__type__": "cc.Vec3",
  67. "x": 1,
  68. "y": 1,
  69. "z": 1
  70. },
  71. "_mobility": 0,
  72. "_layer": 33554432,
  73. "_euler": {
  74. "__type__": "cc.Vec3",
  75. "x": 0,
  76. "y": 0,
  77. "z": 0
  78. },
  79. "_id": ""
  80. },
  81. {
  82. "__type__": "cc.Node",
  83. "_name": "mask",
  84. "_objFlags": 0,
  85. "__editorExtras__": {},
  86. "_parent": {
  87. "__id__": 1
  88. },
  89. "_children": [],
  90. "_active": true,
  91. "_components": [
  92. {
  93. "__id__": 3
  94. },
  95. {
  96. "__id__": 5
  97. },
  98. {
  99. "__id__": 7
  100. },
  101. {
  102. "__id__": 9
  103. },
  104. {
  105. "__id__": 11
  106. },
  107. {
  108. "__id__": 13
  109. }
  110. ],
  111. "_prefab": {
  112. "__id__": 16
  113. },
  114. "_lpos": {
  115. "__type__": "cc.Vec3",
  116. "x": 0,
  117. "y": 0,
  118. "z": 0
  119. },
  120. "_lrot": {
  121. "__type__": "cc.Quat",
  122. "x": 0,
  123. "y": 0,
  124. "z": 0,
  125. "w": 1
  126. },
  127. "_lscale": {
  128. "__type__": "cc.Vec3",
  129. "x": 1,
  130. "y": 1,
  131. "z": 1
  132. },
  133. "_mobility": 0,
  134. "_layer": 33554432,
  135. "_euler": {
  136. "__type__": "cc.Vec3",
  137. "x": 0,
  138. "y": 0,
  139. "z": 0
  140. },
  141. "_id": ""
  142. },
  143. {
  144. "__type__": "cc.UITransform",
  145. "_name": "",
  146. "_objFlags": 0,
  147. "__editorExtras__": {},
  148. "node": {
  149. "__id__": 2
  150. },
  151. "_enabled": true,
  152. "__prefab": {
  153. "__id__": 4
  154. },
  155. "_contentSize": {
  156. "__type__": "cc.Size",
  157. "width": 750,
  158. "height": 1334
  159. },
  160. "_anchorPoint": {
  161. "__type__": "cc.Vec2",
  162. "x": 0.5,
  163. "y": 0.5
  164. },
  165. "_id": ""
  166. },
  167. {
  168. "__type__": "cc.CompPrefabInfo",
  169. "fileId": "afXfoMFzVHDJq8xUARzdpD"
  170. },
  171. {
  172. "__type__": "cc.Sprite",
  173. "_name": "",
  174. "_objFlags": 0,
  175. "__editorExtras__": {},
  176. "node": {
  177. "__id__": 2
  178. },
  179. "_enabled": true,
  180. "__prefab": {
  181. "__id__": 6
  182. },
  183. "_customMaterial": null,
  184. "_srcBlendFactor": 2,
  185. "_dstBlendFactor": 4,
  186. "_color": {
  187. "__type__": "cc.Color",
  188. "r": 0,
  189. "g": 0,
  190. "b": 0,
  191. "a": 255
  192. },
  193. "_spriteFrame": {
  194. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  195. "__expectedType__": "cc.SpriteFrame"
  196. },
  197. "_type": 0,
  198. "_fillType": 0,
  199. "_sizeMode": 0,
  200. "_fillCenter": {
  201. "__type__": "cc.Vec2",
  202. "x": 0,
  203. "y": 0
  204. },
  205. "_fillStart": 0,
  206. "_fillRange": 0,
  207. "_isTrimmedMode": true,
  208. "_useGrayscale": false,
  209. "_atlas": null,
  210. "_id": ""
  211. },
  212. {
  213. "__type__": "cc.CompPrefabInfo",
  214. "fileId": "270oql9nROi78/PYY0+xbD"
  215. },
  216. {
  217. "__type__": "cc.Widget",
  218. "_name": "",
  219. "_objFlags": 0,
  220. "__editorExtras__": {},
  221. "node": {
  222. "__id__": 2
  223. },
  224. "_enabled": true,
  225. "__prefab": {
  226. "__id__": 8
  227. },
  228. "_alignFlags": 45,
  229. "_target": null,
  230. "_left": 0,
  231. "_right": 0,
  232. "_top": 0,
  233. "_bottom": 0,
  234. "_horizontalCenter": 0,
  235. "_verticalCenter": 0,
  236. "_isAbsLeft": true,
  237. "_isAbsRight": true,
  238. "_isAbsTop": true,
  239. "_isAbsBottom": true,
  240. "_isAbsHorizontalCenter": true,
  241. "_isAbsVerticalCenter": true,
  242. "_originalWidth": 100,
  243. "_originalHeight": 100,
  244. "_alignMode": 2,
  245. "_lockFlags": 0,
  246. "_id": ""
  247. },
  248. {
  249. "__type__": "cc.CompPrefabInfo",
  250. "fileId": "b3mXn8ZElGYIlM9sjDMERa"
  251. },
  252. {
  253. "__type__": "cc.UIOpacity",
  254. "_name": "",
  255. "_objFlags": 0,
  256. "__editorExtras__": {},
  257. "node": {
  258. "__id__": 2
  259. },
  260. "_enabled": true,
  261. "__prefab": {
  262. "__id__": 10
  263. },
  264. "_opacity": 180,
  265. "_id": ""
  266. },
  267. {
  268. "__type__": "cc.CompPrefabInfo",
  269. "fileId": "4aIjqXs3hEWa8H0ndOV/Oa"
  270. },
  271. {
  272. "__type__": "cc.BlockInputEvents",
  273. "_name": "",
  274. "_objFlags": 0,
  275. "__editorExtras__": {},
  276. "node": {
  277. "__id__": 2
  278. },
  279. "_enabled": true,
  280. "__prefab": {
  281. "__id__": 12
  282. },
  283. "_id": ""
  284. },
  285. {
  286. "__type__": "cc.CompPrefabInfo",
  287. "fileId": "81cqO2M8BGRIxpZC7nPW8P"
  288. },
  289. {
  290. "__type__": "cc.Button",
  291. "_name": "",
  292. "_objFlags": 0,
  293. "__editorExtras__": {},
  294. "node": {
  295. "__id__": 2
  296. },
  297. "_enabled": true,
  298. "__prefab": {
  299. "__id__": 14
  300. },
  301. "clickEvents": [
  302. {
  303. "__id__": 15
  304. }
  305. ],
  306. "_interactable": true,
  307. "_transition": 0,
  308. "_normalColor": {
  309. "__type__": "cc.Color",
  310. "r": 255,
  311. "g": 255,
  312. "b": 255,
  313. "a": 255
  314. },
  315. "_hoverColor": {
  316. "__type__": "cc.Color",
  317. "r": 211,
  318. "g": 211,
  319. "b": 211,
  320. "a": 255
  321. },
  322. "_pressedColor": {
  323. "__type__": "cc.Color",
  324. "r": 255,
  325. "g": 255,
  326. "b": 255,
  327. "a": 255
  328. },
  329. "_disabledColor": {
  330. "__type__": "cc.Color",
  331. "r": 124,
  332. "g": 124,
  333. "b": 124,
  334. "a": 255
  335. },
  336. "_normalSprite": null,
  337. "_hoverSprite": null,
  338. "_pressedSprite": null,
  339. "_disabledSprite": null,
  340. "_duration": 0.1,
  341. "_zoomScale": 1.2,
  342. "_target": null,
  343. "_id": ""
  344. },
  345. {
  346. "__type__": "cc.CompPrefabInfo",
  347. "fileId": "94lwd9/tNOQJuLF/PxDZD9"
  348. },
  349. {
  350. "__type__": "cc.ClickEvent",
  351. "target": {
  352. "__id__": 1
  353. },
  354. "component": "",
  355. "_componentId": "46010KCvm1NJaDzNDGrO/9y",
  356. "handler": "onTouchButton",
  357. "customEventData": ""
  358. },
  359. {
  360. "__type__": "cc.PrefabInfo",
  361. "root": {
  362. "__id__": 1
  363. },
  364. "asset": {
  365. "__id__": 0
  366. },
  367. "fileId": "58TnDpyyZKU4abaWsDHQVd",
  368. "instance": null,
  369. "targetOverrides": null,
  370. "nestedPrefabInstanceRoots": null
  371. },
  372. {
  373. "__type__": "cc.Node",
  374. "_name": "close_tips",
  375. "_objFlags": 0,
  376. "__editorExtras__": {},
  377. "_parent": {
  378. "__id__": 1
  379. },
  380. "_children": [
  381. {
  382. "__id__": 18
  383. }
  384. ],
  385. "_active": true,
  386. "_components": [
  387. {
  388. "__id__": 26
  389. },
  390. {
  391. "__id__": 28
  392. },
  393. {
  394. "__id__": 30
  395. },
  396. {
  397. "__id__": 32
  398. }
  399. ],
  400. "_prefab": {
  401. "__id__": 34
  402. },
  403. "_lpos": {
  404. "__type__": "cc.Vec3",
  405. "x": 0,
  406. "y": -600.62,
  407. "z": 0
  408. },
  409. "_lrot": {
  410. "__type__": "cc.Quat",
  411. "x": 0,
  412. "y": 0,
  413. "z": 0,
  414. "w": 1
  415. },
  416. "_lscale": {
  417. "__type__": "cc.Vec3",
  418. "x": 1,
  419. "y": 1,
  420. "z": 1
  421. },
  422. "_mobility": 0,
  423. "_layer": 33554432,
  424. "_euler": {
  425. "__type__": "cc.Vec3",
  426. "x": 0,
  427. "y": 0,
  428. "z": 0
  429. },
  430. "_id": ""
  431. },
  432. {
  433. "__type__": "cc.Node",
  434. "_name": "line_eff",
  435. "_objFlags": 0,
  436. "__editorExtras__": {},
  437. "_parent": {
  438. "__id__": 17
  439. },
  440. "_children": [],
  441. "_active": true,
  442. "_components": [
  443. {
  444. "__id__": 19
  445. },
  446. {
  447. "__id__": 21
  448. },
  449. {
  450. "__id__": 23
  451. }
  452. ],
  453. "_prefab": {
  454. "__id__": 25
  455. },
  456. "_lpos": {
  457. "__type__": "cc.Vec3",
  458. "x": 0,
  459. "y": 0,
  460. "z": 0
  461. },
  462. "_lrot": {
  463. "__type__": "cc.Quat",
  464. "x": 0,
  465. "y": 0,
  466. "z": 0,
  467. "w": 1
  468. },
  469. "_lscale": {
  470. "__type__": "cc.Vec3",
  471. "x": 1,
  472. "y": 1,
  473. "z": 1
  474. },
  475. "_mobility": 0,
  476. "_layer": 33554432,
  477. "_euler": {
  478. "__type__": "cc.Vec3",
  479. "x": 0,
  480. "y": 0,
  481. "z": 0
  482. },
  483. "_id": ""
  484. },
  485. {
  486. "__type__": "cc.UITransform",
  487. "_name": "",
  488. "_objFlags": 0,
  489. "__editorExtras__": {},
  490. "node": {
  491. "__id__": 18
  492. },
  493. "_enabled": true,
  494. "__prefab": {
  495. "__id__": 20
  496. },
  497. "_contentSize": {
  498. "__type__": "cc.Size",
  499. "width": 416,
  500. "height": 31
  501. },
  502. "_anchorPoint": {
  503. "__type__": "cc.Vec2",
  504. "x": 0.5,
  505. "y": 0.5
  506. },
  507. "_id": ""
  508. },
  509. {
  510. "__type__": "cc.CompPrefabInfo",
  511. "fileId": "c7KjvpRqxGRYl//mu/0VQa"
  512. },
  513. {
  514. "__type__": "cc.Sprite",
  515. "_name": "",
  516. "_objFlags": 0,
  517. "__editorExtras__": {},
  518. "node": {
  519. "__id__": 18
  520. },
  521. "_enabled": true,
  522. "__prefab": {
  523. "__id__": 22
  524. },
  525. "_customMaterial": null,
  526. "_srcBlendFactor": 2,
  527. "_dstBlendFactor": 4,
  528. "_color": {
  529. "__type__": "cc.Color",
  530. "r": 255,
  531. "g": 255,
  532. "b": 255,
  533. "a": 255
  534. },
  535. "_spriteFrame": {
  536. "__uuid__": "1c7bd997-8b2c-4dbc-bc92-5314491cbc6b@f9941",
  537. "__expectedType__": "cc.SpriteFrame"
  538. },
  539. "_type": 1,
  540. "_fillType": 0,
  541. "_sizeMode": 0,
  542. "_fillCenter": {
  543. "__type__": "cc.Vec2",
  544. "x": 0,
  545. "y": 0
  546. },
  547. "_fillStart": 0,
  548. "_fillRange": 0,
  549. "_isTrimmedMode": true,
  550. "_useGrayscale": false,
  551. "_atlas": null,
  552. "_id": ""
  553. },
  554. {
  555. "__type__": "cc.CompPrefabInfo",
  556. "fileId": "f6ZrG4MEdNWZTbLBsL63NN"
  557. },
  558. {
  559. "__type__": "cc.Widget",
  560. "_name": "",
  561. "_objFlags": 0,
  562. "__editorExtras__": {},
  563. "node": {
  564. "__id__": 18
  565. },
  566. "_enabled": true,
  567. "__prefab": {
  568. "__id__": 24
  569. },
  570. "_alignFlags": 42,
  571. "_target": null,
  572. "_left": -130,
  573. "_right": -130,
  574. "_top": 0,
  575. "_bottom": 0,
  576. "_horizontalCenter": 0,
  577. "_verticalCenter": 0,
  578. "_isAbsLeft": true,
  579. "_isAbsRight": true,
  580. "_isAbsTop": true,
  581. "_isAbsBottom": true,
  582. "_isAbsHorizontalCenter": true,
  583. "_isAbsVerticalCenter": true,
  584. "_originalWidth": 398,
  585. "_originalHeight": 0,
  586. "_alignMode": 2,
  587. "_lockFlags": 0,
  588. "_id": ""
  589. },
  590. {
  591. "__type__": "cc.CompPrefabInfo",
  592. "fileId": "613Ie2R0ZNo6aNG6PTQ9u2"
  593. },
  594. {
  595. "__type__": "cc.PrefabInfo",
  596. "root": {
  597. "__id__": 1
  598. },
  599. "asset": {
  600. "__id__": 0
  601. },
  602. "fileId": "d9O9X+2+1Bl5EI+4usn9fJ",
  603. "instance": null,
  604. "targetOverrides": null,
  605. "nestedPrefabInstanceRoots": null
  606. },
  607. {
  608. "__type__": "cc.UITransform",
  609. "_name": "",
  610. "_objFlags": 0,
  611. "__editorExtras__": {},
  612. "node": {
  613. "__id__": 17
  614. },
  615. "_enabled": true,
  616. "__prefab": {
  617. "__id__": 27
  618. },
  619. "_contentSize": {
  620. "__type__": "cc.Size",
  621. "width": 156,
  622. "height": 32.76
  623. },
  624. "_anchorPoint": {
  625. "__type__": "cc.Vec2",
  626. "x": 0.5,
  627. "y": 0.5
  628. },
  629. "_id": ""
  630. },
  631. {
  632. "__type__": "cc.CompPrefabInfo",
  633. "fileId": "50A1fr5rJHhpWWxi2FDMaJ"
  634. },
  635. {
  636. "__type__": "cc.Label",
  637. "_name": "",
  638. "_objFlags": 0,
  639. "__editorExtras__": {},
  640. "node": {
  641. "__id__": 17
  642. },
  643. "_enabled": true,
  644. "__prefab": {
  645. "__id__": 29
  646. },
  647. "_customMaterial": null,
  648. "_srcBlendFactor": 2,
  649. "_dstBlendFactor": 4,
  650. "_color": {
  651. "__type__": "cc.Color",
  652. "r": 255,
  653. "g": 239,
  654. "b": 201,
  655. "a": 255
  656. },
  657. "_string": "點擊空白繼續",
  658. "_horizontalAlign": 1,
  659. "_verticalAlign": 1,
  660. "_actualFontSize": 26,
  661. "_fontSize": 26,
  662. "_fontFamily": "Arial",
  663. "_lineHeight": 26,
  664. "_overflow": 0,
  665. "_enableWrapText": false,
  666. "_font": {
  667. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  668. "__expectedType__": "cc.TTFFont"
  669. },
  670. "_isSystemFontUsed": false,
  671. "_spacingX": 0,
  672. "_isItalic": false,
  673. "_isBold": true,
  674. "_isUnderline": false,
  675. "_underlineHeight": 2,
  676. "_cacheMode": 0,
  677. "_enableOutline": false,
  678. "_outlineColor": {
  679. "__type__": "cc.Color",
  680. "r": 0,
  681. "g": 0,
  682. "b": 0,
  683. "a": 255
  684. },
  685. "_outlineWidth": 2,
  686. "_enableShadow": false,
  687. "_shadowColor": {
  688. "__type__": "cc.Color",
  689. "r": 0,
  690. "g": 0,
  691. "b": 0,
  692. "a": 255
  693. },
  694. "_shadowOffset": {
  695. "__type__": "cc.Vec2",
  696. "x": 2,
  697. "y": 2
  698. },
  699. "_shadowBlur": 2,
  700. "_id": ""
  701. },
  702. {
  703. "__type__": "cc.CompPrefabInfo",
  704. "fileId": "82DSlbAE5DWqhZATcKYu/N"
  705. },
  706. {
  707. "__type__": "cc.Widget",
  708. "_name": "",
  709. "_objFlags": 0,
  710. "__editorExtras__": {},
  711. "node": {
  712. "__id__": 17
  713. },
  714. "_enabled": true,
  715. "__prefab": {
  716. "__id__": 31
  717. },
  718. "_alignFlags": 20,
  719. "_target": null,
  720. "_left": 0,
  721. "_right": 0,
  722. "_top": 0,
  723. "_bottom": 50,
  724. "_horizontalCenter": 0,
  725. "_verticalCenter": 0,
  726. "_isAbsLeft": true,
  727. "_isAbsRight": true,
  728. "_isAbsTop": true,
  729. "_isAbsBottom": true,
  730. "_isAbsHorizontalCenter": true,
  731. "_isAbsVerticalCenter": true,
  732. "_originalWidth": 0,
  733. "_originalHeight": 0,
  734. "_alignMode": 2,
  735. "_lockFlags": 0,
  736. "_id": ""
  737. },
  738. {
  739. "__type__": "cc.CompPrefabInfo",
  740. "fileId": "960R7mdslLDbndVIvqVR4g"
  741. },
  742. {
  743. "__type__": "cc.UIOpacity",
  744. "_name": "",
  745. "_objFlags": 0,
  746. "__editorExtras__": {},
  747. "node": {
  748. "__id__": 17
  749. },
  750. "_enabled": true,
  751. "__prefab": {
  752. "__id__": 33
  753. },
  754. "_opacity": 255,
  755. "_id": ""
  756. },
  757. {
  758. "__type__": "cc.CompPrefabInfo",
  759. "fileId": "62XSr5I5xIWJ3mU0Un8ojz"
  760. },
  761. {
  762. "__type__": "cc.PrefabInfo",
  763. "root": {
  764. "__id__": 1
  765. },
  766. "asset": {
  767. "__id__": 0
  768. },
  769. "fileId": "f4W8KenhpNiaIQ5gYbNo2B",
  770. "instance": null,
  771. "targetOverrides": null,
  772. "nestedPrefabInstanceRoots": null
  773. },
  774. {
  775. "__type__": "cc.Node",
  776. "_name": "content",
  777. "_objFlags": 0,
  778. "__editorExtras__": {},
  779. "_parent": {
  780. "__id__": 1
  781. },
  782. "_children": [
  783. {
  784. "__id__": 36
  785. },
  786. {
  787. "__id__": 42
  788. },
  789. {
  790. "__id__": 64
  791. },
  792. {
  793. "__id__": 140
  794. },
  795. {
  796. "__id__": 171
  797. },
  798. {
  799. "__id__": 186
  800. }
  801. ],
  802. "_active": true,
  803. "_components": [
  804. {
  805. "__id__": 201
  806. },
  807. {
  808. "__id__": 203
  809. },
  810. {
  811. "__id__": 205
  812. },
  813. {
  814. "__id__": 207
  815. },
  816. {
  817. "__id__": 209
  818. }
  819. ],
  820. "_prefab": {
  821. "__id__": 211
  822. },
  823. "_lpos": {
  824. "__type__": "cc.Vec3",
  825. "x": 0,
  826. "y": 0,
  827. "z": 0
  828. },
  829. "_lrot": {
  830. "__type__": "cc.Quat",
  831. "x": 0,
  832. "y": 0,
  833. "z": 0,
  834. "w": 1
  835. },
  836. "_lscale": {
  837. "__type__": "cc.Vec3",
  838. "x": 1,
  839. "y": 1,
  840. "z": 1
  841. },
  842. "_mobility": 0,
  843. "_layer": 33554432,
  844. "_euler": {
  845. "__type__": "cc.Vec3",
  846. "x": 0,
  847. "y": 0,
  848. "z": 0
  849. },
  850. "_id": ""
  851. },
  852. {
  853. "__type__": "cc.Node",
  854. "_name": "title_tx",
  855. "_objFlags": 0,
  856. "__editorExtras__": {},
  857. "_parent": {
  858. "__id__": 35
  859. },
  860. "_children": [],
  861. "_active": true,
  862. "_components": [
  863. {
  864. "__id__": 37
  865. },
  866. {
  867. "__id__": 39
  868. }
  869. ],
  870. "_prefab": {
  871. "__id__": 41
  872. },
  873. "_lpos": {
  874. "__type__": "cc.Vec3",
  875. "x": 0,
  876. "y": 461.884,
  877. "z": 0
  878. },
  879. "_lrot": {
  880. "__type__": "cc.Quat",
  881. "x": 0,
  882. "y": 0,
  883. "z": 0,
  884. "w": 1
  885. },
  886. "_lscale": {
  887. "__type__": "cc.Vec3",
  888. "x": 1,
  889. "y": 1,
  890. "z": 1
  891. },
  892. "_mobility": 0,
  893. "_layer": 33554432,
  894. "_euler": {
  895. "__type__": "cc.Vec3",
  896. "x": 0,
  897. "y": 0,
  898. "z": 0
  899. },
  900. "_id": ""
  901. },
  902. {
  903. "__type__": "cc.UITransform",
  904. "_name": "",
  905. "_objFlags": 0,
  906. "__editorExtras__": {},
  907. "node": {
  908. "__id__": 36
  909. },
  910. "_enabled": true,
  911. "__prefab": {
  912. "__id__": 38
  913. },
  914. "_contentSize": {
  915. "__type__": "cc.Size",
  916. "width": 118,
  917. "height": 41.28
  918. },
  919. "_anchorPoint": {
  920. "__type__": "cc.Vec2",
  921. "x": 0.5,
  922. "y": 0.5
  923. },
  924. "_id": ""
  925. },
  926. {
  927. "__type__": "cc.CompPrefabInfo",
  928. "fileId": "0fF7xje1VJXKYBSkiLRO3P"
  929. },
  930. {
  931. "__type__": "cc.Label",
  932. "_name": "",
  933. "_objFlags": 0,
  934. "__editorExtras__": {},
  935. "node": {
  936. "__id__": 36
  937. },
  938. "_enabled": true,
  939. "__prefab": {
  940. "__id__": 40
  941. },
  942. "_customMaterial": null,
  943. "_srcBlendFactor": 2,
  944. "_dstBlendFactor": 4,
  945. "_color": {
  946. "__type__": "cc.Color",
  947. "r": 255,
  948. "g": 239,
  949. "b": 201,
  950. "a": 255
  951. },
  952. "_string": "装备强化",
  953. "_horizontalAlign": 1,
  954. "_verticalAlign": 1,
  955. "_actualFontSize": 28,
  956. "_fontSize": 28,
  957. "_fontFamily": "Arial",
  958. "_lineHeight": 28,
  959. "_overflow": 0,
  960. "_enableWrapText": false,
  961. "_font": {
  962. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  963. "__expectedType__": "cc.TTFFont"
  964. },
  965. "_isSystemFontUsed": false,
  966. "_spacingX": 0,
  967. "_isItalic": false,
  968. "_isBold": true,
  969. "_isUnderline": false,
  970. "_underlineHeight": 2,
  971. "_cacheMode": 0,
  972. "_enableOutline": true,
  973. "_outlineColor": {
  974. "__type__": "cc.Color",
  975. "r": 0,
  976. "g": 0,
  977. "b": 0,
  978. "a": 255
  979. },
  980. "_outlineWidth": 3,
  981. "_enableShadow": false,
  982. "_shadowColor": {
  983. "__type__": "cc.Color",
  984. "r": 0,
  985. "g": 0,
  986. "b": 0,
  987. "a": 255
  988. },
  989. "_shadowOffset": {
  990. "__type__": "cc.Vec2",
  991. "x": 2,
  992. "y": 2
  993. },
  994. "_shadowBlur": 2,
  995. "_id": ""
  996. },
  997. {
  998. "__type__": "cc.CompPrefabInfo",
  999. "fileId": "9dZ1oF4/tEsIvEboPUq+bC"
  1000. },
  1001. {
  1002. "__type__": "cc.PrefabInfo",
  1003. "root": {
  1004. "__id__": 1
  1005. },
  1006. "asset": {
  1007. "__id__": 0
  1008. },
  1009. "fileId": "9cP84WVa5HxKEsDq6dICb7",
  1010. "instance": null,
  1011. "targetOverrides": null,
  1012. "nestedPrefabInstanceRoots": null
  1013. },
  1014. {
  1015. "__type__": "cc.Node",
  1016. "_name": "equip_bg",
  1017. "_objFlags": 0,
  1018. "__editorExtras__": {},
  1019. "_parent": {
  1020. "__id__": 35
  1021. },
  1022. "_children": [
  1023. {
  1024. "__id__": 43
  1025. },
  1026. {
  1027. "__id__": 49
  1028. },
  1029. {
  1030. "__id__": 55
  1031. }
  1032. ],
  1033. "_active": true,
  1034. "_components": [
  1035. {
  1036. "__id__": 59
  1037. },
  1038. {
  1039. "__id__": 61
  1040. }
  1041. ],
  1042. "_prefab": {
  1043. "__id__": 63
  1044. },
  1045. "_lpos": {
  1046. "__type__": "cc.Vec3",
  1047. "x": 0,
  1048. "y": 226,
  1049. "z": 0
  1050. },
  1051. "_lrot": {
  1052. "__type__": "cc.Quat",
  1053. "x": 0,
  1054. "y": 0,
  1055. "z": 0,
  1056. "w": 1
  1057. },
  1058. "_lscale": {
  1059. "__type__": "cc.Vec3",
  1060. "x": 1,
  1061. "y": 1,
  1062. "z": 1
  1063. },
  1064. "_mobility": 0,
  1065. "_layer": 33554432,
  1066. "_euler": {
  1067. "__type__": "cc.Vec3",
  1068. "x": 0,
  1069. "y": 0,
  1070. "z": 0
  1071. },
  1072. "_id": ""
  1073. },
  1074. {
  1075. "__type__": "cc.Node",
  1076. "_name": "name_bg",
  1077. "_objFlags": 0,
  1078. "__editorExtras__": {},
  1079. "_parent": {
  1080. "__id__": 42
  1081. },
  1082. "_children": [],
  1083. "_active": true,
  1084. "_components": [
  1085. {
  1086. "__id__": 44
  1087. },
  1088. {
  1089. "__id__": 46
  1090. }
  1091. ],
  1092. "_prefab": {
  1093. "__id__": 48
  1094. },
  1095. "_lpos": {
  1096. "__type__": "cc.Vec3",
  1097. "x": 0,
  1098. "y": 148,
  1099. "z": 0
  1100. },
  1101. "_lrot": {
  1102. "__type__": "cc.Quat",
  1103. "x": 0,
  1104. "y": 0,
  1105. "z": 0,
  1106. "w": 1
  1107. },
  1108. "_lscale": {
  1109. "__type__": "cc.Vec3",
  1110. "x": 1,
  1111. "y": 1,
  1112. "z": 1
  1113. },
  1114. "_mobility": 0,
  1115. "_layer": 33554432,
  1116. "_euler": {
  1117. "__type__": "cc.Vec3",
  1118. "x": 0,
  1119. "y": 0,
  1120. "z": 0
  1121. },
  1122. "_id": ""
  1123. },
  1124. {
  1125. "__type__": "cc.UITransform",
  1126. "_name": "",
  1127. "_objFlags": 0,
  1128. "__editorExtras__": {},
  1129. "node": {
  1130. "__id__": 43
  1131. },
  1132. "_enabled": true,
  1133. "__prefab": {
  1134. "__id__": 45
  1135. },
  1136. "_contentSize": {
  1137. "__type__": "cc.Size",
  1138. "width": 377,
  1139. "height": 51
  1140. },
  1141. "_anchorPoint": {
  1142. "__type__": "cc.Vec2",
  1143. "x": 0.5,
  1144. "y": 0.5
  1145. },
  1146. "_id": ""
  1147. },
  1148. {
  1149. "__type__": "cc.CompPrefabInfo",
  1150. "fileId": "27dKiYJzlL0Y36v0L2tGpO"
  1151. },
  1152. {
  1153. "__type__": "cc.Sprite",
  1154. "_name": "",
  1155. "_objFlags": 0,
  1156. "__editorExtras__": {},
  1157. "node": {
  1158. "__id__": 43
  1159. },
  1160. "_enabled": true,
  1161. "__prefab": {
  1162. "__id__": 47
  1163. },
  1164. "_customMaterial": null,
  1165. "_srcBlendFactor": 2,
  1166. "_dstBlendFactor": 4,
  1167. "_color": {
  1168. "__type__": "cc.Color",
  1169. "r": 255,
  1170. "g": 255,
  1171. "b": 255,
  1172. "a": 255
  1173. },
  1174. "_spriteFrame": {
  1175. "__uuid__": "1e1b730c-f54d-4af9-9e5e-28c1c25ef923@f9941",
  1176. "__expectedType__": "cc.SpriteFrame"
  1177. },
  1178. "_type": 0,
  1179. "_fillType": 0,
  1180. "_sizeMode": 1,
  1181. "_fillCenter": {
  1182. "__type__": "cc.Vec2",
  1183. "x": 0,
  1184. "y": 0
  1185. },
  1186. "_fillStart": 0,
  1187. "_fillRange": 0,
  1188. "_isTrimmedMode": true,
  1189. "_useGrayscale": false,
  1190. "_atlas": null,
  1191. "_id": ""
  1192. },
  1193. {
  1194. "__type__": "cc.CompPrefabInfo",
  1195. "fileId": "18xws7vItH6Kd5UKy1Myue"
  1196. },
  1197. {
  1198. "__type__": "cc.PrefabInfo",
  1199. "root": {
  1200. "__id__": 1
  1201. },
  1202. "asset": {
  1203. "__id__": 0
  1204. },
  1205. "fileId": "824IbdqABOxpJwImtt3rwn",
  1206. "instance": null,
  1207. "targetOverrides": null,
  1208. "nestedPrefabInstanceRoots": null
  1209. },
  1210. {
  1211. "__type__": "cc.Node",
  1212. "_name": "name_tx",
  1213. "_objFlags": 0,
  1214. "__editorExtras__": {},
  1215. "_parent": {
  1216. "__id__": 42
  1217. },
  1218. "_children": [],
  1219. "_active": true,
  1220. "_components": [
  1221. {
  1222. "__id__": 50
  1223. },
  1224. {
  1225. "__id__": 52
  1226. }
  1227. ],
  1228. "_prefab": {
  1229. "__id__": 54
  1230. },
  1231. "_lpos": {
  1232. "__type__": "cc.Vec3",
  1233. "x": 0,
  1234. "y": 148,
  1235. "z": 0
  1236. },
  1237. "_lrot": {
  1238. "__type__": "cc.Quat",
  1239. "x": 0,
  1240. "y": 0,
  1241. "z": 0,
  1242. "w": 1
  1243. },
  1244. "_lscale": {
  1245. "__type__": "cc.Vec3",
  1246. "x": 1,
  1247. "y": 1,
  1248. "z": 1
  1249. },
  1250. "_mobility": 0,
  1251. "_layer": 33554432,
  1252. "_euler": {
  1253. "__type__": "cc.Vec3",
  1254. "x": 0,
  1255. "y": 0,
  1256. "z": 0
  1257. },
  1258. "_id": ""
  1259. },
  1260. {
  1261. "__type__": "cc.UITransform",
  1262. "_name": "",
  1263. "_objFlags": 0,
  1264. "__editorExtras__": {},
  1265. "node": {
  1266. "__id__": 49
  1267. },
  1268. "_enabled": true,
  1269. "__prefab": {
  1270. "__id__": 51
  1271. },
  1272. "_contentSize": {
  1273. "__type__": "cc.Size",
  1274. "width": 78,
  1275. "height": 32.76
  1276. },
  1277. "_anchorPoint": {
  1278. "__type__": "cc.Vec2",
  1279. "x": 0.5,
  1280. "y": 0.5
  1281. },
  1282. "_id": ""
  1283. },
  1284. {
  1285. "__type__": "cc.CompPrefabInfo",
  1286. "fileId": "bci6v3ZqFL668s3B1/zqxa"
  1287. },
  1288. {
  1289. "__type__": "cc.Label",
  1290. "_name": "",
  1291. "_objFlags": 0,
  1292. "__editorExtras__": {},
  1293. "node": {
  1294. "__id__": 49
  1295. },
  1296. "_enabled": true,
  1297. "__prefab": {
  1298. "__id__": 53
  1299. },
  1300. "_customMaterial": null,
  1301. "_srcBlendFactor": 2,
  1302. "_dstBlendFactor": 4,
  1303. "_color": {
  1304. "__type__": "cc.Color",
  1305. "r": 138,
  1306. "g": 98,
  1307. "b": 48,
  1308. "a": 255
  1309. },
  1310. "_string": "装备名",
  1311. "_horizontalAlign": 1,
  1312. "_verticalAlign": 1,
  1313. "_actualFontSize": 26,
  1314. "_fontSize": 26,
  1315. "_fontFamily": "Arial",
  1316. "_lineHeight": 26,
  1317. "_overflow": 0,
  1318. "_enableWrapText": false,
  1319. "_font": {
  1320. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  1321. "__expectedType__": "cc.TTFFont"
  1322. },
  1323. "_isSystemFontUsed": false,
  1324. "_spacingX": 0,
  1325. "_isItalic": false,
  1326. "_isBold": true,
  1327. "_isUnderline": false,
  1328. "_underlineHeight": 2,
  1329. "_cacheMode": 0,
  1330. "_enableOutline": false,
  1331. "_outlineColor": {
  1332. "__type__": "cc.Color",
  1333. "r": 0,
  1334. "g": 0,
  1335. "b": 0,
  1336. "a": 255
  1337. },
  1338. "_outlineWidth": 3,
  1339. "_enableShadow": false,
  1340. "_shadowColor": {
  1341. "__type__": "cc.Color",
  1342. "r": 0,
  1343. "g": 0,
  1344. "b": 0,
  1345. "a": 255
  1346. },
  1347. "_shadowOffset": {
  1348. "__type__": "cc.Vec2",
  1349. "x": 2,
  1350. "y": 2
  1351. },
  1352. "_shadowBlur": 2,
  1353. "_id": ""
  1354. },
  1355. {
  1356. "__type__": "cc.CompPrefabInfo",
  1357. "fileId": "c0WVE/rhtKd6BvmHUOIaqF"
  1358. },
  1359. {
  1360. "__type__": "cc.PrefabInfo",
  1361. "root": {
  1362. "__id__": 1
  1363. },
  1364. "asset": {
  1365. "__id__": 0
  1366. },
  1367. "fileId": "4ap4S0Q71MArqW6d81Mqtz",
  1368. "instance": null,
  1369. "targetOverrides": null,
  1370. "nestedPrefabInstanceRoots": null
  1371. },
  1372. {
  1373. "__type__": "cc.Node",
  1374. "_name": "item_node",
  1375. "_objFlags": 0,
  1376. "__editorExtras__": {},
  1377. "_parent": {
  1378. "__id__": 42
  1379. },
  1380. "_children": [],
  1381. "_active": true,
  1382. "_components": [
  1383. {
  1384. "__id__": 56
  1385. }
  1386. ],
  1387. "_prefab": {
  1388. "__id__": 58
  1389. },
  1390. "_lpos": {
  1391. "__type__": "cc.Vec3",
  1392. "x": 0,
  1393. "y": 58.37099999999998,
  1394. "z": 0
  1395. },
  1396. "_lrot": {
  1397. "__type__": "cc.Quat",
  1398. "x": 0,
  1399. "y": 0,
  1400. "z": 0,
  1401. "w": 1
  1402. },
  1403. "_lscale": {
  1404. "__type__": "cc.Vec3",
  1405. "x": 1,
  1406. "y": 1,
  1407. "z": 1
  1408. },
  1409. "_mobility": 0,
  1410. "_layer": 33554432,
  1411. "_euler": {
  1412. "__type__": "cc.Vec3",
  1413. "x": 0,
  1414. "y": 0,
  1415. "z": 0
  1416. },
  1417. "_id": ""
  1418. },
  1419. {
  1420. "__type__": "cc.UITransform",
  1421. "_name": "",
  1422. "_objFlags": 0,
  1423. "__editorExtras__": {},
  1424. "node": {
  1425. "__id__": 55
  1426. },
  1427. "_enabled": true,
  1428. "__prefab": {
  1429. "__id__": 57
  1430. },
  1431. "_contentSize": {
  1432. "__type__": "cc.Size",
  1433. "width": 100,
  1434. "height": 100
  1435. },
  1436. "_anchorPoint": {
  1437. "__type__": "cc.Vec2",
  1438. "x": 0.5,
  1439. "y": 0.5
  1440. },
  1441. "_id": ""
  1442. },
  1443. {
  1444. "__type__": "cc.CompPrefabInfo",
  1445. "fileId": "46KLnscMlOk78vBu4zT/Za"
  1446. },
  1447. {
  1448. "__type__": "cc.PrefabInfo",
  1449. "root": {
  1450. "__id__": 1
  1451. },
  1452. "asset": {
  1453. "__id__": 0
  1454. },
  1455. "fileId": "9cz9CIn2VCXIYeydKIssnG",
  1456. "instance": null,
  1457. "targetOverrides": null,
  1458. "nestedPrefabInstanceRoots": null
  1459. },
  1460. {
  1461. "__type__": "cc.UITransform",
  1462. "_name": "",
  1463. "_objFlags": 0,
  1464. "__editorExtras__": {},
  1465. "node": {
  1466. "__id__": 42
  1467. },
  1468. "_enabled": true,
  1469. "__prefab": {
  1470. "__id__": 60
  1471. },
  1472. "_contentSize": {
  1473. "__type__": "cc.Size",
  1474. "width": 668,
  1475. "height": 385
  1476. },
  1477. "_anchorPoint": {
  1478. "__type__": "cc.Vec2",
  1479. "x": 0.5,
  1480. "y": 0.5
  1481. },
  1482. "_id": ""
  1483. },
  1484. {
  1485. "__type__": "cc.CompPrefabInfo",
  1486. "fileId": "30LKmnA5dJvpXo6L4uI1Q7"
  1487. },
  1488. {
  1489. "__type__": "cc.Sprite",
  1490. "_name": "",
  1491. "_objFlags": 0,
  1492. "__editorExtras__": {},
  1493. "node": {
  1494. "__id__": 42
  1495. },
  1496. "_enabled": true,
  1497. "__prefab": {
  1498. "__id__": 62
  1499. },
  1500. "_customMaterial": null,
  1501. "_srcBlendFactor": 2,
  1502. "_dstBlendFactor": 4,
  1503. "_color": {
  1504. "__type__": "cc.Color",
  1505. "r": 255,
  1506. "g": 255,
  1507. "b": 255,
  1508. "a": 255
  1509. },
  1510. "_spriteFrame": {
  1511. "__uuid__": "3e15eeb6-df20-467e-aa83-5f59e2762632@f9941",
  1512. "__expectedType__": "cc.SpriteFrame"
  1513. },
  1514. "_type": 1,
  1515. "_fillType": 0,
  1516. "_sizeMode": 0,
  1517. "_fillCenter": {
  1518. "__type__": "cc.Vec2",
  1519. "x": 0,
  1520. "y": 0
  1521. },
  1522. "_fillStart": 0,
  1523. "_fillRange": 0,
  1524. "_isTrimmedMode": true,
  1525. "_useGrayscale": false,
  1526. "_atlas": null,
  1527. "_id": ""
  1528. },
  1529. {
  1530. "__type__": "cc.CompPrefabInfo",
  1531. "fileId": "66e+o4KudGjo6Pm/LILqhl"
  1532. },
  1533. {
  1534. "__type__": "cc.PrefabInfo",
  1535. "root": {
  1536. "__id__": 1
  1537. },
  1538. "asset": {
  1539. "__id__": 0
  1540. },
  1541. "fileId": "efmZiM0rxFPYiSEAu1SyGr",
  1542. "instance": null,
  1543. "targetOverrides": null,
  1544. "nestedPrefabInstanceRoots": null
  1545. },
  1546. {
  1547. "__type__": "cc.Node",
  1548. "_name": "exp_bg",
  1549. "_objFlags": 0,
  1550. "__editorExtras__": {},
  1551. "_parent": {
  1552. "__id__": 35
  1553. },
  1554. "_children": [
  1555. {
  1556. "__id__": 65
  1557. },
  1558. {
  1559. "__id__": 71
  1560. },
  1561. {
  1562. "__id__": 77
  1563. },
  1564. {
  1565. "__id__": 83
  1566. },
  1567. {
  1568. "__id__": 89
  1569. },
  1570. {
  1571. "__id__": 95
  1572. },
  1573. {
  1574. "__id__": 109
  1575. },
  1576. {
  1577. "__id__": 115
  1578. }
  1579. ],
  1580. "_active": true,
  1581. "_components": [
  1582. {
  1583. "__id__": 135
  1584. },
  1585. {
  1586. "__id__": 137
  1587. }
  1588. ],
  1589. "_prefab": {
  1590. "__id__": 139
  1591. },
  1592. "_lpos": {
  1593. "__type__": "cc.Vec3",
  1594. "x": 0,
  1595. "y": 134,
  1596. "z": 0
  1597. },
  1598. "_lrot": {
  1599. "__type__": "cc.Quat",
  1600. "x": 0,
  1601. "y": 0,
  1602. "z": 0,
  1603. "w": 1
  1604. },
  1605. "_lscale": {
  1606. "__type__": "cc.Vec3",
  1607. "x": 1,
  1608. "y": 1,
  1609. "z": 1
  1610. },
  1611. "_mobility": 0,
  1612. "_layer": 33554432,
  1613. "_euler": {
  1614. "__type__": "cc.Vec3",
  1615. "x": 0,
  1616. "y": 0,
  1617. "z": 0
  1618. },
  1619. "_id": ""
  1620. },
  1621. {
  1622. "__type__": "cc.Node",
  1623. "_name": "now_level",
  1624. "_objFlags": 0,
  1625. "__editorExtras__": {},
  1626. "_parent": {
  1627. "__id__": 64
  1628. },
  1629. "_children": [],
  1630. "_active": true,
  1631. "_components": [
  1632. {
  1633. "__id__": 66
  1634. },
  1635. {
  1636. "__id__": 68
  1637. }
  1638. ],
  1639. "_prefab": {
  1640. "__id__": 70
  1641. },
  1642. "_lpos": {
  1643. "__type__": "cc.Vec3",
  1644. "x": -150,
  1645. "y": 50,
  1646. "z": 0
  1647. },
  1648. "_lrot": {
  1649. "__type__": "cc.Quat",
  1650. "x": 0,
  1651. "y": 0,
  1652. "z": 0,
  1653. "w": 1
  1654. },
  1655. "_lscale": {
  1656. "__type__": "cc.Vec3",
  1657. "x": 1,
  1658. "y": 1,
  1659. "z": 1
  1660. },
  1661. "_mobility": 0,
  1662. "_layer": 33554432,
  1663. "_euler": {
  1664. "__type__": "cc.Vec3",
  1665. "x": 0,
  1666. "y": 0,
  1667. "z": 0
  1668. },
  1669. "_id": ""
  1670. },
  1671. {
  1672. "__type__": "cc.UITransform",
  1673. "_name": "",
  1674. "_objFlags": 0,
  1675. "__editorExtras__": {},
  1676. "node": {
  1677. "__id__": 65
  1678. },
  1679. "_enabled": true,
  1680. "__prefab": {
  1681. "__id__": 67
  1682. },
  1683. "_contentSize": {
  1684. "__type__": "cc.Size",
  1685. "width": 69.58598327636719,
  1686. "height": 27.72
  1687. },
  1688. "_anchorPoint": {
  1689. "__type__": "cc.Vec2",
  1690. "x": 0.5,
  1691. "y": 0.5
  1692. },
  1693. "_id": ""
  1694. },
  1695. {
  1696. "__type__": "cc.CompPrefabInfo",
  1697. "fileId": "4aeV4NdxBJc5ThC/WDgjMc"
  1698. },
  1699. {
  1700. "__type__": "cc.Label",
  1701. "_name": "",
  1702. "_objFlags": 0,
  1703. "__editorExtras__": {},
  1704. "node": {
  1705. "__id__": 65
  1706. },
  1707. "_enabled": true,
  1708. "__prefab": {
  1709. "__id__": 69
  1710. },
  1711. "_customMaterial": null,
  1712. "_srcBlendFactor": 2,
  1713. "_dstBlendFactor": 4,
  1714. "_color": {
  1715. "__type__": "cc.Color",
  1716. "r": 138,
  1717. "g": 98,
  1718. "b": 48,
  1719. "a": 255
  1720. },
  1721. "_string": "Lv.999",
  1722. "_horizontalAlign": 1,
  1723. "_verticalAlign": 1,
  1724. "_actualFontSize": 22,
  1725. "_fontSize": 22,
  1726. "_fontFamily": "Arial",
  1727. "_lineHeight": 22,
  1728. "_overflow": 0,
  1729. "_enableWrapText": false,
  1730. "_font": {
  1731. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  1732. "__expectedType__": "cc.TTFFont"
  1733. },
  1734. "_isSystemFontUsed": false,
  1735. "_spacingX": 0,
  1736. "_isItalic": false,
  1737. "_isBold": true,
  1738. "_isUnderline": false,
  1739. "_underlineHeight": 2,
  1740. "_cacheMode": 0,
  1741. "_enableOutline": false,
  1742. "_outlineColor": {
  1743. "__type__": "cc.Color",
  1744. "r": 0,
  1745. "g": 0,
  1746. "b": 0,
  1747. "a": 255
  1748. },
  1749. "_outlineWidth": 3,
  1750. "_enableShadow": false,
  1751. "_shadowColor": {
  1752. "__type__": "cc.Color",
  1753. "r": 0,
  1754. "g": 0,
  1755. "b": 0,
  1756. "a": 255
  1757. },
  1758. "_shadowOffset": {
  1759. "__type__": "cc.Vec2",
  1760. "x": 2,
  1761. "y": 2
  1762. },
  1763. "_shadowBlur": 2,
  1764. "_id": ""
  1765. },
  1766. {
  1767. "__type__": "cc.CompPrefabInfo",
  1768. "fileId": "491484hYtChon7EHdLbPpf"
  1769. },
  1770. {
  1771. "__type__": "cc.PrefabInfo",
  1772. "root": {
  1773. "__id__": 1
  1774. },
  1775. "asset": {
  1776. "__id__": 0
  1777. },
  1778. "fileId": "703OLXfxJPU6ZZtRNkTKcc",
  1779. "instance": null,
  1780. "targetOverrides": null,
  1781. "nestedPrefabInstanceRoots": null
  1782. },
  1783. {
  1784. "__type__": "cc.Node",
  1785. "_name": "level_arrow",
  1786. "_objFlags": 0,
  1787. "__editorExtras__": {},
  1788. "_parent": {
  1789. "__id__": 64
  1790. },
  1791. "_children": [],
  1792. "_active": true,
  1793. "_components": [
  1794. {
  1795. "__id__": 72
  1796. },
  1797. {
  1798. "__id__": 74
  1799. }
  1800. ],
  1801. "_prefab": {
  1802. "__id__": 76
  1803. },
  1804. "_lpos": {
  1805. "__type__": "cc.Vec3",
  1806. "x": 0,
  1807. "y": 50,
  1808. "z": 0
  1809. },
  1810. "_lrot": {
  1811. "__type__": "cc.Quat",
  1812. "x": 0,
  1813. "y": 0,
  1814. "z": 0,
  1815. "w": 1
  1816. },
  1817. "_lscale": {
  1818. "__type__": "cc.Vec3",
  1819. "x": 0.5,
  1820. "y": 0.5,
  1821. "z": 1
  1822. },
  1823. "_mobility": 0,
  1824. "_layer": 33554432,
  1825. "_euler": {
  1826. "__type__": "cc.Vec3",
  1827. "x": 0,
  1828. "y": 0,
  1829. "z": 0
  1830. },
  1831. "_id": ""
  1832. },
  1833. {
  1834. "__type__": "cc.UITransform",
  1835. "_name": "",
  1836. "_objFlags": 0,
  1837. "__editorExtras__": {},
  1838. "node": {
  1839. "__id__": 71
  1840. },
  1841. "_enabled": true,
  1842. "__prefab": {
  1843. "__id__": 73
  1844. },
  1845. "_contentSize": {
  1846. "__type__": "cc.Size",
  1847. "width": 54,
  1848. "height": 44
  1849. },
  1850. "_anchorPoint": {
  1851. "__type__": "cc.Vec2",
  1852. "x": 0.5,
  1853. "y": 0.5
  1854. },
  1855. "_id": ""
  1856. },
  1857. {
  1858. "__type__": "cc.CompPrefabInfo",
  1859. "fileId": "fd2JEb8NVLdbbHPOTdiCUD"
  1860. },
  1861. {
  1862. "__type__": "cc.Sprite",
  1863. "_name": "",
  1864. "_objFlags": 0,
  1865. "__editorExtras__": {},
  1866. "node": {
  1867. "__id__": 71
  1868. },
  1869. "_enabled": true,
  1870. "__prefab": {
  1871. "__id__": 75
  1872. },
  1873. "_customMaterial": null,
  1874. "_srcBlendFactor": 2,
  1875. "_dstBlendFactor": 4,
  1876. "_color": {
  1877. "__type__": "cc.Color",
  1878. "r": 255,
  1879. "g": 255,
  1880. "b": 255,
  1881. "a": 255
  1882. },
  1883. "_spriteFrame": {
  1884. "__uuid__": "3e4fd2a8-00c7-4ee8-84eb-7f1290e1acb5@f9941",
  1885. "__expectedType__": "cc.SpriteFrame"
  1886. },
  1887. "_type": 0,
  1888. "_fillType": 0,
  1889. "_sizeMode": 1,
  1890. "_fillCenter": {
  1891. "__type__": "cc.Vec2",
  1892. "x": 0,
  1893. "y": 0
  1894. },
  1895. "_fillStart": 0,
  1896. "_fillRange": 0,
  1897. "_isTrimmedMode": true,
  1898. "_useGrayscale": false,
  1899. "_atlas": null,
  1900. "_id": ""
  1901. },
  1902. {
  1903. "__type__": "cc.CompPrefabInfo",
  1904. "fileId": "cel0ulB9VD/owjMThEoNx6"
  1905. },
  1906. {
  1907. "__type__": "cc.PrefabInfo",
  1908. "root": {
  1909. "__id__": 1
  1910. },
  1911. "asset": {
  1912. "__id__": 0
  1913. },
  1914. "fileId": "878U5JQlJCHKvkPfL4nNVa",
  1915. "instance": null,
  1916. "targetOverrides": null,
  1917. "nestedPrefabInstanceRoots": null
  1918. },
  1919. {
  1920. "__type__": "cc.Node",
  1921. "_name": "next_level",
  1922. "_objFlags": 0,
  1923. "__editorExtras__": {},
  1924. "_parent": {
  1925. "__id__": 64
  1926. },
  1927. "_children": [],
  1928. "_active": true,
  1929. "_components": [
  1930. {
  1931. "__id__": 78
  1932. },
  1933. {
  1934. "__id__": 80
  1935. }
  1936. ],
  1937. "_prefab": {
  1938. "__id__": 82
  1939. },
  1940. "_lpos": {
  1941. "__type__": "cc.Vec3",
  1942. "x": 150,
  1943. "y": 50,
  1944. "z": 0
  1945. },
  1946. "_lrot": {
  1947. "__type__": "cc.Quat",
  1948. "x": 0,
  1949. "y": 0,
  1950. "z": 0,
  1951. "w": 1
  1952. },
  1953. "_lscale": {
  1954. "__type__": "cc.Vec3",
  1955. "x": 1,
  1956. "y": 1,
  1957. "z": 1
  1958. },
  1959. "_mobility": 0,
  1960. "_layer": 33554432,
  1961. "_euler": {
  1962. "__type__": "cc.Vec3",
  1963. "x": 0,
  1964. "y": 0,
  1965. "z": 0
  1966. },
  1967. "_id": ""
  1968. },
  1969. {
  1970. "__type__": "cc.UITransform",
  1971. "_name": "",
  1972. "_objFlags": 0,
  1973. "__editorExtras__": {},
  1974. "node": {
  1975. "__id__": 77
  1976. },
  1977. "_enabled": true,
  1978. "__prefab": {
  1979. "__id__": 79
  1980. },
  1981. "_contentSize": {
  1982. "__type__": "cc.Size",
  1983. "width": 69.58598327636719,
  1984. "height": 27.72
  1985. },
  1986. "_anchorPoint": {
  1987. "__type__": "cc.Vec2",
  1988. "x": 0.5,
  1989. "y": 0.5
  1990. },
  1991. "_id": ""
  1992. },
  1993. {
  1994. "__type__": "cc.CompPrefabInfo",
  1995. "fileId": "d2dPXM7jpI4Jeu+CGEblqe"
  1996. },
  1997. {
  1998. "__type__": "cc.Label",
  1999. "_name": "",
  2000. "_objFlags": 0,
  2001. "__editorExtras__": {},
  2002. "node": {
  2003. "__id__": 77
  2004. },
  2005. "_enabled": true,
  2006. "__prefab": {
  2007. "__id__": 81
  2008. },
  2009. "_customMaterial": null,
  2010. "_srcBlendFactor": 2,
  2011. "_dstBlendFactor": 4,
  2012. "_color": {
  2013. "__type__": "cc.Color",
  2014. "r": 138,
  2015. "g": 98,
  2016. "b": 48,
  2017. "a": 255
  2018. },
  2019. "_string": "Lv.999",
  2020. "_horizontalAlign": 1,
  2021. "_verticalAlign": 1,
  2022. "_actualFontSize": 22,
  2023. "_fontSize": 22,
  2024. "_fontFamily": "Arial",
  2025. "_lineHeight": 22,
  2026. "_overflow": 0,
  2027. "_enableWrapText": false,
  2028. "_font": {
  2029. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2030. "__expectedType__": "cc.TTFFont"
  2031. },
  2032. "_isSystemFontUsed": false,
  2033. "_spacingX": 0,
  2034. "_isItalic": false,
  2035. "_isBold": true,
  2036. "_isUnderline": false,
  2037. "_underlineHeight": 2,
  2038. "_cacheMode": 0,
  2039. "_enableOutline": false,
  2040. "_outlineColor": {
  2041. "__type__": "cc.Color",
  2042. "r": 0,
  2043. "g": 0,
  2044. "b": 0,
  2045. "a": 255
  2046. },
  2047. "_outlineWidth": 3,
  2048. "_enableShadow": false,
  2049. "_shadowColor": {
  2050. "__type__": "cc.Color",
  2051. "r": 0,
  2052. "g": 0,
  2053. "b": 0,
  2054. "a": 255
  2055. },
  2056. "_shadowOffset": {
  2057. "__type__": "cc.Vec2",
  2058. "x": 2,
  2059. "y": 2
  2060. },
  2061. "_shadowBlur": 2,
  2062. "_id": ""
  2063. },
  2064. {
  2065. "__type__": "cc.CompPrefabInfo",
  2066. "fileId": "49udBAXy5M8Jgp40MVxl6u"
  2067. },
  2068. {
  2069. "__type__": "cc.PrefabInfo",
  2070. "root": {
  2071. "__id__": 1
  2072. },
  2073. "asset": {
  2074. "__id__": 0
  2075. },
  2076. "fileId": "7dzO37qgtObpllgXZVEaNP",
  2077. "instance": null,
  2078. "targetOverrides": null,
  2079. "nestedPrefabInstanceRoots": null
  2080. },
  2081. {
  2082. "__type__": "cc.Node",
  2083. "_name": "now_attr",
  2084. "_objFlags": 0,
  2085. "__editorExtras__": {},
  2086. "_parent": {
  2087. "__id__": 64
  2088. },
  2089. "_children": [],
  2090. "_active": true,
  2091. "_components": [
  2092. {
  2093. "__id__": 84
  2094. },
  2095. {
  2096. "__id__": 86
  2097. }
  2098. ],
  2099. "_prefab": {
  2100. "__id__": 88
  2101. },
  2102. "_lpos": {
  2103. "__type__": "cc.Vec3",
  2104. "x": -150,
  2105. "y": 0,
  2106. "z": 0
  2107. },
  2108. "_lrot": {
  2109. "__type__": "cc.Quat",
  2110. "x": 0,
  2111. "y": 0,
  2112. "z": 0,
  2113. "w": 1
  2114. },
  2115. "_lscale": {
  2116. "__type__": "cc.Vec3",
  2117. "x": 1,
  2118. "y": 1,
  2119. "z": 1
  2120. },
  2121. "_mobility": 0,
  2122. "_layer": 33554432,
  2123. "_euler": {
  2124. "__type__": "cc.Vec3",
  2125. "x": 0,
  2126. "y": 0,
  2127. "z": 0
  2128. },
  2129. "_id": ""
  2130. },
  2131. {
  2132. "__type__": "cc.UITransform",
  2133. "_name": "",
  2134. "_objFlags": 0,
  2135. "__editorExtras__": {},
  2136. "node": {
  2137. "__id__": 83
  2138. },
  2139. "_enabled": true,
  2140. "__prefab": {
  2141. "__id__": 85
  2142. },
  2143. "_contentSize": {
  2144. "__type__": "cc.Size",
  2145. "width": 161.08070373535156,
  2146. "height": 27.72
  2147. },
  2148. "_anchorPoint": {
  2149. "__type__": "cc.Vec2",
  2150. "x": 0.5,
  2151. "y": 0.5
  2152. },
  2153. "_id": ""
  2154. },
  2155. {
  2156. "__type__": "cc.CompPrefabInfo",
  2157. "fileId": "4bIYxF4eVForqPWGC6m/Le"
  2158. },
  2159. {
  2160. "__type__": "cc.Label",
  2161. "_name": "",
  2162. "_objFlags": 0,
  2163. "__editorExtras__": {},
  2164. "node": {
  2165. "__id__": 83
  2166. },
  2167. "_enabled": true,
  2168. "__prefab": {
  2169. "__id__": 87
  2170. },
  2171. "_customMaterial": null,
  2172. "_srcBlendFactor": 2,
  2173. "_dstBlendFactor": 4,
  2174. "_color": {
  2175. "__type__": "cc.Color",
  2176. "r": 138,
  2177. "g": 98,
  2178. "b": 48,
  2179. "a": 255
  2180. },
  2181. "_string": "攻击 +999.999k",
  2182. "_horizontalAlign": 1,
  2183. "_verticalAlign": 1,
  2184. "_actualFontSize": 22,
  2185. "_fontSize": 22,
  2186. "_fontFamily": "Arial",
  2187. "_lineHeight": 22,
  2188. "_overflow": 0,
  2189. "_enableWrapText": false,
  2190. "_font": {
  2191. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2192. "__expectedType__": "cc.TTFFont"
  2193. },
  2194. "_isSystemFontUsed": false,
  2195. "_spacingX": 0,
  2196. "_isItalic": false,
  2197. "_isBold": true,
  2198. "_isUnderline": false,
  2199. "_underlineHeight": 2,
  2200. "_cacheMode": 0,
  2201. "_enableOutline": false,
  2202. "_outlineColor": {
  2203. "__type__": "cc.Color",
  2204. "r": 0,
  2205. "g": 0,
  2206. "b": 0,
  2207. "a": 255
  2208. },
  2209. "_outlineWidth": 3,
  2210. "_enableShadow": false,
  2211. "_shadowColor": {
  2212. "__type__": "cc.Color",
  2213. "r": 0,
  2214. "g": 0,
  2215. "b": 0,
  2216. "a": 255
  2217. },
  2218. "_shadowOffset": {
  2219. "__type__": "cc.Vec2",
  2220. "x": 2,
  2221. "y": 2
  2222. },
  2223. "_shadowBlur": 2,
  2224. "_id": ""
  2225. },
  2226. {
  2227. "__type__": "cc.CompPrefabInfo",
  2228. "fileId": "6d+GlWXA1Ew4zVDHpqgIGb"
  2229. },
  2230. {
  2231. "__type__": "cc.PrefabInfo",
  2232. "root": {
  2233. "__id__": 1
  2234. },
  2235. "asset": {
  2236. "__id__": 0
  2237. },
  2238. "fileId": "bd3AhFPGtHf6ery5wapxrc",
  2239. "instance": null,
  2240. "targetOverrides": null,
  2241. "nestedPrefabInstanceRoots": null
  2242. },
  2243. {
  2244. "__type__": "cc.Node",
  2245. "_name": "attr_arrow",
  2246. "_objFlags": 0,
  2247. "__editorExtras__": {},
  2248. "_parent": {
  2249. "__id__": 64
  2250. },
  2251. "_children": [],
  2252. "_active": true,
  2253. "_components": [
  2254. {
  2255. "__id__": 90
  2256. },
  2257. {
  2258. "__id__": 92
  2259. }
  2260. ],
  2261. "_prefab": {
  2262. "__id__": 94
  2263. },
  2264. "_lpos": {
  2265. "__type__": "cc.Vec3",
  2266. "x": 0,
  2267. "y": 0,
  2268. "z": 0
  2269. },
  2270. "_lrot": {
  2271. "__type__": "cc.Quat",
  2272. "x": 0,
  2273. "y": 0,
  2274. "z": 0,
  2275. "w": 1
  2276. },
  2277. "_lscale": {
  2278. "__type__": "cc.Vec3",
  2279. "x": 0.5,
  2280. "y": 0.5,
  2281. "z": 1
  2282. },
  2283. "_mobility": 0,
  2284. "_layer": 33554432,
  2285. "_euler": {
  2286. "__type__": "cc.Vec3",
  2287. "x": 0,
  2288. "y": 0,
  2289. "z": 0
  2290. },
  2291. "_id": ""
  2292. },
  2293. {
  2294. "__type__": "cc.UITransform",
  2295. "_name": "",
  2296. "_objFlags": 0,
  2297. "__editorExtras__": {},
  2298. "node": {
  2299. "__id__": 89
  2300. },
  2301. "_enabled": true,
  2302. "__prefab": {
  2303. "__id__": 91
  2304. },
  2305. "_contentSize": {
  2306. "__type__": "cc.Size",
  2307. "width": 54,
  2308. "height": 44
  2309. },
  2310. "_anchorPoint": {
  2311. "__type__": "cc.Vec2",
  2312. "x": 0.5,
  2313. "y": 0.5
  2314. },
  2315. "_id": ""
  2316. },
  2317. {
  2318. "__type__": "cc.CompPrefabInfo",
  2319. "fileId": "b5UU2E9QtNFYM/7fXnnyLQ"
  2320. },
  2321. {
  2322. "__type__": "cc.Sprite",
  2323. "_name": "",
  2324. "_objFlags": 0,
  2325. "__editorExtras__": {},
  2326. "node": {
  2327. "__id__": 89
  2328. },
  2329. "_enabled": true,
  2330. "__prefab": {
  2331. "__id__": 93
  2332. },
  2333. "_customMaterial": null,
  2334. "_srcBlendFactor": 2,
  2335. "_dstBlendFactor": 4,
  2336. "_color": {
  2337. "__type__": "cc.Color",
  2338. "r": 255,
  2339. "g": 255,
  2340. "b": 255,
  2341. "a": 255
  2342. },
  2343. "_spriteFrame": {
  2344. "__uuid__": "3e4fd2a8-00c7-4ee8-84eb-7f1290e1acb5@f9941",
  2345. "__expectedType__": "cc.SpriteFrame"
  2346. },
  2347. "_type": 0,
  2348. "_fillType": 0,
  2349. "_sizeMode": 1,
  2350. "_fillCenter": {
  2351. "__type__": "cc.Vec2",
  2352. "x": 0,
  2353. "y": 0
  2354. },
  2355. "_fillStart": 0,
  2356. "_fillRange": 0,
  2357. "_isTrimmedMode": true,
  2358. "_useGrayscale": false,
  2359. "_atlas": null,
  2360. "_id": ""
  2361. },
  2362. {
  2363. "__type__": "cc.CompPrefabInfo",
  2364. "fileId": "1bunCDtHNAD6CsIoYftPFg"
  2365. },
  2366. {
  2367. "__type__": "cc.PrefabInfo",
  2368. "root": {
  2369. "__id__": 1
  2370. },
  2371. "asset": {
  2372. "__id__": 0
  2373. },
  2374. "fileId": "e3+Nn5MsNCLLMzDI7RIRxk",
  2375. "instance": null,
  2376. "targetOverrides": null,
  2377. "nestedPrefabInstanceRoots": null
  2378. },
  2379. {
  2380. "__type__": "cc.Node",
  2381. "_name": "next_attr",
  2382. "_objFlags": 0,
  2383. "__editorExtras__": {},
  2384. "_parent": {
  2385. "__id__": 64
  2386. },
  2387. "_children": [
  2388. {
  2389. "__id__": 96
  2390. }
  2391. ],
  2392. "_active": true,
  2393. "_components": [
  2394. {
  2395. "__id__": 104
  2396. },
  2397. {
  2398. "__id__": 106
  2399. }
  2400. ],
  2401. "_prefab": {
  2402. "__id__": 108
  2403. },
  2404. "_lpos": {
  2405. "__type__": "cc.Vec3",
  2406. "x": 150,
  2407. "y": 0,
  2408. "z": 0
  2409. },
  2410. "_lrot": {
  2411. "__type__": "cc.Quat",
  2412. "x": 0,
  2413. "y": 0,
  2414. "z": 0,
  2415. "w": 1
  2416. },
  2417. "_lscale": {
  2418. "__type__": "cc.Vec3",
  2419. "x": 1,
  2420. "y": 1,
  2421. "z": 1
  2422. },
  2423. "_mobility": 0,
  2424. "_layer": 33554432,
  2425. "_euler": {
  2426. "__type__": "cc.Vec3",
  2427. "x": 0,
  2428. "y": 0,
  2429. "z": 0
  2430. },
  2431. "_id": ""
  2432. },
  2433. {
  2434. "__type__": "cc.Node",
  2435. "_name": "add_tx",
  2436. "_objFlags": 0,
  2437. "__editorExtras__": {},
  2438. "_parent": {
  2439. "__id__": 95
  2440. },
  2441. "_children": [],
  2442. "_active": true,
  2443. "_components": [
  2444. {
  2445. "__id__": 97
  2446. },
  2447. {
  2448. "__id__": 99
  2449. },
  2450. {
  2451. "__id__": 101
  2452. }
  2453. ],
  2454. "_prefab": {
  2455. "__id__": 103
  2456. },
  2457. "_lpos": {
  2458. "__type__": "cc.Vec3",
  2459. "x": 56.836402893066406,
  2460. "y": 0,
  2461. "z": 0
  2462. },
  2463. "_lrot": {
  2464. "__type__": "cc.Quat",
  2465. "x": 0,
  2466. "y": 0,
  2467. "z": 0,
  2468. "w": 1
  2469. },
  2470. "_lscale": {
  2471. "__type__": "cc.Vec3",
  2472. "x": 1,
  2473. "y": 1,
  2474. "z": 1
  2475. },
  2476. "_mobility": 0,
  2477. "_layer": 33554432,
  2478. "_euler": {
  2479. "__type__": "cc.Vec3",
  2480. "x": 0,
  2481. "y": 0,
  2482. "z": 0
  2483. },
  2484. "_id": ""
  2485. },
  2486. {
  2487. "__type__": "cc.UITransform",
  2488. "_name": "",
  2489. "_objFlags": 0,
  2490. "__editorExtras__": {},
  2491. "node": {
  2492. "__id__": 96
  2493. },
  2494. "_enabled": true,
  2495. "__prefab": {
  2496. "__id__": 98
  2497. },
  2498. "_contentSize": {
  2499. "__type__": "cc.Size",
  2500. "width": 73.70394897460938,
  2501. "height": 30.240000000000002
  2502. },
  2503. "_anchorPoint": {
  2504. "__type__": "cc.Vec2",
  2505. "x": 0,
  2506. "y": 0.5
  2507. },
  2508. "_id": ""
  2509. },
  2510. {
  2511. "__type__": "cc.CompPrefabInfo",
  2512. "fileId": "1ejQ1+4MFFFYf6l3GZY+6c"
  2513. },
  2514. {
  2515. "__type__": "cc.Label",
  2516. "_name": "",
  2517. "_objFlags": 0,
  2518. "__editorExtras__": {},
  2519. "node": {
  2520. "__id__": 96
  2521. },
  2522. "_enabled": true,
  2523. "__prefab": {
  2524. "__id__": 100
  2525. },
  2526. "_customMaterial": null,
  2527. "_srcBlendFactor": 2,
  2528. "_dstBlendFactor": 4,
  2529. "_color": {
  2530. "__type__": "cc.Color",
  2531. "r": 102,
  2532. "g": 210,
  2533. "b": 81,
  2534. "a": 255
  2535. },
  2536. "_string": "(+999)",
  2537. "_horizontalAlign": 0,
  2538. "_verticalAlign": 1,
  2539. "_actualFontSize": 24,
  2540. "_fontSize": 24,
  2541. "_fontFamily": "Arial",
  2542. "_lineHeight": 24,
  2543. "_overflow": 2,
  2544. "_enableWrapText": false,
  2545. "_font": {
  2546. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2547. "__expectedType__": "cc.TTFFont"
  2548. },
  2549. "_isSystemFontUsed": false,
  2550. "_spacingX": 0,
  2551. "_isItalic": false,
  2552. "_isBold": true,
  2553. "_isUnderline": false,
  2554. "_underlineHeight": 2,
  2555. "_cacheMode": 0,
  2556. "_enableOutline": false,
  2557. "_outlineColor": {
  2558. "__type__": "cc.Color",
  2559. "r": 0,
  2560. "g": 0,
  2561. "b": 0,
  2562. "a": 255
  2563. },
  2564. "_outlineWidth": 3,
  2565. "_enableShadow": false,
  2566. "_shadowColor": {
  2567. "__type__": "cc.Color",
  2568. "r": 0,
  2569. "g": 0,
  2570. "b": 0,
  2571. "a": 255
  2572. },
  2573. "_shadowOffset": {
  2574. "__type__": "cc.Vec2",
  2575. "x": 2,
  2576. "y": 2
  2577. },
  2578. "_shadowBlur": 2,
  2579. "_id": ""
  2580. },
  2581. {
  2582. "__type__": "cc.CompPrefabInfo",
  2583. "fileId": "46xdeYB7VDwIpTSK6ZVUYz"
  2584. },
  2585. {
  2586. "__type__": "cc.Widget",
  2587. "_name": "",
  2588. "_objFlags": 0,
  2589. "__editorExtras__": {},
  2590. "node": {
  2591. "__id__": 96
  2592. },
  2593. "_enabled": true,
  2594. "__prefab": {
  2595. "__id__": 102
  2596. },
  2597. "_alignFlags": 32,
  2598. "_target": null,
  2599. "_left": 44.17677307128906,
  2600. "_right": -50,
  2601. "_top": 0,
  2602. "_bottom": 0,
  2603. "_horizontalCenter": 0,
  2604. "_verticalCenter": 0,
  2605. "_isAbsLeft": true,
  2606. "_isAbsRight": true,
  2607. "_isAbsTop": true,
  2608. "_isAbsBottom": true,
  2609. "_isAbsHorizontalCenter": true,
  2610. "_isAbsVerticalCenter": true,
  2611. "_originalWidth": 116.9039306640625,
  2612. "_originalHeight": 0,
  2613. "_alignMode": 2,
  2614. "_lockFlags": 0,
  2615. "_id": ""
  2616. },
  2617. {
  2618. "__type__": "cc.CompPrefabInfo",
  2619. "fileId": "9fq3+jkGRLQoEK/4cxMEGC"
  2620. },
  2621. {
  2622. "__type__": "cc.PrefabInfo",
  2623. "root": {
  2624. "__id__": 1
  2625. },
  2626. "asset": {
  2627. "__id__": 0
  2628. },
  2629. "fileId": "15OFC+nOtFGK+jOFNgeng2",
  2630. "instance": null,
  2631. "targetOverrides": null,
  2632. "nestedPrefabInstanceRoots": null
  2633. },
  2634. {
  2635. "__type__": "cc.UITransform",
  2636. "_name": "",
  2637. "_objFlags": 0,
  2638. "__editorExtras__": {},
  2639. "node": {
  2640. "__id__": 95
  2641. },
  2642. "_enabled": true,
  2643. "__prefab": {
  2644. "__id__": 105
  2645. },
  2646. "_contentSize": {
  2647. "__type__": "cc.Size",
  2648. "width": 161.08070373535156,
  2649. "height": 27.72
  2650. },
  2651. "_anchorPoint": {
  2652. "__type__": "cc.Vec2",
  2653. "x": 0.5,
  2654. "y": 0.5
  2655. },
  2656. "_id": ""
  2657. },
  2658. {
  2659. "__type__": "cc.CompPrefabInfo",
  2660. "fileId": "a1261p1V5Es4B/SO4HwXy7"
  2661. },
  2662. {
  2663. "__type__": "cc.Label",
  2664. "_name": "",
  2665. "_objFlags": 0,
  2666. "__editorExtras__": {},
  2667. "node": {
  2668. "__id__": 95
  2669. },
  2670. "_enabled": true,
  2671. "__prefab": {
  2672. "__id__": 107
  2673. },
  2674. "_customMaterial": null,
  2675. "_srcBlendFactor": 2,
  2676. "_dstBlendFactor": 4,
  2677. "_color": {
  2678. "__type__": "cc.Color",
  2679. "r": 138,
  2680. "g": 98,
  2681. "b": 48,
  2682. "a": 255
  2683. },
  2684. "_string": "攻击 +999.999k",
  2685. "_horizontalAlign": 1,
  2686. "_verticalAlign": 1,
  2687. "_actualFontSize": 22,
  2688. "_fontSize": 22,
  2689. "_fontFamily": "Arial",
  2690. "_lineHeight": 22,
  2691. "_overflow": 0,
  2692. "_enableWrapText": false,
  2693. "_font": {
  2694. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2695. "__expectedType__": "cc.TTFFont"
  2696. },
  2697. "_isSystemFontUsed": false,
  2698. "_spacingX": 0,
  2699. "_isItalic": false,
  2700. "_isBold": true,
  2701. "_isUnderline": false,
  2702. "_underlineHeight": 2,
  2703. "_cacheMode": 0,
  2704. "_enableOutline": false,
  2705. "_outlineColor": {
  2706. "__type__": "cc.Color",
  2707. "r": 0,
  2708. "g": 0,
  2709. "b": 0,
  2710. "a": 255
  2711. },
  2712. "_outlineWidth": 3,
  2713. "_enableShadow": false,
  2714. "_shadowColor": {
  2715. "__type__": "cc.Color",
  2716. "r": 0,
  2717. "g": 0,
  2718. "b": 0,
  2719. "a": 255
  2720. },
  2721. "_shadowOffset": {
  2722. "__type__": "cc.Vec2",
  2723. "x": 2,
  2724. "y": 2
  2725. },
  2726. "_shadowBlur": 2,
  2727. "_id": ""
  2728. },
  2729. {
  2730. "__type__": "cc.CompPrefabInfo",
  2731. "fileId": "b7KgRj1AlPbIKnVojzSqDP"
  2732. },
  2733. {
  2734. "__type__": "cc.PrefabInfo",
  2735. "root": {
  2736. "__id__": 1
  2737. },
  2738. "asset": {
  2739. "__id__": 0
  2740. },
  2741. "fileId": "37r3+1MJVFGKENJU6g/ZMZ",
  2742. "instance": null,
  2743. "targetOverrides": null,
  2744. "nestedPrefabInstanceRoots": null
  2745. },
  2746. {
  2747. "__type__": "cc.Node",
  2748. "_name": "exp_title",
  2749. "_objFlags": 0,
  2750. "__editorExtras__": {},
  2751. "_parent": {
  2752. "__id__": 64
  2753. },
  2754. "_children": [],
  2755. "_active": true,
  2756. "_components": [
  2757. {
  2758. "__id__": 110
  2759. },
  2760. {
  2761. "__id__": 112
  2762. }
  2763. ],
  2764. "_prefab": {
  2765. "__id__": 114
  2766. },
  2767. "_lpos": {
  2768. "__type__": "cc.Vec3",
  2769. "x": -284.829,
  2770. "y": -50,
  2771. "z": 0
  2772. },
  2773. "_lrot": {
  2774. "__type__": "cc.Quat",
  2775. "x": 0,
  2776. "y": 0,
  2777. "z": 0,
  2778. "w": 1
  2779. },
  2780. "_lscale": {
  2781. "__type__": "cc.Vec3",
  2782. "x": 1,
  2783. "y": 1,
  2784. "z": 1
  2785. },
  2786. "_mobility": 0,
  2787. "_layer": 33554432,
  2788. "_euler": {
  2789. "__type__": "cc.Vec3",
  2790. "x": 0,
  2791. "y": 0,
  2792. "z": 0
  2793. },
  2794. "_id": ""
  2795. },
  2796. {
  2797. "__type__": "cc.UITransform",
  2798. "_name": "",
  2799. "_objFlags": 0,
  2800. "__editorExtras__": {},
  2801. "node": {
  2802. "__id__": 109
  2803. },
  2804. "_enabled": true,
  2805. "__prefab": {
  2806. "__id__": 111
  2807. },
  2808. "_contentSize": {
  2809. "__type__": "cc.Size",
  2810. "width": 66,
  2811. "height": 27.72
  2812. },
  2813. "_anchorPoint": {
  2814. "__type__": "cc.Vec2",
  2815. "x": 0,
  2816. "y": 0.5
  2817. },
  2818. "_id": ""
  2819. },
  2820. {
  2821. "__type__": "cc.CompPrefabInfo",
  2822. "fileId": "9e2xfDJjJACYcXVBEfSGoU"
  2823. },
  2824. {
  2825. "__type__": "cc.Label",
  2826. "_name": "",
  2827. "_objFlags": 0,
  2828. "__editorExtras__": {},
  2829. "node": {
  2830. "__id__": 109
  2831. },
  2832. "_enabled": true,
  2833. "__prefab": {
  2834. "__id__": 113
  2835. },
  2836. "_customMaterial": null,
  2837. "_srcBlendFactor": 2,
  2838. "_dstBlendFactor": 4,
  2839. "_color": {
  2840. "__type__": "cc.Color",
  2841. "r": 138,
  2842. "g": 98,
  2843. "b": 48,
  2844. "a": 255
  2845. },
  2846. "_string": "经验值",
  2847. "_horizontalAlign": 0,
  2848. "_verticalAlign": 1,
  2849. "_actualFontSize": 22,
  2850. "_fontSize": 22,
  2851. "_fontFamily": "Arial",
  2852. "_lineHeight": 22,
  2853. "_overflow": 0,
  2854. "_enableWrapText": false,
  2855. "_font": {
  2856. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2857. "__expectedType__": "cc.TTFFont"
  2858. },
  2859. "_isSystemFontUsed": false,
  2860. "_spacingX": 0,
  2861. "_isItalic": false,
  2862. "_isBold": true,
  2863. "_isUnderline": false,
  2864. "_underlineHeight": 2,
  2865. "_cacheMode": 0,
  2866. "_enableOutline": false,
  2867. "_outlineColor": {
  2868. "__type__": "cc.Color",
  2869. "r": 0,
  2870. "g": 0,
  2871. "b": 0,
  2872. "a": 255
  2873. },
  2874. "_outlineWidth": 3,
  2875. "_enableShadow": false,
  2876. "_shadowColor": {
  2877. "__type__": "cc.Color",
  2878. "r": 0,
  2879. "g": 0,
  2880. "b": 0,
  2881. "a": 255
  2882. },
  2883. "_shadowOffset": {
  2884. "__type__": "cc.Vec2",
  2885. "x": 2,
  2886. "y": 2
  2887. },
  2888. "_shadowBlur": 2,
  2889. "_id": ""
  2890. },
  2891. {
  2892. "__type__": "cc.CompPrefabInfo",
  2893. "fileId": "b58d1APPxAtZkZJa2wb3hC"
  2894. },
  2895. {
  2896. "__type__": "cc.PrefabInfo",
  2897. "root": {
  2898. "__id__": 1
  2899. },
  2900. "asset": {
  2901. "__id__": 0
  2902. },
  2903. "fileId": "40sd6p0nJHybjCLHaoD47U",
  2904. "instance": null,
  2905. "targetOverrides": null,
  2906. "nestedPrefabInstanceRoots": null
  2907. },
  2908. {
  2909. "__type__": "cc.Node",
  2910. "_name": "bar_bg",
  2911. "_objFlags": 0,
  2912. "__editorExtras__": {},
  2913. "_parent": {
  2914. "__id__": 64
  2915. },
  2916. "_children": [
  2917. {
  2918. "__id__": 116
  2919. },
  2920. {
  2921. "__id__": 122
  2922. }
  2923. ],
  2924. "_active": true,
  2925. "_components": [
  2926. {
  2927. "__id__": 128
  2928. },
  2929. {
  2930. "__id__": 130
  2931. },
  2932. {
  2933. "__id__": 132
  2934. }
  2935. ],
  2936. "_prefab": {
  2937. "__id__": 134
  2938. },
  2939. "_lpos": {
  2940. "__type__": "cc.Vec3",
  2941. "x": 30,
  2942. "y": -50,
  2943. "z": 0
  2944. },
  2945. "_lrot": {
  2946. "__type__": "cc.Quat",
  2947. "x": 0,
  2948. "y": 0,
  2949. "z": 0,
  2950. "w": 1
  2951. },
  2952. "_lscale": {
  2953. "__type__": "cc.Vec3",
  2954. "x": 1,
  2955. "y": 1,
  2956. "z": 1
  2957. },
  2958. "_mobility": 0,
  2959. "_layer": 33554432,
  2960. "_euler": {
  2961. "__type__": "cc.Vec3",
  2962. "x": 0,
  2963. "y": 0,
  2964. "z": 0
  2965. },
  2966. "_id": ""
  2967. },
  2968. {
  2969. "__type__": "cc.Node",
  2970. "_name": "bar",
  2971. "_objFlags": 0,
  2972. "__editorExtras__": {},
  2973. "_parent": {
  2974. "__id__": 115
  2975. },
  2976. "_children": [],
  2977. "_active": true,
  2978. "_components": [
  2979. {
  2980. "__id__": 117
  2981. },
  2982. {
  2983. "__id__": 119
  2984. }
  2985. ],
  2986. "_prefab": {
  2987. "__id__": 121
  2988. },
  2989. "_lpos": {
  2990. "__type__": "cc.Vec3",
  2991. "x": -150,
  2992. "y": 0,
  2993. "z": 0
  2994. },
  2995. "_lrot": {
  2996. "__type__": "cc.Quat",
  2997. "x": 0,
  2998. "y": 0,
  2999. "z": 0,
  3000. "w": 1
  3001. },
  3002. "_lscale": {
  3003. "__type__": "cc.Vec3",
  3004. "x": 1,
  3005. "y": 1,
  3006. "z": 1
  3007. },
  3008. "_mobility": 0,
  3009. "_layer": 33554432,
  3010. "_euler": {
  3011. "__type__": "cc.Vec3",
  3012. "x": 0,
  3013. "y": 0,
  3014. "z": 0
  3015. },
  3016. "_id": ""
  3017. },
  3018. {
  3019. "__type__": "cc.UITransform",
  3020. "_name": "",
  3021. "_objFlags": 0,
  3022. "__editorExtras__": {},
  3023. "node": {
  3024. "__id__": 116
  3025. },
  3026. "_enabled": true,
  3027. "__prefab": {
  3028. "__id__": 118
  3029. },
  3030. "_contentSize": {
  3031. "__type__": "cc.Size",
  3032. "width": 300,
  3033. "height": 25
  3034. },
  3035. "_anchorPoint": {
  3036. "__type__": "cc.Vec2",
  3037. "x": 0,
  3038. "y": 0.5
  3039. },
  3040. "_id": ""
  3041. },
  3042. {
  3043. "__type__": "cc.CompPrefabInfo",
  3044. "fileId": "fcQqefMhhE9qukaRFXLPss"
  3045. },
  3046. {
  3047. "__type__": "cc.Sprite",
  3048. "_name": "",
  3049. "_objFlags": 0,
  3050. "__editorExtras__": {},
  3051. "node": {
  3052. "__id__": 116
  3053. },
  3054. "_enabled": true,
  3055. "__prefab": {
  3056. "__id__": 120
  3057. },
  3058. "_customMaterial": null,
  3059. "_srcBlendFactor": 2,
  3060. "_dstBlendFactor": 4,
  3061. "_color": {
  3062. "__type__": "cc.Color",
  3063. "r": 255,
  3064. "g": 255,
  3065. "b": 255,
  3066. "a": 255
  3067. },
  3068. "_spriteFrame": {
  3069. "__uuid__": "83b42839-9b87-4bbc-8224-b3cdae7ce206@f9941",
  3070. "__expectedType__": "cc.SpriteFrame"
  3071. },
  3072. "_type": 0,
  3073. "_fillType": 0,
  3074. "_sizeMode": 0,
  3075. "_fillCenter": {
  3076. "__type__": "cc.Vec2",
  3077. "x": 0,
  3078. "y": 0
  3079. },
  3080. "_fillStart": 0,
  3081. "_fillRange": 0,
  3082. "_isTrimmedMode": true,
  3083. "_useGrayscale": false,
  3084. "_atlas": null,
  3085. "_id": ""
  3086. },
  3087. {
  3088. "__type__": "cc.CompPrefabInfo",
  3089. "fileId": "8ecGp3I4lKs5Ul1F7pZ629"
  3090. },
  3091. {
  3092. "__type__": "cc.PrefabInfo",
  3093. "root": {
  3094. "__id__": 1
  3095. },
  3096. "asset": {
  3097. "__id__": 0
  3098. },
  3099. "fileId": "21RrIq73tAvI6AYdFWk7BZ",
  3100. "instance": null,
  3101. "targetOverrides": null,
  3102. "nestedPrefabInstanceRoots": null
  3103. },
  3104. {
  3105. "__type__": "cc.Node",
  3106. "_name": "bar_tx",
  3107. "_objFlags": 0,
  3108. "__editorExtras__": {},
  3109. "_parent": {
  3110. "__id__": 115
  3111. },
  3112. "_children": [],
  3113. "_active": true,
  3114. "_components": [
  3115. {
  3116. "__id__": 123
  3117. },
  3118. {
  3119. "__id__": 125
  3120. }
  3121. ],
  3122. "_prefab": {
  3123. "__id__": 127
  3124. },
  3125. "_lpos": {
  3126. "__type__": "cc.Vec3",
  3127. "x": 0,
  3128. "y": 0,
  3129. "z": 0
  3130. },
  3131. "_lrot": {
  3132. "__type__": "cc.Quat",
  3133. "x": 0,
  3134. "y": 0,
  3135. "z": 0,
  3136. "w": 1
  3137. },
  3138. "_lscale": {
  3139. "__type__": "cc.Vec3",
  3140. "x": 1,
  3141. "y": 1,
  3142. "z": 1
  3143. },
  3144. "_mobility": 0,
  3145. "_layer": 33554432,
  3146. "_euler": {
  3147. "__type__": "cc.Vec3",
  3148. "x": 0,
  3149. "y": 0,
  3150. "z": 0
  3151. },
  3152. "_id": ""
  3153. },
  3154. {
  3155. "__type__": "cc.UITransform",
  3156. "_name": "",
  3157. "_objFlags": 0,
  3158. "__editorExtras__": {},
  3159. "node": {
  3160. "__id__": 122
  3161. },
  3162. "_enabled": true,
  3163. "__prefab": {
  3164. "__id__": 124
  3165. },
  3166. "_contentSize": {
  3167. "__type__": "cc.Size",
  3168. "width": 88,
  3169. "height": 31.2
  3170. },
  3171. "_anchorPoint": {
  3172. "__type__": "cc.Vec2",
  3173. "x": 0.5,
  3174. "y": 0.5
  3175. },
  3176. "_id": ""
  3177. },
  3178. {
  3179. "__type__": "cc.CompPrefabInfo",
  3180. "fileId": "66J9BJijxOoYV+aqz1B57M"
  3181. },
  3182. {
  3183. "__type__": "cc.Label",
  3184. "_name": "",
  3185. "_objFlags": 0,
  3186. "__editorExtras__": {},
  3187. "node": {
  3188. "__id__": 122
  3189. },
  3190. "_enabled": true,
  3191. "__prefab": {
  3192. "__id__": 126
  3193. },
  3194. "_customMaterial": null,
  3195. "_srcBlendFactor": 2,
  3196. "_dstBlendFactor": 4,
  3197. "_color": {
  3198. "__type__": "cc.Color",
  3199. "r": 255,
  3200. "g": 255,
  3201. "b": 255,
  3202. "a": 255
  3203. },
  3204. "_string": "100/100",
  3205. "_horizontalAlign": 1,
  3206. "_verticalAlign": 1,
  3207. "_actualFontSize": 20,
  3208. "_fontSize": 20,
  3209. "_fontFamily": "Arial",
  3210. "_lineHeight": 20,
  3211. "_overflow": 0,
  3212. "_enableWrapText": false,
  3213. "_font": {
  3214. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  3215. "__expectedType__": "cc.TTFFont"
  3216. },
  3217. "_isSystemFontUsed": false,
  3218. "_spacingX": 0,
  3219. "_isItalic": false,
  3220. "_isBold": true,
  3221. "_isUnderline": false,
  3222. "_underlineHeight": 2,
  3223. "_cacheMode": 0,
  3224. "_enableOutline": true,
  3225. "_outlineColor": {
  3226. "__type__": "cc.Color",
  3227. "r": 0,
  3228. "g": 0,
  3229. "b": 0,
  3230. "a": 255
  3231. },
  3232. "_outlineWidth": 3,
  3233. "_enableShadow": false,
  3234. "_shadowColor": {
  3235. "__type__": "cc.Color",
  3236. "r": 0,
  3237. "g": 0,
  3238. "b": 0,
  3239. "a": 255
  3240. },
  3241. "_shadowOffset": {
  3242. "__type__": "cc.Vec2",
  3243. "x": 2,
  3244. "y": 2
  3245. },
  3246. "_shadowBlur": 2,
  3247. "_id": ""
  3248. },
  3249. {
  3250. "__type__": "cc.CompPrefabInfo",
  3251. "fileId": "26pg3d2pRFiIBAgeXNoX5W"
  3252. },
  3253. {
  3254. "__type__": "cc.PrefabInfo",
  3255. "root": {
  3256. "__id__": 1
  3257. },
  3258. "asset": {
  3259. "__id__": 0
  3260. },
  3261. "fileId": "81BB8wgyVN2JigdoEXdIWS",
  3262. "instance": null,
  3263. "targetOverrides": null,
  3264. "nestedPrefabInstanceRoots": null
  3265. },
  3266. {
  3267. "__type__": "cc.UITransform",
  3268. "_name": "",
  3269. "_objFlags": 0,
  3270. "__editorExtras__": {},
  3271. "node": {
  3272. "__id__": 115
  3273. },
  3274. "_enabled": true,
  3275. "__prefab": {
  3276. "__id__": 129
  3277. },
  3278. "_contentSize": {
  3279. "__type__": "cc.Size",
  3280. "width": 304,
  3281. "height": 29
  3282. },
  3283. "_anchorPoint": {
  3284. "__type__": "cc.Vec2",
  3285. "x": 0.5,
  3286. "y": 0.5
  3287. },
  3288. "_id": ""
  3289. },
  3290. {
  3291. "__type__": "cc.CompPrefabInfo",
  3292. "fileId": "f0q0WITZ1EWaON7jyLnjLY"
  3293. },
  3294. {
  3295. "__type__": "cc.Sprite",
  3296. "_name": "",
  3297. "_objFlags": 0,
  3298. "__editorExtras__": {},
  3299. "node": {
  3300. "__id__": 115
  3301. },
  3302. "_enabled": true,
  3303. "__prefab": {
  3304. "__id__": 131
  3305. },
  3306. "_customMaterial": null,
  3307. "_srcBlendFactor": 2,
  3308. "_dstBlendFactor": 4,
  3309. "_color": {
  3310. "__type__": "cc.Color",
  3311. "r": 255,
  3312. "g": 255,
  3313. "b": 255,
  3314. "a": 255
  3315. },
  3316. "_spriteFrame": {
  3317. "__uuid__": "7e3c5a28-f0bc-4318-a354-cc413d89cc04@f9941",
  3318. "__expectedType__": "cc.SpriteFrame"
  3319. },
  3320. "_type": 1,
  3321. "_fillType": 0,
  3322. "_sizeMode": 0,
  3323. "_fillCenter": {
  3324. "__type__": "cc.Vec2",
  3325. "x": 0,
  3326. "y": 0
  3327. },
  3328. "_fillStart": 0,
  3329. "_fillRange": 0,
  3330. "_isTrimmedMode": true,
  3331. "_useGrayscale": false,
  3332. "_atlas": null,
  3333. "_id": ""
  3334. },
  3335. {
  3336. "__type__": "cc.CompPrefabInfo",
  3337. "fileId": "bcRrxrNlhN7qh4QfPEIPF5"
  3338. },
  3339. {
  3340. "__type__": "cc.ProgressBar",
  3341. "_name": "",
  3342. "_objFlags": 0,
  3343. "__editorExtras__": {},
  3344. "node": {
  3345. "__id__": 115
  3346. },
  3347. "_enabled": true,
  3348. "__prefab": {
  3349. "__id__": 133
  3350. },
  3351. "_barSprite": {
  3352. "__id__": 119
  3353. },
  3354. "_mode": 0,
  3355. "_totalLength": 300,
  3356. "_progress": 1,
  3357. "_reverse": false,
  3358. "_id": ""
  3359. },
  3360. {
  3361. "__type__": "cc.CompPrefabInfo",
  3362. "fileId": "d7/7D2zq1NlITkdgJHcGmG"
  3363. },
  3364. {
  3365. "__type__": "cc.PrefabInfo",
  3366. "root": {
  3367. "__id__": 1
  3368. },
  3369. "asset": {
  3370. "__id__": 0
  3371. },
  3372. "fileId": "dc4q7qBBhFt4N2IyEgv2CX",
  3373. "instance": null,
  3374. "targetOverrides": null,
  3375. "nestedPrefabInstanceRoots": null
  3376. },
  3377. {
  3378. "__type__": "cc.UITransform",
  3379. "_name": "",
  3380. "_objFlags": 0,
  3381. "__editorExtras__": {},
  3382. "node": {
  3383. "__id__": 64
  3384. },
  3385. "_enabled": true,
  3386. "__prefab": {
  3387. "__id__": 136
  3388. },
  3389. "_contentSize": {
  3390. "__type__": "cc.Size",
  3391. "width": 628,
  3392. "height": 160
  3393. },
  3394. "_anchorPoint": {
  3395. "__type__": "cc.Vec2",
  3396. "x": 0.5,
  3397. "y": 0.5
  3398. },
  3399. "_id": ""
  3400. },
  3401. {
  3402. "__type__": "cc.CompPrefabInfo",
  3403. "fileId": "24kmLpQNBFLKIBKmoWQrZ8"
  3404. },
  3405. {
  3406. "__type__": "cc.Sprite",
  3407. "_name": "",
  3408. "_objFlags": 0,
  3409. "__editorExtras__": {},
  3410. "node": {
  3411. "__id__": 64
  3412. },
  3413. "_enabled": true,
  3414. "__prefab": {
  3415. "__id__": 138
  3416. },
  3417. "_customMaterial": null,
  3418. "_srcBlendFactor": 2,
  3419. "_dstBlendFactor": 4,
  3420. "_color": {
  3421. "__type__": "cc.Color",
  3422. "r": 255,
  3423. "g": 255,
  3424. "b": 255,
  3425. "a": 255
  3426. },
  3427. "_spriteFrame": {
  3428. "__uuid__": "14b77576-3bb7-42e7-b2ae-637b2c376a4b@f9941",
  3429. "__expectedType__": "cc.SpriteFrame"
  3430. },
  3431. "_type": 1,
  3432. "_fillType": 0,
  3433. "_sizeMode": 0,
  3434. "_fillCenter": {
  3435. "__type__": "cc.Vec2",
  3436. "x": 0,
  3437. "y": 0
  3438. },
  3439. "_fillStart": 0,
  3440. "_fillRange": 0,
  3441. "_isTrimmedMode": true,
  3442. "_useGrayscale": false,
  3443. "_atlas": null,
  3444. "_id": ""
  3445. },
  3446. {
  3447. "__type__": "cc.CompPrefabInfo",
  3448. "fileId": "8bv43kPdpHOZcICdYTBe9A"
  3449. },
  3450. {
  3451. "__type__": "cc.PrefabInfo",
  3452. "root": {
  3453. "__id__": 1
  3454. },
  3455. "asset": {
  3456. "__id__": 0
  3457. },
  3458. "fileId": "d6WBLzsNBDC5fS2T51383F",
  3459. "instance": null,
  3460. "targetOverrides": null,
  3461. "nestedPrefabInstanceRoots": null
  3462. },
  3463. {
  3464. "__type__": "cc.Node",
  3465. "_name": "sv_bg",
  3466. "_objFlags": 0,
  3467. "__editorExtras__": {},
  3468. "_parent": {
  3469. "__id__": 35
  3470. },
  3471. "_children": [
  3472. {
  3473. "__id__": 141
  3474. }
  3475. ],
  3476. "_active": true,
  3477. "_components": [
  3478. {
  3479. "__id__": 166
  3480. },
  3481. {
  3482. "__id__": 168
  3483. }
  3484. ],
  3485. "_prefab": {
  3486. "__id__": 170
  3487. },
  3488. "_lpos": {
  3489. "__type__": "cc.Vec3",
  3490. "x": 0,
  3491. "y": -176,
  3492. "z": 0
  3493. },
  3494. "_lrot": {
  3495. "__type__": "cc.Quat",
  3496. "x": 0,
  3497. "y": 0,
  3498. "z": 0,
  3499. "w": 1
  3500. },
  3501. "_lscale": {
  3502. "__type__": "cc.Vec3",
  3503. "x": 1,
  3504. "y": 1,
  3505. "z": 1
  3506. },
  3507. "_mobility": 0,
  3508. "_layer": 33554432,
  3509. "_euler": {
  3510. "__type__": "cc.Vec3",
  3511. "x": 0,
  3512. "y": 0,
  3513. "z": 0
  3514. },
  3515. "_id": ""
  3516. },
  3517. {
  3518. "__type__": "cc.Node",
  3519. "_name": "sv",
  3520. "_objFlags": 0,
  3521. "__editorExtras__": {},
  3522. "_parent": {
  3523. "__id__": 140
  3524. },
  3525. "_children": [
  3526. {
  3527. "__id__": 142
  3528. }
  3529. ],
  3530. "_active": true,
  3531. "_components": [
  3532. {
  3533. "__id__": 156
  3534. },
  3535. {
  3536. "__id__": 158
  3537. },
  3538. {
  3539. "__id__": 160
  3540. }
  3541. ],
  3542. "_prefab": {
  3543. "__id__": 165
  3544. },
  3545. "_lpos": {
  3546. "__type__": "cc.Vec3",
  3547. "x": 0,
  3548. "y": 0,
  3549. "z": 0
  3550. },
  3551. "_lrot": {
  3552. "__type__": "cc.Quat",
  3553. "x": 0,
  3554. "y": 0,
  3555. "z": 0,
  3556. "w": 1
  3557. },
  3558. "_lscale": {
  3559. "__type__": "cc.Vec3",
  3560. "x": 1,
  3561. "y": 1,
  3562. "z": 1
  3563. },
  3564. "_mobility": 0,
  3565. "_layer": 33554432,
  3566. "_euler": {
  3567. "__type__": "cc.Vec3",
  3568. "x": 0,
  3569. "y": 0,
  3570. "z": 0
  3571. },
  3572. "_id": ""
  3573. },
  3574. {
  3575. "__type__": "cc.Node",
  3576. "_name": "view",
  3577. "_objFlags": 0,
  3578. "__editorExtras__": {},
  3579. "_parent": {
  3580. "__id__": 141
  3581. },
  3582. "_children": [
  3583. {
  3584. "__id__": 143
  3585. }
  3586. ],
  3587. "_active": true,
  3588. "_components": [
  3589. {
  3590. "__id__": 149
  3591. },
  3592. {
  3593. "__id__": 151
  3594. },
  3595. {
  3596. "__id__": 153
  3597. }
  3598. ],
  3599. "_prefab": {
  3600. "__id__": 155
  3601. },
  3602. "_lpos": {
  3603. "__type__": "cc.Vec3",
  3604. "x": 0,
  3605. "y": 188,
  3606. "z": 0
  3607. },
  3608. "_lrot": {
  3609. "__type__": "cc.Quat",
  3610. "x": 0,
  3611. "y": 0,
  3612. "z": 0,
  3613. "w": 1
  3614. },
  3615. "_lscale": {
  3616. "__type__": "cc.Vec3",
  3617. "x": 1,
  3618. "y": 1,
  3619. "z": 1
  3620. },
  3621. "_mobility": 0,
  3622. "_layer": 33554432,
  3623. "_euler": {
  3624. "__type__": "cc.Vec3",
  3625. "x": 0,
  3626. "y": 0,
  3627. "z": 0
  3628. },
  3629. "_id": ""
  3630. },
  3631. {
  3632. "__type__": "cc.Node",
  3633. "_name": "content",
  3634. "_objFlags": 0,
  3635. "__editorExtras__": {},
  3636. "_parent": {
  3637. "__id__": 142
  3638. },
  3639. "_children": [],
  3640. "_active": true,
  3641. "_components": [
  3642. {
  3643. "__id__": 144
  3644. },
  3645. {
  3646. "__id__": 146
  3647. }
  3648. ],
  3649. "_prefab": {
  3650. "__id__": 148
  3651. },
  3652. "_lpos": {
  3653. "__type__": "cc.Vec3",
  3654. "x": 0,
  3655. "y": 0,
  3656. "z": 0
  3657. },
  3658. "_lrot": {
  3659. "__type__": "cc.Quat",
  3660. "x": 0,
  3661. "y": 0,
  3662. "z": 0,
  3663. "w": 1
  3664. },
  3665. "_lscale": {
  3666. "__type__": "cc.Vec3",
  3667. "x": 1,
  3668. "y": 1,
  3669. "z": 1
  3670. },
  3671. "_mobility": 0,
  3672. "_layer": 33554432,
  3673. "_euler": {
  3674. "__type__": "cc.Vec3",
  3675. "x": 0,
  3676. "y": 0,
  3677. "z": 0
  3678. },
  3679. "_id": ""
  3680. },
  3681. {
  3682. "__type__": "cc.UITransform",
  3683. "_name": "",
  3684. "_objFlags": 0,
  3685. "__editorExtras__": {},
  3686. "node": {
  3687. "__id__": 143
  3688. },
  3689. "_enabled": true,
  3690. "__prefab": {
  3691. "__id__": 145
  3692. },
  3693. "_contentSize": {
  3694. "__type__": "cc.Size",
  3695. "width": 630,
  3696. "height": 20
  3697. },
  3698. "_anchorPoint": {
  3699. "__type__": "cc.Vec2",
  3700. "x": 0.5,
  3701. "y": 1
  3702. },
  3703. "_id": ""
  3704. },
  3705. {
  3706. "__type__": "cc.CompPrefabInfo",
  3707. "fileId": "33gd2opMhCg5IgRyFdAkLS"
  3708. },
  3709. {
  3710. "__type__": "cc.Layout",
  3711. "_name": "",
  3712. "_objFlags": 0,
  3713. "__editorExtras__": {},
  3714. "node": {
  3715. "__id__": 143
  3716. },
  3717. "_enabled": true,
  3718. "__prefab": {
  3719. "__id__": 147
  3720. },
  3721. "_resizeMode": 1,
  3722. "_layoutType": 3,
  3723. "_cellSize": {
  3724. "__type__": "cc.Size",
  3725. "width": 40,
  3726. "height": 40
  3727. },
  3728. "_startAxis": 0,
  3729. "_paddingLeft": 5,
  3730. "_paddingRight": 0,
  3731. "_paddingTop": 10,
  3732. "_paddingBottom": 10,
  3733. "_spacingX": 30,
  3734. "_spacingY": 20,
  3735. "_verticalDirection": 1,
  3736. "_horizontalDirection": 0,
  3737. "_constraint": 0,
  3738. "_constraintNum": 2,
  3739. "_affectedByScale": false,
  3740. "_isAlign": false,
  3741. "_id": ""
  3742. },
  3743. {
  3744. "__type__": "cc.CompPrefabInfo",
  3745. "fileId": "c6AJzks2tE4LaUO5ZBJa29"
  3746. },
  3747. {
  3748. "__type__": "cc.PrefabInfo",
  3749. "root": {
  3750. "__id__": 1
  3751. },
  3752. "asset": {
  3753. "__id__": 0
  3754. },
  3755. "fileId": "f0Obx6i8FL8Jk87s0kMtqy",
  3756. "instance": null,
  3757. "targetOverrides": null,
  3758. "nestedPrefabInstanceRoots": null
  3759. },
  3760. {
  3761. "__type__": "cc.UITransform",
  3762. "_name": "",
  3763. "_objFlags": 0,
  3764. "__editorExtras__": {},
  3765. "node": {
  3766. "__id__": 142
  3767. },
  3768. "_enabled": true,
  3769. "__prefab": {
  3770. "__id__": 150
  3771. },
  3772. "_contentSize": {
  3773. "__type__": "cc.Size",
  3774. "width": 630,
  3775. "height": 376
  3776. },
  3777. "_anchorPoint": {
  3778. "__type__": "cc.Vec2",
  3779. "x": 0.5,
  3780. "y": 1
  3781. },
  3782. "_id": ""
  3783. },
  3784. {
  3785. "__type__": "cc.CompPrefabInfo",
  3786. "fileId": "4frRWtTbdPdooVWwtdan1v"
  3787. },
  3788. {
  3789. "__type__": "cc.Mask",
  3790. "_name": "",
  3791. "_objFlags": 0,
  3792. "__editorExtras__": {},
  3793. "node": {
  3794. "__id__": 142
  3795. },
  3796. "_enabled": true,
  3797. "__prefab": {
  3798. "__id__": 152
  3799. },
  3800. "_type": 0,
  3801. "_inverted": false,
  3802. "_segments": 64,
  3803. "_alphaThreshold": 0.1,
  3804. "_id": ""
  3805. },
  3806. {
  3807. "__type__": "cc.CompPrefabInfo",
  3808. "fileId": "82HyOqBONJXpNpuxt7nEqi"
  3809. },
  3810. {
  3811. "__type__": "cc.Graphics",
  3812. "_name": "",
  3813. "_objFlags": 0,
  3814. "__editorExtras__": {},
  3815. "node": {
  3816. "__id__": 142
  3817. },
  3818. "_enabled": true,
  3819. "__prefab": {
  3820. "__id__": 154
  3821. },
  3822. "_customMaterial": null,
  3823. "_srcBlendFactor": 2,
  3824. "_dstBlendFactor": 4,
  3825. "_color": {
  3826. "__type__": "cc.Color",
  3827. "r": 255,
  3828. "g": 255,
  3829. "b": 255,
  3830. "a": 255
  3831. },
  3832. "_lineWidth": 1,
  3833. "_strokeColor": {
  3834. "__type__": "cc.Color",
  3835. "r": 0,
  3836. "g": 0,
  3837. "b": 0,
  3838. "a": 255
  3839. },
  3840. "_lineJoin": 2,
  3841. "_lineCap": 0,
  3842. "_fillColor": {
  3843. "__type__": "cc.Color",
  3844. "r": 255,
  3845. "g": 255,
  3846. "b": 255,
  3847. "a": 0
  3848. },
  3849. "_miterLimit": 10,
  3850. "_id": ""
  3851. },
  3852. {
  3853. "__type__": "cc.CompPrefabInfo",
  3854. "fileId": "0bOELWiYxAu7lipiNWmiXu"
  3855. },
  3856. {
  3857. "__type__": "cc.PrefabInfo",
  3858. "root": {
  3859. "__id__": 1
  3860. },
  3861. "asset": {
  3862. "__id__": 0
  3863. },
  3864. "fileId": "bcUo2XNVRKL7azANlAkK0T",
  3865. "instance": null,
  3866. "targetOverrides": null,
  3867. "nestedPrefabInstanceRoots": null
  3868. },
  3869. {
  3870. "__type__": "cc.UITransform",
  3871. "_name": "",
  3872. "_objFlags": 0,
  3873. "__editorExtras__": {},
  3874. "node": {
  3875. "__id__": 141
  3876. },
  3877. "_enabled": true,
  3878. "__prefab": {
  3879. "__id__": 157
  3880. },
  3881. "_contentSize": {
  3882. "__type__": "cc.Size",
  3883. "width": 630,
  3884. "height": 376
  3885. },
  3886. "_anchorPoint": {
  3887. "__type__": "cc.Vec2",
  3888. "x": 0.5,
  3889. "y": 0.5
  3890. },
  3891. "_id": ""
  3892. },
  3893. {
  3894. "__type__": "cc.CompPrefabInfo",
  3895. "fileId": "55afESSDxP/KBS4bjLB3WP"
  3896. },
  3897. {
  3898. "__type__": "cc.ScrollView",
  3899. "_name": "",
  3900. "_objFlags": 0,
  3901. "__editorExtras__": {},
  3902. "node": {
  3903. "__id__": 141
  3904. },
  3905. "_enabled": true,
  3906. "__prefab": {
  3907. "__id__": 159
  3908. },
  3909. "bounceDuration": 0.23,
  3910. "brake": 0.75,
  3911. "elastic": true,
  3912. "inertia": true,
  3913. "horizontal": false,
  3914. "vertical": true,
  3915. "cancelInnerEvents": true,
  3916. "scrollEvents": [],
  3917. "_content": {
  3918. "__id__": 143
  3919. },
  3920. "_horizontalScrollBar": null,
  3921. "_verticalScrollBar": null,
  3922. "_id": ""
  3923. },
  3924. {
  3925. "__type__": "cc.CompPrefabInfo",
  3926. "fileId": "ef7j3VQ95PAqnqbHHUkkof"
  3927. },
  3928. {
  3929. "__type__": "b3be3x8rnhKRZd5v1Xo0Flv",
  3930. "_name": "",
  3931. "_objFlags": 0,
  3932. "__editorExtras__": {},
  3933. "node": {
  3934. "__id__": 141
  3935. },
  3936. "_enabled": true,
  3937. "__prefab": {
  3938. "__id__": 161
  3939. },
  3940. "templateType": 2,
  3941. "tmpNode": null,
  3942. "tmpPrefab": {
  3943. "__uuid__": "1b68cbb7-baf0-4e46-aa7d-2e99a45168aa",
  3944. "__expectedType__": "cc.Prefab"
  3945. },
  3946. "_slideMode": 1,
  3947. "pageDistance": 0.3,
  3948. "pageChangeEvent": {
  3949. "__id__": 162
  3950. },
  3951. "_virtual": true,
  3952. "cyclic": false,
  3953. "lackCenter": false,
  3954. "lackSlide": false,
  3955. "_updateRate": 0,
  3956. "frameByFrameRenderNum": 0,
  3957. "renderEvent": {
  3958. "__id__": 163
  3959. },
  3960. "selectedMode": 0,
  3961. "selectedEvent": {
  3962. "__id__": 164
  3963. },
  3964. "repeatEventSingle": false,
  3965. "_id": ""
  3966. },
  3967. {
  3968. "__type__": "cc.CompPrefabInfo",
  3969. "fileId": "75wDwdtpBLWp438vTSfa3P"
  3970. },
  3971. {
  3972. "__type__": "cc.ClickEvent",
  3973. "target": null,
  3974. "component": "",
  3975. "_componentId": "",
  3976. "handler": "",
  3977. "customEventData": ""
  3978. },
  3979. {
  3980. "__type__": "cc.ClickEvent",
  3981. "target": {
  3982. "__id__": 1
  3983. },
  3984. "component": "",
  3985. "_componentId": "46010KCvm1NJaDzNDGrO/9y",
  3986. "handler": "onEventList",
  3987. "customEventData": ""
  3988. },
  3989. {
  3990. "__type__": "cc.ClickEvent",
  3991. "target": null,
  3992. "component": "",
  3993. "_componentId": "",
  3994. "handler": "",
  3995. "customEventData": ""
  3996. },
  3997. {
  3998. "__type__": "cc.PrefabInfo",
  3999. "root": {
  4000. "__id__": 1
  4001. },
  4002. "asset": {
  4003. "__id__": 0
  4004. },
  4005. "fileId": "cbJZYPXAtGjL0H1/4ly02+",
  4006. "instance": null,
  4007. "targetOverrides": null,
  4008. "nestedPrefabInstanceRoots": null
  4009. },
  4010. {
  4011. "__type__": "cc.UITransform",
  4012. "_name": "",
  4013. "_objFlags": 0,
  4014. "__editorExtras__": {},
  4015. "node": {
  4016. "__id__": 140
  4017. },
  4018. "_enabled": true,
  4019. "__prefab": {
  4020. "__id__": 167
  4021. },
  4022. "_contentSize": {
  4023. "__type__": "cc.Size",
  4024. "width": 668,
  4025. "height": 385
  4026. },
  4027. "_anchorPoint": {
  4028. "__type__": "cc.Vec2",
  4029. "x": 0.5,
  4030. "y": 0.5
  4031. },
  4032. "_id": ""
  4033. },
  4034. {
  4035. "__type__": "cc.CompPrefabInfo",
  4036. "fileId": "06b8kknZdBWaKwTUfLSqSP"
  4037. },
  4038. {
  4039. "__type__": "cc.Sprite",
  4040. "_name": "",
  4041. "_objFlags": 0,
  4042. "__editorExtras__": {},
  4043. "node": {
  4044. "__id__": 140
  4045. },
  4046. "_enabled": true,
  4047. "__prefab": {
  4048. "__id__": 169
  4049. },
  4050. "_customMaterial": null,
  4051. "_srcBlendFactor": 2,
  4052. "_dstBlendFactor": 4,
  4053. "_color": {
  4054. "__type__": "cc.Color",
  4055. "r": 255,
  4056. "g": 255,
  4057. "b": 255,
  4058. "a": 255
  4059. },
  4060. "_spriteFrame": {
  4061. "__uuid__": "3e15eeb6-df20-467e-aa83-5f59e2762632@f9941",
  4062. "__expectedType__": "cc.SpriteFrame"
  4063. },
  4064. "_type": 1,
  4065. "_fillType": 0,
  4066. "_sizeMode": 0,
  4067. "_fillCenter": {
  4068. "__type__": "cc.Vec2",
  4069. "x": 0,
  4070. "y": 0
  4071. },
  4072. "_fillStart": 0,
  4073. "_fillRange": 0,
  4074. "_isTrimmedMode": true,
  4075. "_useGrayscale": false,
  4076. "_atlas": null,
  4077. "_id": ""
  4078. },
  4079. {
  4080. "__type__": "cc.CompPrefabInfo",
  4081. "fileId": "9fREzTlMBCOqyq34wDqgYD"
  4082. },
  4083. {
  4084. "__type__": "cc.PrefabInfo",
  4085. "root": {
  4086. "__id__": 1
  4087. },
  4088. "asset": {
  4089. "__id__": 0
  4090. },
  4091. "fileId": "adwxnez0hHbrXWBpoQuIp3",
  4092. "instance": null,
  4093. "targetOverrides": null,
  4094. "nestedPrefabInstanceRoots": null
  4095. },
  4096. {
  4097. "__type__": "cc.Node",
  4098. "_name": "update_btn",
  4099. "_objFlags": 0,
  4100. "__editorExtras__": {},
  4101. "_parent": {
  4102. "__id__": 35
  4103. },
  4104. "_children": [
  4105. {
  4106. "__id__": 172
  4107. }
  4108. ],
  4109. "_active": true,
  4110. "_components": [
  4111. {
  4112. "__id__": 178
  4113. },
  4114. {
  4115. "__id__": 180
  4116. },
  4117. {
  4118. "__id__": 182
  4119. }
  4120. ],
  4121. "_prefab": {
  4122. "__id__": 185
  4123. },
  4124. "_lpos": {
  4125. "__type__": "cc.Vec3",
  4126. "x": 150,
  4127. "y": -440,
  4128. "z": 0
  4129. },
  4130. "_lrot": {
  4131. "__type__": "cc.Quat",
  4132. "x": 0,
  4133. "y": 0,
  4134. "z": 0,
  4135. "w": 1
  4136. },
  4137. "_lscale": {
  4138. "__type__": "cc.Vec3",
  4139. "x": 0.75,
  4140. "y": 0.75,
  4141. "z": 1
  4142. },
  4143. "_mobility": 0,
  4144. "_layer": 33554432,
  4145. "_euler": {
  4146. "__type__": "cc.Vec3",
  4147. "x": 0,
  4148. "y": 0,
  4149. "z": 0
  4150. },
  4151. "_id": ""
  4152. },
  4153. {
  4154. "__type__": "cc.Node",
  4155. "_name": "btn_tx",
  4156. "_objFlags": 0,
  4157. "__editorExtras__": {},
  4158. "_parent": {
  4159. "__id__": 171
  4160. },
  4161. "_children": [],
  4162. "_active": true,
  4163. "_components": [
  4164. {
  4165. "__id__": 173
  4166. },
  4167. {
  4168. "__id__": 175
  4169. }
  4170. ],
  4171. "_prefab": {
  4172. "__id__": 177
  4173. },
  4174. "_lpos": {
  4175. "__type__": "cc.Vec3",
  4176. "x": 0,
  4177. "y": 0,
  4178. "z": 0
  4179. },
  4180. "_lrot": {
  4181. "__type__": "cc.Quat",
  4182. "x": 0,
  4183. "y": 0,
  4184. "z": 0,
  4185. "w": 1
  4186. },
  4187. "_lscale": {
  4188. "__type__": "cc.Vec3",
  4189. "x": 1,
  4190. "y": 1,
  4191. "z": 1
  4192. },
  4193. "_mobility": 0,
  4194. "_layer": 33554432,
  4195. "_euler": {
  4196. "__type__": "cc.Vec3",
  4197. "x": 0,
  4198. "y": 0,
  4199. "z": 0
  4200. },
  4201. "_id": ""
  4202. },
  4203. {
  4204. "__type__": "cc.UITransform",
  4205. "_name": "",
  4206. "_objFlags": 0,
  4207. "__editorExtras__": {},
  4208. "node": {
  4209. "__id__": 172
  4210. },
  4211. "_enabled": true,
  4212. "__prefab": {
  4213. "__id__": 174
  4214. },
  4215. "_contentSize": {
  4216. "__type__": "cc.Size",
  4217. "width": 116,
  4218. "height": 39.28
  4219. },
  4220. "_anchorPoint": {
  4221. "__type__": "cc.Vec2",
  4222. "x": 0.5,
  4223. "y": 0.5
  4224. },
  4225. "_id": ""
  4226. },
  4227. {
  4228. "__type__": "cc.CompPrefabInfo",
  4229. "fileId": "c3vSNgeulNgp/zIF1wUwyb"
  4230. },
  4231. {
  4232. "__type__": "cc.Label",
  4233. "_name": "",
  4234. "_objFlags": 0,
  4235. "__editorExtras__": {},
  4236. "node": {
  4237. "__id__": 172
  4238. },
  4239. "_enabled": true,
  4240. "__prefab": {
  4241. "__id__": 176
  4242. },
  4243. "_customMaterial": null,
  4244. "_srcBlendFactor": 2,
  4245. "_dstBlendFactor": 4,
  4246. "_color": {
  4247. "__type__": "cc.Color",
  4248. "r": 255,
  4249. "g": 255,
  4250. "b": 255,
  4251. "a": 255
  4252. },
  4253. "_string": "确定",
  4254. "_horizontalAlign": 1,
  4255. "_verticalAlign": 1,
  4256. "_actualFontSize": 28,
  4257. "_fontSize": 28,
  4258. "_fontFamily": "Arial",
  4259. "_lineHeight": 28,
  4260. "_overflow": 2,
  4261. "_enableWrapText": false,
  4262. "_font": {
  4263. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  4264. "__expectedType__": "cc.TTFFont"
  4265. },
  4266. "_isSystemFontUsed": false,
  4267. "_spacingX": 0,
  4268. "_isItalic": false,
  4269. "_isBold": true,
  4270. "_isUnderline": false,
  4271. "_underlineHeight": 2,
  4272. "_cacheMode": 0,
  4273. "_enableOutline": true,
  4274. "_outlineColor": {
  4275. "__type__": "cc.Color",
  4276. "r": 117,
  4277. "g": 71,
  4278. "b": 16,
  4279. "a": 255
  4280. },
  4281. "_outlineWidth": 3,
  4282. "_enableShadow": false,
  4283. "_shadowColor": {
  4284. "__type__": "cc.Color",
  4285. "r": 0,
  4286. "g": 0,
  4287. "b": 0,
  4288. "a": 255
  4289. },
  4290. "_shadowOffset": {
  4291. "__type__": "cc.Vec2",
  4292. "x": 2,
  4293. "y": 2
  4294. },
  4295. "_shadowBlur": 2,
  4296. "_id": ""
  4297. },
  4298. {
  4299. "__type__": "cc.CompPrefabInfo",
  4300. "fileId": "52I8/VHXdGGKU/ZoyPX5aj"
  4301. },
  4302. {
  4303. "__type__": "cc.PrefabInfo",
  4304. "root": {
  4305. "__id__": 1
  4306. },
  4307. "asset": {
  4308. "__id__": 0
  4309. },
  4310. "fileId": "8alb+5OQVIQ6bKMFz0rnLF",
  4311. "instance": null,
  4312. "targetOverrides": null,
  4313. "nestedPrefabInstanceRoots": null
  4314. },
  4315. {
  4316. "__type__": "cc.UITransform",
  4317. "_name": "",
  4318. "_objFlags": 0,
  4319. "__editorExtras__": {},
  4320. "node": {
  4321. "__id__": 171
  4322. },
  4323. "_enabled": true,
  4324. "__prefab": {
  4325. "__id__": 179
  4326. },
  4327. "_contentSize": {
  4328. "__type__": "cc.Size",
  4329. "width": 182,
  4330. "height": 90
  4331. },
  4332. "_anchorPoint": {
  4333. "__type__": "cc.Vec2",
  4334. "x": 0.5,
  4335. "y": 0.5
  4336. },
  4337. "_id": ""
  4338. },
  4339. {
  4340. "__type__": "cc.CompPrefabInfo",
  4341. "fileId": "6cQ/gDu/JEdKTaV5FKMWJQ"
  4342. },
  4343. {
  4344. "__type__": "cc.Sprite",
  4345. "_name": "",
  4346. "_objFlags": 0,
  4347. "__editorExtras__": {},
  4348. "node": {
  4349. "__id__": 171
  4350. },
  4351. "_enabled": true,
  4352. "__prefab": {
  4353. "__id__": 181
  4354. },
  4355. "_customMaterial": null,
  4356. "_srcBlendFactor": 2,
  4357. "_dstBlendFactor": 4,
  4358. "_color": {
  4359. "__type__": "cc.Color",
  4360. "r": 255,
  4361. "g": 255,
  4362. "b": 255,
  4363. "a": 255
  4364. },
  4365. "_spriteFrame": {
  4366. "__uuid__": "34877f34-75e1-4cbb-8ec9-f1eda8f303fc@f9941",
  4367. "__expectedType__": "cc.SpriteFrame"
  4368. },
  4369. "_type": 0,
  4370. "_fillType": 0,
  4371. "_sizeMode": 1,
  4372. "_fillCenter": {
  4373. "__type__": "cc.Vec2",
  4374. "x": 0,
  4375. "y": 0
  4376. },
  4377. "_fillStart": 0,
  4378. "_fillRange": 0,
  4379. "_isTrimmedMode": true,
  4380. "_useGrayscale": false,
  4381. "_atlas": null,
  4382. "_id": ""
  4383. },
  4384. {
  4385. "__type__": "cc.CompPrefabInfo",
  4386. "fileId": "faVJs1MOxNQ4etc1fUDfX8"
  4387. },
  4388. {
  4389. "__type__": "cc.Button",
  4390. "_name": "",
  4391. "_objFlags": 0,
  4392. "__editorExtras__": {},
  4393. "node": {
  4394. "__id__": 171
  4395. },
  4396. "_enabled": true,
  4397. "__prefab": {
  4398. "__id__": 183
  4399. },
  4400. "clickEvents": [
  4401. {
  4402. "__id__": 184
  4403. }
  4404. ],
  4405. "_interactable": true,
  4406. "_transition": 3,
  4407. "_normalColor": {
  4408. "__type__": "cc.Color",
  4409. "r": 214,
  4410. "g": 214,
  4411. "b": 214,
  4412. "a": 255
  4413. },
  4414. "_hoverColor": {
  4415. "__type__": "cc.Color",
  4416. "r": 211,
  4417. "g": 211,
  4418. "b": 211,
  4419. "a": 255
  4420. },
  4421. "_pressedColor": {
  4422. "__type__": "cc.Color",
  4423. "r": 255,
  4424. "g": 255,
  4425. "b": 255,
  4426. "a": 255
  4427. },
  4428. "_disabledColor": {
  4429. "__type__": "cc.Color",
  4430. "r": 124,
  4431. "g": 124,
  4432. "b": 124,
  4433. "a": 255
  4434. },
  4435. "_normalSprite": null,
  4436. "_hoverSprite": null,
  4437. "_pressedSprite": null,
  4438. "_disabledSprite": null,
  4439. "_duration": 0.1,
  4440. "_zoomScale": 0.8,
  4441. "_target": {
  4442. "__id__": 171
  4443. },
  4444. "_id": ""
  4445. },
  4446. {
  4447. "__type__": "cc.CompPrefabInfo",
  4448. "fileId": "a9WVgNJhpM6ps6qHQwhrwR"
  4449. },
  4450. {
  4451. "__type__": "cc.ClickEvent",
  4452. "target": {
  4453. "__id__": 1
  4454. },
  4455. "component": "",
  4456. "_componentId": "46010KCvm1NJaDzNDGrO/9y",
  4457. "handler": "onTouchButton",
  4458. "customEventData": ""
  4459. },
  4460. {
  4461. "__type__": "cc.PrefabInfo",
  4462. "root": {
  4463. "__id__": 1
  4464. },
  4465. "asset": {
  4466. "__id__": 0
  4467. },
  4468. "fileId": "36G5iR9rlHp6gastFB1xy4",
  4469. "instance": null,
  4470. "targetOverrides": null,
  4471. "nestedPrefabInstanceRoots": null
  4472. },
  4473. {
  4474. "__type__": "cc.Node",
  4475. "_name": "auto_btn",
  4476. "_objFlags": 0,
  4477. "__editorExtras__": {},
  4478. "_parent": {
  4479. "__id__": 35
  4480. },
  4481. "_children": [
  4482. {
  4483. "__id__": 187
  4484. }
  4485. ],
  4486. "_active": true,
  4487. "_components": [
  4488. {
  4489. "__id__": 193
  4490. },
  4491. {
  4492. "__id__": 195
  4493. },
  4494. {
  4495. "__id__": 197
  4496. }
  4497. ],
  4498. "_prefab": {
  4499. "__id__": 200
  4500. },
  4501. "_lpos": {
  4502. "__type__": "cc.Vec3",
  4503. "x": -150,
  4504. "y": -440,
  4505. "z": 0
  4506. },
  4507. "_lrot": {
  4508. "__type__": "cc.Quat",
  4509. "x": 0,
  4510. "y": 0,
  4511. "z": 0,
  4512. "w": 1
  4513. },
  4514. "_lscale": {
  4515. "__type__": "cc.Vec3",
  4516. "x": 0.75,
  4517. "y": 0.75,
  4518. "z": 1
  4519. },
  4520. "_mobility": 0,
  4521. "_layer": 33554432,
  4522. "_euler": {
  4523. "__type__": "cc.Vec3",
  4524. "x": 0,
  4525. "y": 0,
  4526. "z": 0
  4527. },
  4528. "_id": ""
  4529. },
  4530. {
  4531. "__type__": "cc.Node",
  4532. "_name": "btn_tx",
  4533. "_objFlags": 0,
  4534. "__editorExtras__": {},
  4535. "_parent": {
  4536. "__id__": 186
  4537. },
  4538. "_children": [],
  4539. "_active": true,
  4540. "_components": [
  4541. {
  4542. "__id__": 188
  4543. },
  4544. {
  4545. "__id__": 190
  4546. }
  4547. ],
  4548. "_prefab": {
  4549. "__id__": 192
  4550. },
  4551. "_lpos": {
  4552. "__type__": "cc.Vec3",
  4553. "x": 0,
  4554. "y": 0,
  4555. "z": 0
  4556. },
  4557. "_lrot": {
  4558. "__type__": "cc.Quat",
  4559. "x": 0,
  4560. "y": 0,
  4561. "z": 0,
  4562. "w": 1
  4563. },
  4564. "_lscale": {
  4565. "__type__": "cc.Vec3",
  4566. "x": 1,
  4567. "y": 1,
  4568. "z": 1
  4569. },
  4570. "_mobility": 0,
  4571. "_layer": 33554432,
  4572. "_euler": {
  4573. "__type__": "cc.Vec3",
  4574. "x": 0,
  4575. "y": 0,
  4576. "z": 0
  4577. },
  4578. "_id": ""
  4579. },
  4580. {
  4581. "__type__": "cc.UITransform",
  4582. "_name": "",
  4583. "_objFlags": 0,
  4584. "__editorExtras__": {},
  4585. "node": {
  4586. "__id__": 187
  4587. },
  4588. "_enabled": true,
  4589. "__prefab": {
  4590. "__id__": 189
  4591. },
  4592. "_contentSize": {
  4593. "__type__": "cc.Size",
  4594. "width": 62,
  4595. "height": 41.28
  4596. },
  4597. "_anchorPoint": {
  4598. "__type__": "cc.Vec2",
  4599. "x": 0.5,
  4600. "y": 0.5
  4601. },
  4602. "_id": ""
  4603. },
  4604. {
  4605. "__type__": "cc.CompPrefabInfo",
  4606. "fileId": "92WWfpDlhCxJFxEEdTtWds"
  4607. },
  4608. {
  4609. "__type__": "cc.Label",
  4610. "_name": "",
  4611. "_objFlags": 0,
  4612. "__editorExtras__": {},
  4613. "node": {
  4614. "__id__": 187
  4615. },
  4616. "_enabled": true,
  4617. "__prefab": {
  4618. "__id__": 191
  4619. },
  4620. "_customMaterial": null,
  4621. "_srcBlendFactor": 2,
  4622. "_dstBlendFactor": 4,
  4623. "_color": {
  4624. "__type__": "cc.Color",
  4625. "r": 255,
  4626. "g": 255,
  4627. "b": 255,
  4628. "a": 255
  4629. },
  4630. "_string": "取消",
  4631. "_horizontalAlign": 1,
  4632. "_verticalAlign": 1,
  4633. "_actualFontSize": 28,
  4634. "_fontSize": 28,
  4635. "_fontFamily": "Arial",
  4636. "_lineHeight": 28,
  4637. "_overflow": 0,
  4638. "_enableWrapText": false,
  4639. "_font": {
  4640. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  4641. "__expectedType__": "cc.TTFFont"
  4642. },
  4643. "_isSystemFontUsed": false,
  4644. "_spacingX": 0,
  4645. "_isItalic": false,
  4646. "_isBold": true,
  4647. "_isUnderline": false,
  4648. "_underlineHeight": 2,
  4649. "_cacheMode": 0,
  4650. "_enableOutline": true,
  4651. "_outlineColor": {
  4652. "__type__": "cc.Color",
  4653. "r": 40,
  4654. "g": 86,
  4655. "b": 115,
  4656. "a": 255
  4657. },
  4658. "_outlineWidth": 3,
  4659. "_enableShadow": false,
  4660. "_shadowColor": {
  4661. "__type__": "cc.Color",
  4662. "r": 0,
  4663. "g": 0,
  4664. "b": 0,
  4665. "a": 255
  4666. },
  4667. "_shadowOffset": {
  4668. "__type__": "cc.Vec2",
  4669. "x": 2,
  4670. "y": 2
  4671. },
  4672. "_shadowBlur": 2,
  4673. "_id": ""
  4674. },
  4675. {
  4676. "__type__": "cc.CompPrefabInfo",
  4677. "fileId": "450gwougBHHIcCb3MKpdDK"
  4678. },
  4679. {
  4680. "__type__": "cc.PrefabInfo",
  4681. "root": {
  4682. "__id__": 1
  4683. },
  4684. "asset": {
  4685. "__id__": 0
  4686. },
  4687. "fileId": "55iXSxFMJH/KI4vixAeTKv",
  4688. "instance": null,
  4689. "targetOverrides": null,
  4690. "nestedPrefabInstanceRoots": null
  4691. },
  4692. {
  4693. "__type__": "cc.UITransform",
  4694. "_name": "",
  4695. "_objFlags": 0,
  4696. "__editorExtras__": {},
  4697. "node": {
  4698. "__id__": 186
  4699. },
  4700. "_enabled": true,
  4701. "__prefab": {
  4702. "__id__": 194
  4703. },
  4704. "_contentSize": {
  4705. "__type__": "cc.Size",
  4706. "width": 182,
  4707. "height": 90
  4708. },
  4709. "_anchorPoint": {
  4710. "__type__": "cc.Vec2",
  4711. "x": 0.5,
  4712. "y": 0.5
  4713. },
  4714. "_id": ""
  4715. },
  4716. {
  4717. "__type__": "cc.CompPrefabInfo",
  4718. "fileId": "69fRIZ6BpKUJ1HNQ4QabcM"
  4719. },
  4720. {
  4721. "__type__": "cc.Sprite",
  4722. "_name": "",
  4723. "_objFlags": 0,
  4724. "__editorExtras__": {},
  4725. "node": {
  4726. "__id__": 186
  4727. },
  4728. "_enabled": true,
  4729. "__prefab": {
  4730. "__id__": 196
  4731. },
  4732. "_customMaterial": null,
  4733. "_srcBlendFactor": 2,
  4734. "_dstBlendFactor": 4,
  4735. "_color": {
  4736. "__type__": "cc.Color",
  4737. "r": 255,
  4738. "g": 255,
  4739. "b": 255,
  4740. "a": 255
  4741. },
  4742. "_spriteFrame": {
  4743. "__uuid__": "a08bf7db-92e5-4606-b525-0487cd0c3154@f9941",
  4744. "__expectedType__": "cc.SpriteFrame"
  4745. },
  4746. "_type": 0,
  4747. "_fillType": 0,
  4748. "_sizeMode": 1,
  4749. "_fillCenter": {
  4750. "__type__": "cc.Vec2",
  4751. "x": 0,
  4752. "y": 0
  4753. },
  4754. "_fillStart": 0,
  4755. "_fillRange": 0,
  4756. "_isTrimmedMode": true,
  4757. "_useGrayscale": false,
  4758. "_atlas": null,
  4759. "_id": ""
  4760. },
  4761. {
  4762. "__type__": "cc.CompPrefabInfo",
  4763. "fileId": "b7rrwmnwNM0rNAEwP5lCW9"
  4764. },
  4765. {
  4766. "__type__": "cc.Button",
  4767. "_name": "",
  4768. "_objFlags": 0,
  4769. "__editorExtras__": {},
  4770. "node": {
  4771. "__id__": 186
  4772. },
  4773. "_enabled": true,
  4774. "__prefab": {
  4775. "__id__": 198
  4776. },
  4777. "clickEvents": [
  4778. {
  4779. "__id__": 199
  4780. }
  4781. ],
  4782. "_interactable": true,
  4783. "_transition": 3,
  4784. "_normalColor": {
  4785. "__type__": "cc.Color",
  4786. "r": 214,
  4787. "g": 214,
  4788. "b": 214,
  4789. "a": 255
  4790. },
  4791. "_hoverColor": {
  4792. "__type__": "cc.Color",
  4793. "r": 211,
  4794. "g": 211,
  4795. "b": 211,
  4796. "a": 255
  4797. },
  4798. "_pressedColor": {
  4799. "__type__": "cc.Color",
  4800. "r": 255,
  4801. "g": 255,
  4802. "b": 255,
  4803. "a": 255
  4804. },
  4805. "_disabledColor": {
  4806. "__type__": "cc.Color",
  4807. "r": 124,
  4808. "g": 124,
  4809. "b": 124,
  4810. "a": 255
  4811. },
  4812. "_normalSprite": null,
  4813. "_hoverSprite": null,
  4814. "_pressedSprite": null,
  4815. "_disabledSprite": null,
  4816. "_duration": 0.1,
  4817. "_zoomScale": 0.8,
  4818. "_target": {
  4819. "__id__": 186
  4820. },
  4821. "_id": ""
  4822. },
  4823. {
  4824. "__type__": "cc.CompPrefabInfo",
  4825. "fileId": "2djUTIgE9OS65I6rNBN5HQ"
  4826. },
  4827. {
  4828. "__type__": "cc.ClickEvent",
  4829. "target": {
  4830. "__id__": 1
  4831. },
  4832. "component": "",
  4833. "_componentId": "46010KCvm1NJaDzNDGrO/9y",
  4834. "handler": "onTouchButton",
  4835. "customEventData": ""
  4836. },
  4837. {
  4838. "__type__": "cc.PrefabInfo",
  4839. "root": {
  4840. "__id__": 1
  4841. },
  4842. "asset": {
  4843. "__id__": 0
  4844. },
  4845. "fileId": "0dA2mYFeJBBIf/H7LpKQL/",
  4846. "instance": null,
  4847. "targetOverrides": null,
  4848. "nestedPrefabInstanceRoots": null
  4849. },
  4850. {
  4851. "__type__": "cc.UITransform",
  4852. "_name": "",
  4853. "_objFlags": 0,
  4854. "__editorExtras__": {},
  4855. "node": {
  4856. "__id__": 35
  4857. },
  4858. "_enabled": true,
  4859. "__prefab": {
  4860. "__id__": 202
  4861. },
  4862. "_contentSize": {
  4863. "__type__": "cc.Size",
  4864. "width": 704,
  4865. "height": 1012
  4866. },
  4867. "_anchorPoint": {
  4868. "__type__": "cc.Vec2",
  4869. "x": 0.5,
  4870. "y": 0.5
  4871. },
  4872. "_id": ""
  4873. },
  4874. {
  4875. "__type__": "cc.CompPrefabInfo",
  4876. "fileId": "58SY+x0rlNIo6UON3U1Y++"
  4877. },
  4878. {
  4879. "__type__": "cc.Sprite",
  4880. "_name": "",
  4881. "_objFlags": 0,
  4882. "__editorExtras__": {},
  4883. "node": {
  4884. "__id__": 35
  4885. },
  4886. "_enabled": true,
  4887. "__prefab": {
  4888. "__id__": 204
  4889. },
  4890. "_customMaterial": null,
  4891. "_srcBlendFactor": 2,
  4892. "_dstBlendFactor": 4,
  4893. "_color": {
  4894. "__type__": "cc.Color",
  4895. "r": 255,
  4896. "g": 255,
  4897. "b": 255,
  4898. "a": 255
  4899. },
  4900. "_spriteFrame": {
  4901. "__uuid__": "a4e9b2b4-69c4-49c9-97d7-1f9aa4d7418c@f9941",
  4902. "__expectedType__": "cc.SpriteFrame"
  4903. },
  4904. "_type": 1,
  4905. "_fillType": 0,
  4906. "_sizeMode": 0,
  4907. "_fillCenter": {
  4908. "__type__": "cc.Vec2",
  4909. "x": 0,
  4910. "y": 0
  4911. },
  4912. "_fillStart": 0,
  4913. "_fillRange": 0,
  4914. "_isTrimmedMode": true,
  4915. "_useGrayscale": false,
  4916. "_atlas": null,
  4917. "_id": ""
  4918. },
  4919. {
  4920. "__type__": "cc.CompPrefabInfo",
  4921. "fileId": "05y4QLm2NMhKvIUFPerk7S"
  4922. },
  4923. {
  4924. "__type__": "cc.Widget",
  4925. "_name": "",
  4926. "_objFlags": 0,
  4927. "__editorExtras__": {},
  4928. "node": {
  4929. "__id__": 35
  4930. },
  4931. "_enabled": true,
  4932. "__prefab": {
  4933. "__id__": 206
  4934. },
  4935. "_alignFlags": 18,
  4936. "_target": null,
  4937. "_left": 0,
  4938. "_right": 0,
  4939. "_top": 0,
  4940. "_bottom": 0,
  4941. "_horizontalCenter": 0,
  4942. "_verticalCenter": 0,
  4943. "_isAbsLeft": true,
  4944. "_isAbsRight": true,
  4945. "_isAbsTop": true,
  4946. "_isAbsBottom": true,
  4947. "_isAbsHorizontalCenter": true,
  4948. "_isAbsVerticalCenter": true,
  4949. "_originalWidth": 0,
  4950. "_originalHeight": 0,
  4951. "_alignMode": 2,
  4952. "_lockFlags": 0,
  4953. "_id": ""
  4954. },
  4955. {
  4956. "__type__": "cc.CompPrefabInfo",
  4957. "fileId": "36dYVU8CdAo4Onx+ZVi6br"
  4958. },
  4959. {
  4960. "__type__": "cc.BlockInputEvents",
  4961. "_name": "",
  4962. "_objFlags": 0,
  4963. "__editorExtras__": {},
  4964. "node": {
  4965. "__id__": 35
  4966. },
  4967. "_enabled": true,
  4968. "__prefab": {
  4969. "__id__": 208
  4970. },
  4971. "_id": ""
  4972. },
  4973. {
  4974. "__type__": "cc.CompPrefabInfo",
  4975. "fileId": "d7Ub2nJAxJ9KtrhQGI33jW"
  4976. },
  4977. {
  4978. "__type__": "cc.UIOpacity",
  4979. "_name": "",
  4980. "_objFlags": 0,
  4981. "__editorExtras__": {},
  4982. "node": {
  4983. "__id__": 35
  4984. },
  4985. "_enabled": true,
  4986. "__prefab": {
  4987. "__id__": 210
  4988. },
  4989. "_opacity": 255,
  4990. "_id": ""
  4991. },
  4992. {
  4993. "__type__": "cc.CompPrefabInfo",
  4994. "fileId": "69L4TUhi5IgodCf6V29oNp"
  4995. },
  4996. {
  4997. "__type__": "cc.PrefabInfo",
  4998. "root": {
  4999. "__id__": 1
  5000. },
  5001. "asset": {
  5002. "__id__": 0
  5003. },
  5004. "fileId": "16osAoBkdHlKLt3lxNjBsc",
  5005. "instance": null,
  5006. "targetOverrides": null,
  5007. "nestedPrefabInstanceRoots": null
  5008. },
  5009. {
  5010. "__type__": "cc.UITransform",
  5011. "_name": "",
  5012. "_objFlags": 0,
  5013. "__editorExtras__": {},
  5014. "node": {
  5015. "__id__": 1
  5016. },
  5017. "_enabled": true,
  5018. "__prefab": {
  5019. "__id__": 213
  5020. },
  5021. "_contentSize": {
  5022. "__type__": "cc.Size",
  5023. "width": 750,
  5024. "height": 1334
  5025. },
  5026. "_anchorPoint": {
  5027. "__type__": "cc.Vec2",
  5028. "x": 0.5,
  5029. "y": 0.5
  5030. },
  5031. "_id": ""
  5032. },
  5033. {
  5034. "__type__": "cc.CompPrefabInfo",
  5035. "fileId": "55Xtfq6iZLi4VV+eKSX0+l"
  5036. },
  5037. {
  5038. "__type__": "cc.Widget",
  5039. "_name": "",
  5040. "_objFlags": 0,
  5041. "__editorExtras__": {},
  5042. "node": {
  5043. "__id__": 1
  5044. },
  5045. "_enabled": true,
  5046. "__prefab": {
  5047. "__id__": 215
  5048. },
  5049. "_alignFlags": 45,
  5050. "_target": null,
  5051. "_left": 0,
  5052. "_right": 0,
  5053. "_top": 0,
  5054. "_bottom": 0,
  5055. "_horizontalCenter": 0,
  5056. "_verticalCenter": 0,
  5057. "_isAbsLeft": true,
  5058. "_isAbsRight": true,
  5059. "_isAbsTop": true,
  5060. "_isAbsBottom": true,
  5061. "_isAbsHorizontalCenter": true,
  5062. "_isAbsVerticalCenter": true,
  5063. "_originalWidth": 100,
  5064. "_originalHeight": 100,
  5065. "_alignMode": 2,
  5066. "_lockFlags": 0,
  5067. "_id": ""
  5068. },
  5069. {
  5070. "__type__": "cc.CompPrefabInfo",
  5071. "fileId": "66b+7e7GRBzYBxbdeHY31r"
  5072. },
  5073. {
  5074. "__type__": "cc.Animation",
  5075. "_name": "",
  5076. "_objFlags": 0,
  5077. "__editorExtras__": {},
  5078. "node": {
  5079. "__id__": 1
  5080. },
  5081. "_enabled": true,
  5082. "__prefab": {
  5083. "__id__": 217
  5084. },
  5085. "playOnLoad": false,
  5086. "_clips": [
  5087. {
  5088. "__uuid__": "89470c00-b399-43af-90c8-f03a38385103",
  5089. "__expectedType__": "cc.AnimationClip"
  5090. },
  5091. {
  5092. "__uuid__": "e0837eb3-8f98-4446-ae76-8a15cc5efaf1",
  5093. "__expectedType__": "cc.AnimationClip"
  5094. }
  5095. ],
  5096. "_defaultClip": null,
  5097. "_id": ""
  5098. },
  5099. {
  5100. "__type__": "cc.CompPrefabInfo",
  5101. "fileId": "83iuxSJuJIRIFlJVAZD8ix"
  5102. },
  5103. {
  5104. "__type__": "cc.UIOpacity",
  5105. "_name": "",
  5106. "_objFlags": 0,
  5107. "__editorExtras__": {},
  5108. "node": {
  5109. "__id__": 1
  5110. },
  5111. "_enabled": true,
  5112. "__prefab": {
  5113. "__id__": 219
  5114. },
  5115. "_opacity": 255,
  5116. "_id": ""
  5117. },
  5118. {
  5119. "__type__": "cc.CompPrefabInfo",
  5120. "fileId": "23jD5W5GJKX4DO4XtKFyVt"
  5121. },
  5122. {
  5123. "__type__": "46010KCvm1NJaDzNDGrO/9y",
  5124. "_name": "",
  5125. "_objFlags": 0,
  5126. "__editorExtras__": {},
  5127. "node": {
  5128. "__id__": 1
  5129. },
  5130. "_enabled": true,
  5131. "__prefab": {
  5132. "__id__": 221
  5133. },
  5134. "frame_load": false,
  5135. "load_priority": 0,
  5136. "ui_type": 0,
  5137. "_base_view_full": false,
  5138. "_base_view_block": false,
  5139. "_base_quick_close": false,
  5140. "_base_quick_close_exclude_node": [],
  5141. "_base_quick_close_destroy": true,
  5142. "closeTips": {
  5143. "__id__": 28
  5144. },
  5145. "titieTx": {
  5146. "__id__": 39
  5147. },
  5148. "equipNameTx": {
  5149. "__id__": 52
  5150. },
  5151. "equipNode": {
  5152. "__id__": 55
  5153. },
  5154. "equipNowLevel": {
  5155. "__id__": 68
  5156. },
  5157. "equipNextLevel": {
  5158. "__id__": 80
  5159. },
  5160. "equipNowAttr": {
  5161. "__id__": 86
  5162. },
  5163. "equipNextAttr": {
  5164. "__id__": 106
  5165. },
  5166. "equipNextAttrAdd": {
  5167. "__id__": 99
  5168. },
  5169. "levelArrow": {
  5170. "__id__": 71
  5171. },
  5172. "attrArrow": {
  5173. "__id__": 89
  5174. },
  5175. "expTitle": {
  5176. "__id__": 112
  5177. },
  5178. "expBar": {
  5179. "__id__": 132
  5180. },
  5181. "expBarTx": {
  5182. "__id__": 125
  5183. },
  5184. "itemSv": {
  5185. "__id__": 160
  5186. },
  5187. "updateBtnTx": {
  5188. "__id__": 175
  5189. },
  5190. "autoBtnTx": {
  5191. "__id__": 190
  5192. },
  5193. "_id": ""
  5194. },
  5195. {
  5196. "__type__": "cc.CompPrefabInfo",
  5197. "fileId": "22NPKvi/9BSq/PDLjCJmo2"
  5198. },
  5199. {
  5200. "__type__": "cc.PrefabInfo",
  5201. "root": {
  5202. "__id__": 1
  5203. },
  5204. "asset": {
  5205. "__id__": 0
  5206. },
  5207. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  5208. "instance": null,
  5209. "targetOverrides": null
  5210. }
  5211. ]