EquipStrong.prefab 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "EquipStrong",
  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": "EquipStrong",
  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__": 220
  35. },
  36. {
  37. "__id__": 222
  38. },
  39. {
  40. "__id__": 224
  41. },
  42. {
  43. "__id__": 226
  44. },
  45. {
  46. "__id__": 228
  47. }
  48. ],
  49. "_prefab": {
  50. "__id__": 230
  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": "4fc4daJKR9AdqqJYYB05UAT",
  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__": 72
  791. },
  792. {
  793. "__id__": 148
  794. },
  795. {
  796. "__id__": 179
  797. },
  798. {
  799. "__id__": 194
  800. }
  801. ],
  802. "_active": true,
  803. "_components": [
  804. {
  805. "__id__": 209
  806. },
  807. {
  808. "__id__": 211
  809. },
  810. {
  811. "__id__": 213
  812. },
  813. {
  814. "__id__": 215
  815. },
  816. {
  817. "__id__": 217
  818. }
  819. ],
  820. "_prefab": {
  821. "__id__": 219
  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__": 67
  1037. },
  1038. {
  1039. "__id__": 69
  1040. }
  1041. ],
  1042. "_prefab": {
  1043. "__id__": 71
  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. {
  1382. "__id__": 56
  1383. }
  1384. ],
  1385. "_active": true,
  1386. "_components": [
  1387. {
  1388. "__id__": 64
  1389. }
  1390. ],
  1391. "_prefab": {
  1392. "__id__": 66
  1393. },
  1394. "_lpos": {
  1395. "__type__": "cc.Vec3",
  1396. "x": 0,
  1397. "y": 58.37099999999998,
  1398. "z": 0
  1399. },
  1400. "_lrot": {
  1401. "__type__": "cc.Quat",
  1402. "x": 0,
  1403. "y": 0,
  1404. "z": 0,
  1405. "w": 1
  1406. },
  1407. "_lscale": {
  1408. "__type__": "cc.Vec3",
  1409. "x": 1,
  1410. "y": 1,
  1411. "z": 1
  1412. },
  1413. "_mobility": 0,
  1414. "_layer": 33554432,
  1415. "_euler": {
  1416. "__type__": "cc.Vec3",
  1417. "x": 0,
  1418. "y": 0,
  1419. "z": 0
  1420. },
  1421. "_id": ""
  1422. },
  1423. {
  1424. "__type__": "cc.Node",
  1425. "_objFlags": 0,
  1426. "_parent": {
  1427. "__id__": 55
  1428. },
  1429. "_prefab": {
  1430. "__id__": 57
  1431. },
  1432. "__editorExtras__": {}
  1433. },
  1434. {
  1435. "__type__": "cc.PrefabInfo",
  1436. "root": {
  1437. "__id__": 56
  1438. },
  1439. "asset": {
  1440. "__uuid__": "1b68cbb7-baf0-4e46-aa7d-2e99a45168aa",
  1441. "__expectedType__": "cc.Prefab"
  1442. },
  1443. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  1444. "instance": {
  1445. "__id__": 58
  1446. },
  1447. "targetOverrides": null
  1448. },
  1449. {
  1450. "__type__": "cc.PrefabInstance",
  1451. "fileId": "f1fNxa/v9LjI429AjY2LQY",
  1452. "prefabRootNode": {
  1453. "__id__": 1
  1454. },
  1455. "mountedChildren": [],
  1456. "mountedComponents": [],
  1457. "propertyOverrides": [
  1458. {
  1459. "__id__": 59
  1460. },
  1461. {
  1462. "__id__": 61
  1463. },
  1464. {
  1465. "__id__": 62
  1466. },
  1467. {
  1468. "__id__": 63
  1469. }
  1470. ],
  1471. "removedComponents": []
  1472. },
  1473. {
  1474. "__type__": "CCPropertyOverrideInfo",
  1475. "targetInfo": {
  1476. "__id__": 60
  1477. },
  1478. "propertyPath": [
  1479. "_name"
  1480. ],
  1481. "value": "CommonItem"
  1482. },
  1483. {
  1484. "__type__": "cc.TargetInfo",
  1485. "localID": [
  1486. "c46/YsCPVOJYA4mWEpNYRx"
  1487. ]
  1488. },
  1489. {
  1490. "__type__": "CCPropertyOverrideInfo",
  1491. "targetInfo": {
  1492. "__id__": 60
  1493. },
  1494. "propertyPath": [
  1495. "_lpos"
  1496. ],
  1497. "value": {
  1498. "__type__": "cc.Vec3",
  1499. "x": 0,
  1500. "y": 0,
  1501. "z": 0
  1502. }
  1503. },
  1504. {
  1505. "__type__": "CCPropertyOverrideInfo",
  1506. "targetInfo": {
  1507. "__id__": 60
  1508. },
  1509. "propertyPath": [
  1510. "_lrot"
  1511. ],
  1512. "value": {
  1513. "__type__": "cc.Quat",
  1514. "x": 0,
  1515. "y": 0,
  1516. "z": 0,
  1517. "w": 1
  1518. }
  1519. },
  1520. {
  1521. "__type__": "CCPropertyOverrideInfo",
  1522. "targetInfo": {
  1523. "__id__": 60
  1524. },
  1525. "propertyPath": [
  1526. "_euler"
  1527. ],
  1528. "value": {
  1529. "__type__": "cc.Vec3",
  1530. "x": 0,
  1531. "y": 0,
  1532. "z": 0
  1533. }
  1534. },
  1535. {
  1536. "__type__": "cc.UITransform",
  1537. "_name": "",
  1538. "_objFlags": 0,
  1539. "__editorExtras__": {},
  1540. "node": {
  1541. "__id__": 55
  1542. },
  1543. "_enabled": true,
  1544. "__prefab": {
  1545. "__id__": 65
  1546. },
  1547. "_contentSize": {
  1548. "__type__": "cc.Size",
  1549. "width": 100,
  1550. "height": 100
  1551. },
  1552. "_anchorPoint": {
  1553. "__type__": "cc.Vec2",
  1554. "x": 0.5,
  1555. "y": 0.5
  1556. },
  1557. "_id": ""
  1558. },
  1559. {
  1560. "__type__": "cc.CompPrefabInfo",
  1561. "fileId": "46KLnscMlOk78vBu4zT/Za"
  1562. },
  1563. {
  1564. "__type__": "cc.PrefabInfo",
  1565. "root": {
  1566. "__id__": 1
  1567. },
  1568. "asset": {
  1569. "__id__": 0
  1570. },
  1571. "fileId": "9cz9CIn2VCXIYeydKIssnG",
  1572. "instance": null,
  1573. "targetOverrides": null,
  1574. "nestedPrefabInstanceRoots": null
  1575. },
  1576. {
  1577. "__type__": "cc.UITransform",
  1578. "_name": "",
  1579. "_objFlags": 0,
  1580. "__editorExtras__": {},
  1581. "node": {
  1582. "__id__": 42
  1583. },
  1584. "_enabled": true,
  1585. "__prefab": {
  1586. "__id__": 68
  1587. },
  1588. "_contentSize": {
  1589. "__type__": "cc.Size",
  1590. "width": 668,
  1591. "height": 385
  1592. },
  1593. "_anchorPoint": {
  1594. "__type__": "cc.Vec2",
  1595. "x": 0.5,
  1596. "y": 0.5
  1597. },
  1598. "_id": ""
  1599. },
  1600. {
  1601. "__type__": "cc.CompPrefabInfo",
  1602. "fileId": "30LKmnA5dJvpXo6L4uI1Q7"
  1603. },
  1604. {
  1605. "__type__": "cc.Sprite",
  1606. "_name": "",
  1607. "_objFlags": 0,
  1608. "__editorExtras__": {},
  1609. "node": {
  1610. "__id__": 42
  1611. },
  1612. "_enabled": true,
  1613. "__prefab": {
  1614. "__id__": 70
  1615. },
  1616. "_customMaterial": null,
  1617. "_srcBlendFactor": 2,
  1618. "_dstBlendFactor": 4,
  1619. "_color": {
  1620. "__type__": "cc.Color",
  1621. "r": 255,
  1622. "g": 255,
  1623. "b": 255,
  1624. "a": 255
  1625. },
  1626. "_spriteFrame": {
  1627. "__uuid__": "3e15eeb6-df20-467e-aa83-5f59e2762632@f9941",
  1628. "__expectedType__": "cc.SpriteFrame"
  1629. },
  1630. "_type": 1,
  1631. "_fillType": 0,
  1632. "_sizeMode": 0,
  1633. "_fillCenter": {
  1634. "__type__": "cc.Vec2",
  1635. "x": 0,
  1636. "y": 0
  1637. },
  1638. "_fillStart": 0,
  1639. "_fillRange": 0,
  1640. "_isTrimmedMode": true,
  1641. "_useGrayscale": false,
  1642. "_atlas": null,
  1643. "_id": ""
  1644. },
  1645. {
  1646. "__type__": "cc.CompPrefabInfo",
  1647. "fileId": "66e+o4KudGjo6Pm/LILqhl"
  1648. },
  1649. {
  1650. "__type__": "cc.PrefabInfo",
  1651. "root": {
  1652. "__id__": 1
  1653. },
  1654. "asset": {
  1655. "__id__": 0
  1656. },
  1657. "fileId": "efmZiM0rxFPYiSEAu1SyGr",
  1658. "instance": null,
  1659. "targetOverrides": null,
  1660. "nestedPrefabInstanceRoots": null
  1661. },
  1662. {
  1663. "__type__": "cc.Node",
  1664. "_name": "exp_bg",
  1665. "_objFlags": 0,
  1666. "__editorExtras__": {},
  1667. "_parent": {
  1668. "__id__": 35
  1669. },
  1670. "_children": [
  1671. {
  1672. "__id__": 73
  1673. },
  1674. {
  1675. "__id__": 79
  1676. },
  1677. {
  1678. "__id__": 85
  1679. },
  1680. {
  1681. "__id__": 91
  1682. },
  1683. {
  1684. "__id__": 97
  1685. },
  1686. {
  1687. "__id__": 103
  1688. },
  1689. {
  1690. "__id__": 117
  1691. },
  1692. {
  1693. "__id__": 123
  1694. }
  1695. ],
  1696. "_active": true,
  1697. "_components": [
  1698. {
  1699. "__id__": 143
  1700. },
  1701. {
  1702. "__id__": 145
  1703. }
  1704. ],
  1705. "_prefab": {
  1706. "__id__": 147
  1707. },
  1708. "_lpos": {
  1709. "__type__": "cc.Vec3",
  1710. "x": 0,
  1711. "y": 134,
  1712. "z": 0
  1713. },
  1714. "_lrot": {
  1715. "__type__": "cc.Quat",
  1716. "x": 0,
  1717. "y": 0,
  1718. "z": 0,
  1719. "w": 1
  1720. },
  1721. "_lscale": {
  1722. "__type__": "cc.Vec3",
  1723. "x": 1,
  1724. "y": 1,
  1725. "z": 1
  1726. },
  1727. "_mobility": 0,
  1728. "_layer": 33554432,
  1729. "_euler": {
  1730. "__type__": "cc.Vec3",
  1731. "x": 0,
  1732. "y": 0,
  1733. "z": 0
  1734. },
  1735. "_id": ""
  1736. },
  1737. {
  1738. "__type__": "cc.Node",
  1739. "_name": "now_level",
  1740. "_objFlags": 0,
  1741. "__editorExtras__": {},
  1742. "_parent": {
  1743. "__id__": 72
  1744. },
  1745. "_children": [],
  1746. "_active": true,
  1747. "_components": [
  1748. {
  1749. "__id__": 74
  1750. },
  1751. {
  1752. "__id__": 76
  1753. }
  1754. ],
  1755. "_prefab": {
  1756. "__id__": 78
  1757. },
  1758. "_lpos": {
  1759. "__type__": "cc.Vec3",
  1760. "x": -150,
  1761. "y": 50,
  1762. "z": 0
  1763. },
  1764. "_lrot": {
  1765. "__type__": "cc.Quat",
  1766. "x": 0,
  1767. "y": 0,
  1768. "z": 0,
  1769. "w": 1
  1770. },
  1771. "_lscale": {
  1772. "__type__": "cc.Vec3",
  1773. "x": 1,
  1774. "y": 1,
  1775. "z": 1
  1776. },
  1777. "_mobility": 0,
  1778. "_layer": 33554432,
  1779. "_euler": {
  1780. "__type__": "cc.Vec3",
  1781. "x": 0,
  1782. "y": 0,
  1783. "z": 0
  1784. },
  1785. "_id": ""
  1786. },
  1787. {
  1788. "__type__": "cc.UITransform",
  1789. "_name": "",
  1790. "_objFlags": 0,
  1791. "__editorExtras__": {},
  1792. "node": {
  1793. "__id__": 73
  1794. },
  1795. "_enabled": true,
  1796. "__prefab": {
  1797. "__id__": 75
  1798. },
  1799. "_contentSize": {
  1800. "__type__": "cc.Size",
  1801. "width": 69.58598327636719,
  1802. "height": 27.72
  1803. },
  1804. "_anchorPoint": {
  1805. "__type__": "cc.Vec2",
  1806. "x": 0.5,
  1807. "y": 0.5
  1808. },
  1809. "_id": ""
  1810. },
  1811. {
  1812. "__type__": "cc.CompPrefabInfo",
  1813. "fileId": "4aeV4NdxBJc5ThC/WDgjMc"
  1814. },
  1815. {
  1816. "__type__": "cc.Label",
  1817. "_name": "",
  1818. "_objFlags": 0,
  1819. "__editorExtras__": {},
  1820. "node": {
  1821. "__id__": 73
  1822. },
  1823. "_enabled": true,
  1824. "__prefab": {
  1825. "__id__": 77
  1826. },
  1827. "_customMaterial": null,
  1828. "_srcBlendFactor": 2,
  1829. "_dstBlendFactor": 4,
  1830. "_color": {
  1831. "__type__": "cc.Color",
  1832. "r": 138,
  1833. "g": 98,
  1834. "b": 48,
  1835. "a": 255
  1836. },
  1837. "_string": "Lv.999",
  1838. "_horizontalAlign": 1,
  1839. "_verticalAlign": 1,
  1840. "_actualFontSize": 22,
  1841. "_fontSize": 22,
  1842. "_fontFamily": "Arial",
  1843. "_lineHeight": 22,
  1844. "_overflow": 0,
  1845. "_enableWrapText": false,
  1846. "_font": {
  1847. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  1848. "__expectedType__": "cc.TTFFont"
  1849. },
  1850. "_isSystemFontUsed": false,
  1851. "_spacingX": 0,
  1852. "_isItalic": false,
  1853. "_isBold": true,
  1854. "_isUnderline": false,
  1855. "_underlineHeight": 2,
  1856. "_cacheMode": 0,
  1857. "_enableOutline": false,
  1858. "_outlineColor": {
  1859. "__type__": "cc.Color",
  1860. "r": 0,
  1861. "g": 0,
  1862. "b": 0,
  1863. "a": 255
  1864. },
  1865. "_outlineWidth": 3,
  1866. "_enableShadow": false,
  1867. "_shadowColor": {
  1868. "__type__": "cc.Color",
  1869. "r": 0,
  1870. "g": 0,
  1871. "b": 0,
  1872. "a": 255
  1873. },
  1874. "_shadowOffset": {
  1875. "__type__": "cc.Vec2",
  1876. "x": 2,
  1877. "y": 2
  1878. },
  1879. "_shadowBlur": 2,
  1880. "_id": ""
  1881. },
  1882. {
  1883. "__type__": "cc.CompPrefabInfo",
  1884. "fileId": "491484hYtChon7EHdLbPpf"
  1885. },
  1886. {
  1887. "__type__": "cc.PrefabInfo",
  1888. "root": {
  1889. "__id__": 1
  1890. },
  1891. "asset": {
  1892. "__id__": 0
  1893. },
  1894. "fileId": "703OLXfxJPU6ZZtRNkTKcc",
  1895. "instance": null,
  1896. "targetOverrides": null,
  1897. "nestedPrefabInstanceRoots": null
  1898. },
  1899. {
  1900. "__type__": "cc.Node",
  1901. "_name": "level_arrow",
  1902. "_objFlags": 0,
  1903. "__editorExtras__": {},
  1904. "_parent": {
  1905. "__id__": 72
  1906. },
  1907. "_children": [],
  1908. "_active": true,
  1909. "_components": [
  1910. {
  1911. "__id__": 80
  1912. },
  1913. {
  1914. "__id__": 82
  1915. }
  1916. ],
  1917. "_prefab": {
  1918. "__id__": 84
  1919. },
  1920. "_lpos": {
  1921. "__type__": "cc.Vec3",
  1922. "x": 0,
  1923. "y": 50,
  1924. "z": 0
  1925. },
  1926. "_lrot": {
  1927. "__type__": "cc.Quat",
  1928. "x": 0,
  1929. "y": 0,
  1930. "z": 0,
  1931. "w": 1
  1932. },
  1933. "_lscale": {
  1934. "__type__": "cc.Vec3",
  1935. "x": 0.5,
  1936. "y": 0.5,
  1937. "z": 1
  1938. },
  1939. "_mobility": 0,
  1940. "_layer": 33554432,
  1941. "_euler": {
  1942. "__type__": "cc.Vec3",
  1943. "x": 0,
  1944. "y": 0,
  1945. "z": 0
  1946. },
  1947. "_id": ""
  1948. },
  1949. {
  1950. "__type__": "cc.UITransform",
  1951. "_name": "",
  1952. "_objFlags": 0,
  1953. "__editorExtras__": {},
  1954. "node": {
  1955. "__id__": 79
  1956. },
  1957. "_enabled": true,
  1958. "__prefab": {
  1959. "__id__": 81
  1960. },
  1961. "_contentSize": {
  1962. "__type__": "cc.Size",
  1963. "width": 54,
  1964. "height": 44
  1965. },
  1966. "_anchorPoint": {
  1967. "__type__": "cc.Vec2",
  1968. "x": 0.5,
  1969. "y": 0.5
  1970. },
  1971. "_id": ""
  1972. },
  1973. {
  1974. "__type__": "cc.CompPrefabInfo",
  1975. "fileId": "fd2JEb8NVLdbbHPOTdiCUD"
  1976. },
  1977. {
  1978. "__type__": "cc.Sprite",
  1979. "_name": "",
  1980. "_objFlags": 0,
  1981. "__editorExtras__": {},
  1982. "node": {
  1983. "__id__": 79
  1984. },
  1985. "_enabled": true,
  1986. "__prefab": {
  1987. "__id__": 83
  1988. },
  1989. "_customMaterial": null,
  1990. "_srcBlendFactor": 2,
  1991. "_dstBlendFactor": 4,
  1992. "_color": {
  1993. "__type__": "cc.Color",
  1994. "r": 255,
  1995. "g": 255,
  1996. "b": 255,
  1997. "a": 255
  1998. },
  1999. "_spriteFrame": {
  2000. "__uuid__": "3e4fd2a8-00c7-4ee8-84eb-7f1290e1acb5@f9941",
  2001. "__expectedType__": "cc.SpriteFrame"
  2002. },
  2003. "_type": 0,
  2004. "_fillType": 0,
  2005. "_sizeMode": 1,
  2006. "_fillCenter": {
  2007. "__type__": "cc.Vec2",
  2008. "x": 0,
  2009. "y": 0
  2010. },
  2011. "_fillStart": 0,
  2012. "_fillRange": 0,
  2013. "_isTrimmedMode": true,
  2014. "_useGrayscale": false,
  2015. "_atlas": null,
  2016. "_id": ""
  2017. },
  2018. {
  2019. "__type__": "cc.CompPrefabInfo",
  2020. "fileId": "cel0ulB9VD/owjMThEoNx6"
  2021. },
  2022. {
  2023. "__type__": "cc.PrefabInfo",
  2024. "root": {
  2025. "__id__": 1
  2026. },
  2027. "asset": {
  2028. "__id__": 0
  2029. },
  2030. "fileId": "878U5JQlJCHKvkPfL4nNVa",
  2031. "instance": null,
  2032. "targetOverrides": null,
  2033. "nestedPrefabInstanceRoots": null
  2034. },
  2035. {
  2036. "__type__": "cc.Node",
  2037. "_name": "next_level",
  2038. "_objFlags": 0,
  2039. "__editorExtras__": {},
  2040. "_parent": {
  2041. "__id__": 72
  2042. },
  2043. "_children": [],
  2044. "_active": true,
  2045. "_components": [
  2046. {
  2047. "__id__": 86
  2048. },
  2049. {
  2050. "__id__": 88
  2051. }
  2052. ],
  2053. "_prefab": {
  2054. "__id__": 90
  2055. },
  2056. "_lpos": {
  2057. "__type__": "cc.Vec3",
  2058. "x": 150,
  2059. "y": 50,
  2060. "z": 0
  2061. },
  2062. "_lrot": {
  2063. "__type__": "cc.Quat",
  2064. "x": 0,
  2065. "y": 0,
  2066. "z": 0,
  2067. "w": 1
  2068. },
  2069. "_lscale": {
  2070. "__type__": "cc.Vec3",
  2071. "x": 1,
  2072. "y": 1,
  2073. "z": 1
  2074. },
  2075. "_mobility": 0,
  2076. "_layer": 33554432,
  2077. "_euler": {
  2078. "__type__": "cc.Vec3",
  2079. "x": 0,
  2080. "y": 0,
  2081. "z": 0
  2082. },
  2083. "_id": ""
  2084. },
  2085. {
  2086. "__type__": "cc.UITransform",
  2087. "_name": "",
  2088. "_objFlags": 0,
  2089. "__editorExtras__": {},
  2090. "node": {
  2091. "__id__": 85
  2092. },
  2093. "_enabled": true,
  2094. "__prefab": {
  2095. "__id__": 87
  2096. },
  2097. "_contentSize": {
  2098. "__type__": "cc.Size",
  2099. "width": 69.58598327636719,
  2100. "height": 27.72
  2101. },
  2102. "_anchorPoint": {
  2103. "__type__": "cc.Vec2",
  2104. "x": 0.5,
  2105. "y": 0.5
  2106. },
  2107. "_id": ""
  2108. },
  2109. {
  2110. "__type__": "cc.CompPrefabInfo",
  2111. "fileId": "d2dPXM7jpI4Jeu+CGEblqe"
  2112. },
  2113. {
  2114. "__type__": "cc.Label",
  2115. "_name": "",
  2116. "_objFlags": 0,
  2117. "__editorExtras__": {},
  2118. "node": {
  2119. "__id__": 85
  2120. },
  2121. "_enabled": true,
  2122. "__prefab": {
  2123. "__id__": 89
  2124. },
  2125. "_customMaterial": null,
  2126. "_srcBlendFactor": 2,
  2127. "_dstBlendFactor": 4,
  2128. "_color": {
  2129. "__type__": "cc.Color",
  2130. "r": 138,
  2131. "g": 98,
  2132. "b": 48,
  2133. "a": 255
  2134. },
  2135. "_string": "Lv.999",
  2136. "_horizontalAlign": 1,
  2137. "_verticalAlign": 1,
  2138. "_actualFontSize": 22,
  2139. "_fontSize": 22,
  2140. "_fontFamily": "Arial",
  2141. "_lineHeight": 22,
  2142. "_overflow": 0,
  2143. "_enableWrapText": false,
  2144. "_font": {
  2145. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2146. "__expectedType__": "cc.TTFFont"
  2147. },
  2148. "_isSystemFontUsed": false,
  2149. "_spacingX": 0,
  2150. "_isItalic": false,
  2151. "_isBold": true,
  2152. "_isUnderline": false,
  2153. "_underlineHeight": 2,
  2154. "_cacheMode": 0,
  2155. "_enableOutline": false,
  2156. "_outlineColor": {
  2157. "__type__": "cc.Color",
  2158. "r": 0,
  2159. "g": 0,
  2160. "b": 0,
  2161. "a": 255
  2162. },
  2163. "_outlineWidth": 3,
  2164. "_enableShadow": false,
  2165. "_shadowColor": {
  2166. "__type__": "cc.Color",
  2167. "r": 0,
  2168. "g": 0,
  2169. "b": 0,
  2170. "a": 255
  2171. },
  2172. "_shadowOffset": {
  2173. "__type__": "cc.Vec2",
  2174. "x": 2,
  2175. "y": 2
  2176. },
  2177. "_shadowBlur": 2,
  2178. "_id": ""
  2179. },
  2180. {
  2181. "__type__": "cc.CompPrefabInfo",
  2182. "fileId": "49udBAXy5M8Jgp40MVxl6u"
  2183. },
  2184. {
  2185. "__type__": "cc.PrefabInfo",
  2186. "root": {
  2187. "__id__": 1
  2188. },
  2189. "asset": {
  2190. "__id__": 0
  2191. },
  2192. "fileId": "7dzO37qgtObpllgXZVEaNP",
  2193. "instance": null,
  2194. "targetOverrides": null,
  2195. "nestedPrefabInstanceRoots": null
  2196. },
  2197. {
  2198. "__type__": "cc.Node",
  2199. "_name": "now_attr",
  2200. "_objFlags": 0,
  2201. "__editorExtras__": {},
  2202. "_parent": {
  2203. "__id__": 72
  2204. },
  2205. "_children": [],
  2206. "_active": true,
  2207. "_components": [
  2208. {
  2209. "__id__": 92
  2210. },
  2211. {
  2212. "__id__": 94
  2213. }
  2214. ],
  2215. "_prefab": {
  2216. "__id__": 96
  2217. },
  2218. "_lpos": {
  2219. "__type__": "cc.Vec3",
  2220. "x": -150,
  2221. "y": 0,
  2222. "z": 0
  2223. },
  2224. "_lrot": {
  2225. "__type__": "cc.Quat",
  2226. "x": 0,
  2227. "y": 0,
  2228. "z": 0,
  2229. "w": 1
  2230. },
  2231. "_lscale": {
  2232. "__type__": "cc.Vec3",
  2233. "x": 1,
  2234. "y": 1,
  2235. "z": 1
  2236. },
  2237. "_mobility": 0,
  2238. "_layer": 33554432,
  2239. "_euler": {
  2240. "__type__": "cc.Vec3",
  2241. "x": 0,
  2242. "y": 0,
  2243. "z": 0
  2244. },
  2245. "_id": ""
  2246. },
  2247. {
  2248. "__type__": "cc.UITransform",
  2249. "_name": "",
  2250. "_objFlags": 0,
  2251. "__editorExtras__": {},
  2252. "node": {
  2253. "__id__": 91
  2254. },
  2255. "_enabled": true,
  2256. "__prefab": {
  2257. "__id__": 93
  2258. },
  2259. "_contentSize": {
  2260. "__type__": "cc.Size",
  2261. "width": 161.08070373535156,
  2262. "height": 27.72
  2263. },
  2264. "_anchorPoint": {
  2265. "__type__": "cc.Vec2",
  2266. "x": 0.5,
  2267. "y": 0.5
  2268. },
  2269. "_id": ""
  2270. },
  2271. {
  2272. "__type__": "cc.CompPrefabInfo",
  2273. "fileId": "4bIYxF4eVForqPWGC6m/Le"
  2274. },
  2275. {
  2276. "__type__": "cc.Label",
  2277. "_name": "",
  2278. "_objFlags": 0,
  2279. "__editorExtras__": {},
  2280. "node": {
  2281. "__id__": 91
  2282. },
  2283. "_enabled": true,
  2284. "__prefab": {
  2285. "__id__": 95
  2286. },
  2287. "_customMaterial": null,
  2288. "_srcBlendFactor": 2,
  2289. "_dstBlendFactor": 4,
  2290. "_color": {
  2291. "__type__": "cc.Color",
  2292. "r": 138,
  2293. "g": 98,
  2294. "b": 48,
  2295. "a": 255
  2296. },
  2297. "_string": "攻击 +999.999k",
  2298. "_horizontalAlign": 1,
  2299. "_verticalAlign": 1,
  2300. "_actualFontSize": 22,
  2301. "_fontSize": 22,
  2302. "_fontFamily": "Arial",
  2303. "_lineHeight": 22,
  2304. "_overflow": 0,
  2305. "_enableWrapText": false,
  2306. "_font": {
  2307. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2308. "__expectedType__": "cc.TTFFont"
  2309. },
  2310. "_isSystemFontUsed": false,
  2311. "_spacingX": 0,
  2312. "_isItalic": false,
  2313. "_isBold": true,
  2314. "_isUnderline": false,
  2315. "_underlineHeight": 2,
  2316. "_cacheMode": 0,
  2317. "_enableOutline": false,
  2318. "_outlineColor": {
  2319. "__type__": "cc.Color",
  2320. "r": 0,
  2321. "g": 0,
  2322. "b": 0,
  2323. "a": 255
  2324. },
  2325. "_outlineWidth": 3,
  2326. "_enableShadow": false,
  2327. "_shadowColor": {
  2328. "__type__": "cc.Color",
  2329. "r": 0,
  2330. "g": 0,
  2331. "b": 0,
  2332. "a": 255
  2333. },
  2334. "_shadowOffset": {
  2335. "__type__": "cc.Vec2",
  2336. "x": 2,
  2337. "y": 2
  2338. },
  2339. "_shadowBlur": 2,
  2340. "_id": ""
  2341. },
  2342. {
  2343. "__type__": "cc.CompPrefabInfo",
  2344. "fileId": "6d+GlWXA1Ew4zVDHpqgIGb"
  2345. },
  2346. {
  2347. "__type__": "cc.PrefabInfo",
  2348. "root": {
  2349. "__id__": 1
  2350. },
  2351. "asset": {
  2352. "__id__": 0
  2353. },
  2354. "fileId": "bd3AhFPGtHf6ery5wapxrc",
  2355. "instance": null,
  2356. "targetOverrides": null,
  2357. "nestedPrefabInstanceRoots": null
  2358. },
  2359. {
  2360. "__type__": "cc.Node",
  2361. "_name": "attr_arrow",
  2362. "_objFlags": 0,
  2363. "__editorExtras__": {},
  2364. "_parent": {
  2365. "__id__": 72
  2366. },
  2367. "_children": [],
  2368. "_active": true,
  2369. "_components": [
  2370. {
  2371. "__id__": 98
  2372. },
  2373. {
  2374. "__id__": 100
  2375. }
  2376. ],
  2377. "_prefab": {
  2378. "__id__": 102
  2379. },
  2380. "_lpos": {
  2381. "__type__": "cc.Vec3",
  2382. "x": 0,
  2383. "y": 0,
  2384. "z": 0
  2385. },
  2386. "_lrot": {
  2387. "__type__": "cc.Quat",
  2388. "x": 0,
  2389. "y": 0,
  2390. "z": 0,
  2391. "w": 1
  2392. },
  2393. "_lscale": {
  2394. "__type__": "cc.Vec3",
  2395. "x": 0.5,
  2396. "y": 0.5,
  2397. "z": 1
  2398. },
  2399. "_mobility": 0,
  2400. "_layer": 33554432,
  2401. "_euler": {
  2402. "__type__": "cc.Vec3",
  2403. "x": 0,
  2404. "y": 0,
  2405. "z": 0
  2406. },
  2407. "_id": ""
  2408. },
  2409. {
  2410. "__type__": "cc.UITransform",
  2411. "_name": "",
  2412. "_objFlags": 0,
  2413. "__editorExtras__": {},
  2414. "node": {
  2415. "__id__": 97
  2416. },
  2417. "_enabled": true,
  2418. "__prefab": {
  2419. "__id__": 99
  2420. },
  2421. "_contentSize": {
  2422. "__type__": "cc.Size",
  2423. "width": 54,
  2424. "height": 44
  2425. },
  2426. "_anchorPoint": {
  2427. "__type__": "cc.Vec2",
  2428. "x": 0.5,
  2429. "y": 0.5
  2430. },
  2431. "_id": ""
  2432. },
  2433. {
  2434. "__type__": "cc.CompPrefabInfo",
  2435. "fileId": "b5UU2E9QtNFYM/7fXnnyLQ"
  2436. },
  2437. {
  2438. "__type__": "cc.Sprite",
  2439. "_name": "",
  2440. "_objFlags": 0,
  2441. "__editorExtras__": {},
  2442. "node": {
  2443. "__id__": 97
  2444. },
  2445. "_enabled": true,
  2446. "__prefab": {
  2447. "__id__": 101
  2448. },
  2449. "_customMaterial": null,
  2450. "_srcBlendFactor": 2,
  2451. "_dstBlendFactor": 4,
  2452. "_color": {
  2453. "__type__": "cc.Color",
  2454. "r": 255,
  2455. "g": 255,
  2456. "b": 255,
  2457. "a": 255
  2458. },
  2459. "_spriteFrame": {
  2460. "__uuid__": "3e4fd2a8-00c7-4ee8-84eb-7f1290e1acb5@f9941",
  2461. "__expectedType__": "cc.SpriteFrame"
  2462. },
  2463. "_type": 0,
  2464. "_fillType": 0,
  2465. "_sizeMode": 1,
  2466. "_fillCenter": {
  2467. "__type__": "cc.Vec2",
  2468. "x": 0,
  2469. "y": 0
  2470. },
  2471. "_fillStart": 0,
  2472. "_fillRange": 0,
  2473. "_isTrimmedMode": true,
  2474. "_useGrayscale": false,
  2475. "_atlas": null,
  2476. "_id": ""
  2477. },
  2478. {
  2479. "__type__": "cc.CompPrefabInfo",
  2480. "fileId": "1bunCDtHNAD6CsIoYftPFg"
  2481. },
  2482. {
  2483. "__type__": "cc.PrefabInfo",
  2484. "root": {
  2485. "__id__": 1
  2486. },
  2487. "asset": {
  2488. "__id__": 0
  2489. },
  2490. "fileId": "e3+Nn5MsNCLLMzDI7RIRxk",
  2491. "instance": null,
  2492. "targetOverrides": null,
  2493. "nestedPrefabInstanceRoots": null
  2494. },
  2495. {
  2496. "__type__": "cc.Node",
  2497. "_name": "next_attr",
  2498. "_objFlags": 0,
  2499. "__editorExtras__": {},
  2500. "_parent": {
  2501. "__id__": 72
  2502. },
  2503. "_children": [
  2504. {
  2505. "__id__": 104
  2506. }
  2507. ],
  2508. "_active": true,
  2509. "_components": [
  2510. {
  2511. "__id__": 112
  2512. },
  2513. {
  2514. "__id__": 114
  2515. }
  2516. ],
  2517. "_prefab": {
  2518. "__id__": 116
  2519. },
  2520. "_lpos": {
  2521. "__type__": "cc.Vec3",
  2522. "x": 150,
  2523. "y": 0,
  2524. "z": 0
  2525. },
  2526. "_lrot": {
  2527. "__type__": "cc.Quat",
  2528. "x": 0,
  2529. "y": 0,
  2530. "z": 0,
  2531. "w": 1
  2532. },
  2533. "_lscale": {
  2534. "__type__": "cc.Vec3",
  2535. "x": 1,
  2536. "y": 1,
  2537. "z": 1
  2538. },
  2539. "_mobility": 0,
  2540. "_layer": 33554432,
  2541. "_euler": {
  2542. "__type__": "cc.Vec3",
  2543. "x": 0,
  2544. "y": 0,
  2545. "z": 0
  2546. },
  2547. "_id": ""
  2548. },
  2549. {
  2550. "__type__": "cc.Node",
  2551. "_name": "add_tx",
  2552. "_objFlags": 0,
  2553. "__editorExtras__": {},
  2554. "_parent": {
  2555. "__id__": 103
  2556. },
  2557. "_children": [],
  2558. "_active": true,
  2559. "_components": [
  2560. {
  2561. "__id__": 105
  2562. },
  2563. {
  2564. "__id__": 107
  2565. },
  2566. {
  2567. "__id__": 109
  2568. }
  2569. ],
  2570. "_prefab": {
  2571. "__id__": 111
  2572. },
  2573. "_lpos": {
  2574. "__type__": "cc.Vec3",
  2575. "x": 83.46299999999997,
  2576. "y": 0,
  2577. "z": 0
  2578. },
  2579. "_lrot": {
  2580. "__type__": "cc.Quat",
  2581. "x": 0,
  2582. "y": 0,
  2583. "z": 0,
  2584. "w": 1
  2585. },
  2586. "_lscale": {
  2587. "__type__": "cc.Vec3",
  2588. "x": 1,
  2589. "y": 1,
  2590. "z": 1
  2591. },
  2592. "_mobility": 0,
  2593. "_layer": 33554432,
  2594. "_euler": {
  2595. "__type__": "cc.Vec3",
  2596. "x": 0,
  2597. "y": 0,
  2598. "z": 0
  2599. },
  2600. "_id": ""
  2601. },
  2602. {
  2603. "__type__": "cc.UITransform",
  2604. "_name": "",
  2605. "_objFlags": 0,
  2606. "__editorExtras__": {},
  2607. "node": {
  2608. "__id__": 104
  2609. },
  2610. "_enabled": true,
  2611. "__prefab": {
  2612. "__id__": 106
  2613. },
  2614. "_contentSize": {
  2615. "__type__": "cc.Size",
  2616. "width": 73.70394897460938,
  2617. "height": 30.240000000000002
  2618. },
  2619. "_anchorPoint": {
  2620. "__type__": "cc.Vec2",
  2621. "x": 0,
  2622. "y": 0.5
  2623. },
  2624. "_id": ""
  2625. },
  2626. {
  2627. "__type__": "cc.CompPrefabInfo",
  2628. "fileId": "1ejQ1+4MFFFYf6l3GZY+6c"
  2629. },
  2630. {
  2631. "__type__": "cc.Label",
  2632. "_name": "",
  2633. "_objFlags": 0,
  2634. "__editorExtras__": {},
  2635. "node": {
  2636. "__id__": 104
  2637. },
  2638. "_enabled": true,
  2639. "__prefab": {
  2640. "__id__": 108
  2641. },
  2642. "_customMaterial": null,
  2643. "_srcBlendFactor": 2,
  2644. "_dstBlendFactor": 4,
  2645. "_color": {
  2646. "__type__": "cc.Color",
  2647. "r": 102,
  2648. "g": 210,
  2649. "b": 81,
  2650. "a": 255
  2651. },
  2652. "_string": "(+999)",
  2653. "_horizontalAlign": 0,
  2654. "_verticalAlign": 1,
  2655. "_actualFontSize": 24,
  2656. "_fontSize": 24,
  2657. "_fontFamily": "Arial",
  2658. "_lineHeight": 24,
  2659. "_overflow": 2,
  2660. "_enableWrapText": false,
  2661. "_font": {
  2662. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2663. "__expectedType__": "cc.TTFFont"
  2664. },
  2665. "_isSystemFontUsed": false,
  2666. "_spacingX": 0,
  2667. "_isItalic": false,
  2668. "_isBold": true,
  2669. "_isUnderline": false,
  2670. "_underlineHeight": 2,
  2671. "_cacheMode": 0,
  2672. "_enableOutline": false,
  2673. "_outlineColor": {
  2674. "__type__": "cc.Color",
  2675. "r": 0,
  2676. "g": 0,
  2677. "b": 0,
  2678. "a": 255
  2679. },
  2680. "_outlineWidth": 3,
  2681. "_enableShadow": false,
  2682. "_shadowColor": {
  2683. "__type__": "cc.Color",
  2684. "r": 0,
  2685. "g": 0,
  2686. "b": 0,
  2687. "a": 255
  2688. },
  2689. "_shadowOffset": {
  2690. "__type__": "cc.Vec2",
  2691. "x": 2,
  2692. "y": 2
  2693. },
  2694. "_shadowBlur": 2,
  2695. "_id": ""
  2696. },
  2697. {
  2698. "__type__": "cc.CompPrefabInfo",
  2699. "fileId": "46xdeYB7VDwIpTSK6ZVUYz"
  2700. },
  2701. {
  2702. "__type__": "cc.Widget",
  2703. "_name": "",
  2704. "_objFlags": 0,
  2705. "__editorExtras__": {},
  2706. "node": {
  2707. "__id__": 104
  2708. },
  2709. "_enabled": true,
  2710. "__prefab": {
  2711. "__id__": 110
  2712. },
  2713. "_alignFlags": 32,
  2714. "_target": null,
  2715. "_left": 44.17677307128906,
  2716. "_right": -76.62659710693356,
  2717. "_top": 0,
  2718. "_bottom": 0,
  2719. "_horizontalCenter": 0,
  2720. "_verticalCenter": 0,
  2721. "_isAbsLeft": true,
  2722. "_isAbsRight": true,
  2723. "_isAbsTop": true,
  2724. "_isAbsBottom": true,
  2725. "_isAbsHorizontalCenter": true,
  2726. "_isAbsVerticalCenter": true,
  2727. "_originalWidth": 116.9039306640625,
  2728. "_originalHeight": 0,
  2729. "_alignMode": 2,
  2730. "_lockFlags": 0,
  2731. "_id": ""
  2732. },
  2733. {
  2734. "__type__": "cc.CompPrefabInfo",
  2735. "fileId": "9fq3+jkGRLQoEK/4cxMEGC"
  2736. },
  2737. {
  2738. "__type__": "cc.PrefabInfo",
  2739. "root": {
  2740. "__id__": 1
  2741. },
  2742. "asset": {
  2743. "__id__": 0
  2744. },
  2745. "fileId": "15OFC+nOtFGK+jOFNgeng2",
  2746. "instance": null,
  2747. "targetOverrides": null,
  2748. "nestedPrefabInstanceRoots": null
  2749. },
  2750. {
  2751. "__type__": "cc.UITransform",
  2752. "_name": "",
  2753. "_objFlags": 0,
  2754. "__editorExtras__": {},
  2755. "node": {
  2756. "__id__": 103
  2757. },
  2758. "_enabled": true,
  2759. "__prefab": {
  2760. "__id__": 113
  2761. },
  2762. "_contentSize": {
  2763. "__type__": "cc.Size",
  2764. "width": 161.08070373535156,
  2765. "height": 27.72
  2766. },
  2767. "_anchorPoint": {
  2768. "__type__": "cc.Vec2",
  2769. "x": 0.5,
  2770. "y": 0.5
  2771. },
  2772. "_id": ""
  2773. },
  2774. {
  2775. "__type__": "cc.CompPrefabInfo",
  2776. "fileId": "a1261p1V5Es4B/SO4HwXy7"
  2777. },
  2778. {
  2779. "__type__": "cc.Label",
  2780. "_name": "",
  2781. "_objFlags": 0,
  2782. "__editorExtras__": {},
  2783. "node": {
  2784. "__id__": 103
  2785. },
  2786. "_enabled": true,
  2787. "__prefab": {
  2788. "__id__": 115
  2789. },
  2790. "_customMaterial": null,
  2791. "_srcBlendFactor": 2,
  2792. "_dstBlendFactor": 4,
  2793. "_color": {
  2794. "__type__": "cc.Color",
  2795. "r": 138,
  2796. "g": 98,
  2797. "b": 48,
  2798. "a": 255
  2799. },
  2800. "_string": "攻击 +999.999k",
  2801. "_horizontalAlign": 1,
  2802. "_verticalAlign": 1,
  2803. "_actualFontSize": 22,
  2804. "_fontSize": 22,
  2805. "_fontFamily": "Arial",
  2806. "_lineHeight": 22,
  2807. "_overflow": 0,
  2808. "_enableWrapText": false,
  2809. "_font": {
  2810. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2811. "__expectedType__": "cc.TTFFont"
  2812. },
  2813. "_isSystemFontUsed": false,
  2814. "_spacingX": 0,
  2815. "_isItalic": false,
  2816. "_isBold": true,
  2817. "_isUnderline": false,
  2818. "_underlineHeight": 2,
  2819. "_cacheMode": 0,
  2820. "_enableOutline": false,
  2821. "_outlineColor": {
  2822. "__type__": "cc.Color",
  2823. "r": 0,
  2824. "g": 0,
  2825. "b": 0,
  2826. "a": 255
  2827. },
  2828. "_outlineWidth": 3,
  2829. "_enableShadow": false,
  2830. "_shadowColor": {
  2831. "__type__": "cc.Color",
  2832. "r": 0,
  2833. "g": 0,
  2834. "b": 0,
  2835. "a": 255
  2836. },
  2837. "_shadowOffset": {
  2838. "__type__": "cc.Vec2",
  2839. "x": 2,
  2840. "y": 2
  2841. },
  2842. "_shadowBlur": 2,
  2843. "_id": ""
  2844. },
  2845. {
  2846. "__type__": "cc.CompPrefabInfo",
  2847. "fileId": "b7KgRj1AlPbIKnVojzSqDP"
  2848. },
  2849. {
  2850. "__type__": "cc.PrefabInfo",
  2851. "root": {
  2852. "__id__": 1
  2853. },
  2854. "asset": {
  2855. "__id__": 0
  2856. },
  2857. "fileId": "37r3+1MJVFGKENJU6g/ZMZ",
  2858. "instance": null,
  2859. "targetOverrides": null,
  2860. "nestedPrefabInstanceRoots": null
  2861. },
  2862. {
  2863. "__type__": "cc.Node",
  2864. "_name": "exp_title",
  2865. "_objFlags": 0,
  2866. "__editorExtras__": {},
  2867. "_parent": {
  2868. "__id__": 72
  2869. },
  2870. "_children": [],
  2871. "_active": true,
  2872. "_components": [
  2873. {
  2874. "__id__": 118
  2875. },
  2876. {
  2877. "__id__": 120
  2878. }
  2879. ],
  2880. "_prefab": {
  2881. "__id__": 122
  2882. },
  2883. "_lpos": {
  2884. "__type__": "cc.Vec3",
  2885. "x": -284.829,
  2886. "y": -50,
  2887. "z": 0
  2888. },
  2889. "_lrot": {
  2890. "__type__": "cc.Quat",
  2891. "x": 0,
  2892. "y": 0,
  2893. "z": 0,
  2894. "w": 1
  2895. },
  2896. "_lscale": {
  2897. "__type__": "cc.Vec3",
  2898. "x": 1,
  2899. "y": 1,
  2900. "z": 1
  2901. },
  2902. "_mobility": 0,
  2903. "_layer": 33554432,
  2904. "_euler": {
  2905. "__type__": "cc.Vec3",
  2906. "x": 0,
  2907. "y": 0,
  2908. "z": 0
  2909. },
  2910. "_id": ""
  2911. },
  2912. {
  2913. "__type__": "cc.UITransform",
  2914. "_name": "",
  2915. "_objFlags": 0,
  2916. "__editorExtras__": {},
  2917. "node": {
  2918. "__id__": 117
  2919. },
  2920. "_enabled": true,
  2921. "__prefab": {
  2922. "__id__": 119
  2923. },
  2924. "_contentSize": {
  2925. "__type__": "cc.Size",
  2926. "width": 66,
  2927. "height": 27.72
  2928. },
  2929. "_anchorPoint": {
  2930. "__type__": "cc.Vec2",
  2931. "x": 0,
  2932. "y": 0.5
  2933. },
  2934. "_id": ""
  2935. },
  2936. {
  2937. "__type__": "cc.CompPrefabInfo",
  2938. "fileId": "9e2xfDJjJACYcXVBEfSGoU"
  2939. },
  2940. {
  2941. "__type__": "cc.Label",
  2942. "_name": "",
  2943. "_objFlags": 0,
  2944. "__editorExtras__": {},
  2945. "node": {
  2946. "__id__": 117
  2947. },
  2948. "_enabled": true,
  2949. "__prefab": {
  2950. "__id__": 121
  2951. },
  2952. "_customMaterial": null,
  2953. "_srcBlendFactor": 2,
  2954. "_dstBlendFactor": 4,
  2955. "_color": {
  2956. "__type__": "cc.Color",
  2957. "r": 138,
  2958. "g": 98,
  2959. "b": 48,
  2960. "a": 255
  2961. },
  2962. "_string": "经验值",
  2963. "_horizontalAlign": 0,
  2964. "_verticalAlign": 1,
  2965. "_actualFontSize": 22,
  2966. "_fontSize": 22,
  2967. "_fontFamily": "Arial",
  2968. "_lineHeight": 22,
  2969. "_overflow": 0,
  2970. "_enableWrapText": false,
  2971. "_font": {
  2972. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2973. "__expectedType__": "cc.TTFFont"
  2974. },
  2975. "_isSystemFontUsed": false,
  2976. "_spacingX": 0,
  2977. "_isItalic": false,
  2978. "_isBold": true,
  2979. "_isUnderline": false,
  2980. "_underlineHeight": 2,
  2981. "_cacheMode": 0,
  2982. "_enableOutline": false,
  2983. "_outlineColor": {
  2984. "__type__": "cc.Color",
  2985. "r": 0,
  2986. "g": 0,
  2987. "b": 0,
  2988. "a": 255
  2989. },
  2990. "_outlineWidth": 3,
  2991. "_enableShadow": false,
  2992. "_shadowColor": {
  2993. "__type__": "cc.Color",
  2994. "r": 0,
  2995. "g": 0,
  2996. "b": 0,
  2997. "a": 255
  2998. },
  2999. "_shadowOffset": {
  3000. "__type__": "cc.Vec2",
  3001. "x": 2,
  3002. "y": 2
  3003. },
  3004. "_shadowBlur": 2,
  3005. "_id": ""
  3006. },
  3007. {
  3008. "__type__": "cc.CompPrefabInfo",
  3009. "fileId": "b58d1APPxAtZkZJa2wb3hC"
  3010. },
  3011. {
  3012. "__type__": "cc.PrefabInfo",
  3013. "root": {
  3014. "__id__": 1
  3015. },
  3016. "asset": {
  3017. "__id__": 0
  3018. },
  3019. "fileId": "40sd6p0nJHybjCLHaoD47U",
  3020. "instance": null,
  3021. "targetOverrides": null,
  3022. "nestedPrefabInstanceRoots": null
  3023. },
  3024. {
  3025. "__type__": "cc.Node",
  3026. "_name": "ProgressBar",
  3027. "_objFlags": 0,
  3028. "__editorExtras__": {},
  3029. "_parent": {
  3030. "__id__": 72
  3031. },
  3032. "_children": [
  3033. {
  3034. "__id__": 124
  3035. },
  3036. {
  3037. "__id__": 130
  3038. }
  3039. ],
  3040. "_active": true,
  3041. "_components": [
  3042. {
  3043. "__id__": 136
  3044. },
  3045. {
  3046. "__id__": 138
  3047. },
  3048. {
  3049. "__id__": 140
  3050. }
  3051. ],
  3052. "_prefab": {
  3053. "__id__": 142
  3054. },
  3055. "_lpos": {
  3056. "__type__": "cc.Vec3",
  3057. "x": 30,
  3058. "y": -50,
  3059. "z": 0
  3060. },
  3061. "_lrot": {
  3062. "__type__": "cc.Quat",
  3063. "x": 0,
  3064. "y": 0,
  3065. "z": 0,
  3066. "w": 1
  3067. },
  3068. "_lscale": {
  3069. "__type__": "cc.Vec3",
  3070. "x": 1,
  3071. "y": 1,
  3072. "z": 1
  3073. },
  3074. "_mobility": 0,
  3075. "_layer": 33554432,
  3076. "_euler": {
  3077. "__type__": "cc.Vec3",
  3078. "x": 0,
  3079. "y": 0,
  3080. "z": 0
  3081. },
  3082. "_id": ""
  3083. },
  3084. {
  3085. "__type__": "cc.Node",
  3086. "_name": "Bar",
  3087. "_objFlags": 0,
  3088. "__editorExtras__": {},
  3089. "_parent": {
  3090. "__id__": 123
  3091. },
  3092. "_children": [],
  3093. "_active": true,
  3094. "_components": [
  3095. {
  3096. "__id__": 125
  3097. },
  3098. {
  3099. "__id__": 127
  3100. }
  3101. ],
  3102. "_prefab": {
  3103. "__id__": 129
  3104. },
  3105. "_lpos": {
  3106. "__type__": "cc.Vec3",
  3107. "x": -150,
  3108. "y": 0,
  3109. "z": 0
  3110. },
  3111. "_lrot": {
  3112. "__type__": "cc.Quat",
  3113. "x": 0,
  3114. "y": 0,
  3115. "z": 0,
  3116. "w": 1
  3117. },
  3118. "_lscale": {
  3119. "__type__": "cc.Vec3",
  3120. "x": 1,
  3121. "y": 1,
  3122. "z": 1
  3123. },
  3124. "_mobility": 0,
  3125. "_layer": 33554432,
  3126. "_euler": {
  3127. "__type__": "cc.Vec3",
  3128. "x": 0,
  3129. "y": 0,
  3130. "z": 0
  3131. },
  3132. "_id": ""
  3133. },
  3134. {
  3135. "__type__": "cc.UITransform",
  3136. "_name": "",
  3137. "_objFlags": 0,
  3138. "__editorExtras__": {},
  3139. "node": {
  3140. "__id__": 124
  3141. },
  3142. "_enabled": true,
  3143. "__prefab": {
  3144. "__id__": 126
  3145. },
  3146. "_contentSize": {
  3147. "__type__": "cc.Size",
  3148. "width": 300,
  3149. "height": 25
  3150. },
  3151. "_anchorPoint": {
  3152. "__type__": "cc.Vec2",
  3153. "x": 0,
  3154. "y": 0.5
  3155. },
  3156. "_id": ""
  3157. },
  3158. {
  3159. "__type__": "cc.CompPrefabInfo",
  3160. "fileId": "fcQqefMhhE9qukaRFXLPss"
  3161. },
  3162. {
  3163. "__type__": "cc.Sprite",
  3164. "_name": "",
  3165. "_objFlags": 0,
  3166. "__editorExtras__": {},
  3167. "node": {
  3168. "__id__": 124
  3169. },
  3170. "_enabled": true,
  3171. "__prefab": {
  3172. "__id__": 128
  3173. },
  3174. "_customMaterial": null,
  3175. "_srcBlendFactor": 2,
  3176. "_dstBlendFactor": 4,
  3177. "_color": {
  3178. "__type__": "cc.Color",
  3179. "r": 255,
  3180. "g": 255,
  3181. "b": 255,
  3182. "a": 255
  3183. },
  3184. "_spriteFrame": {
  3185. "__uuid__": "83b42839-9b87-4bbc-8224-b3cdae7ce206@f9941",
  3186. "__expectedType__": "cc.SpriteFrame"
  3187. },
  3188. "_type": 0,
  3189. "_fillType": 0,
  3190. "_sizeMode": 0,
  3191. "_fillCenter": {
  3192. "__type__": "cc.Vec2",
  3193. "x": 0,
  3194. "y": 0
  3195. },
  3196. "_fillStart": 0,
  3197. "_fillRange": 0,
  3198. "_isTrimmedMode": true,
  3199. "_useGrayscale": false,
  3200. "_atlas": null,
  3201. "_id": ""
  3202. },
  3203. {
  3204. "__type__": "cc.CompPrefabInfo",
  3205. "fileId": "8ecGp3I4lKs5Ul1F7pZ629"
  3206. },
  3207. {
  3208. "__type__": "cc.PrefabInfo",
  3209. "root": {
  3210. "__id__": 1
  3211. },
  3212. "asset": {
  3213. "__id__": 0
  3214. },
  3215. "fileId": "21RrIq73tAvI6AYdFWk7BZ",
  3216. "instance": null,
  3217. "targetOverrides": null,
  3218. "nestedPrefabInstanceRoots": null
  3219. },
  3220. {
  3221. "__type__": "cc.Node",
  3222. "_name": "title_tx-001",
  3223. "_objFlags": 0,
  3224. "__editorExtras__": {},
  3225. "_parent": {
  3226. "__id__": 123
  3227. },
  3228. "_children": [],
  3229. "_active": true,
  3230. "_components": [
  3231. {
  3232. "__id__": 131
  3233. },
  3234. {
  3235. "__id__": 133
  3236. }
  3237. ],
  3238. "_prefab": {
  3239. "__id__": 135
  3240. },
  3241. "_lpos": {
  3242. "__type__": "cc.Vec3",
  3243. "x": 0,
  3244. "y": 0,
  3245. "z": 0
  3246. },
  3247. "_lrot": {
  3248. "__type__": "cc.Quat",
  3249. "x": 0,
  3250. "y": 0,
  3251. "z": 0,
  3252. "w": 1
  3253. },
  3254. "_lscale": {
  3255. "__type__": "cc.Vec3",
  3256. "x": 1,
  3257. "y": 1,
  3258. "z": 1
  3259. },
  3260. "_mobility": 0,
  3261. "_layer": 33554432,
  3262. "_euler": {
  3263. "__type__": "cc.Vec3",
  3264. "x": 0,
  3265. "y": 0,
  3266. "z": 0
  3267. },
  3268. "_id": ""
  3269. },
  3270. {
  3271. "__type__": "cc.UITransform",
  3272. "_name": "",
  3273. "_objFlags": 0,
  3274. "__editorExtras__": {},
  3275. "node": {
  3276. "__id__": 130
  3277. },
  3278. "_enabled": true,
  3279. "__prefab": {
  3280. "__id__": 132
  3281. },
  3282. "_contentSize": {
  3283. "__type__": "cc.Size",
  3284. "width": 88,
  3285. "height": 31.2
  3286. },
  3287. "_anchorPoint": {
  3288. "__type__": "cc.Vec2",
  3289. "x": 0.5,
  3290. "y": 0.5
  3291. },
  3292. "_id": ""
  3293. },
  3294. {
  3295. "__type__": "cc.CompPrefabInfo",
  3296. "fileId": "66J9BJijxOoYV+aqz1B57M"
  3297. },
  3298. {
  3299. "__type__": "cc.Label",
  3300. "_name": "",
  3301. "_objFlags": 0,
  3302. "__editorExtras__": {},
  3303. "node": {
  3304. "__id__": 130
  3305. },
  3306. "_enabled": true,
  3307. "__prefab": {
  3308. "__id__": 134
  3309. },
  3310. "_customMaterial": null,
  3311. "_srcBlendFactor": 2,
  3312. "_dstBlendFactor": 4,
  3313. "_color": {
  3314. "__type__": "cc.Color",
  3315. "r": 255,
  3316. "g": 255,
  3317. "b": 255,
  3318. "a": 255
  3319. },
  3320. "_string": "100/100",
  3321. "_horizontalAlign": 1,
  3322. "_verticalAlign": 1,
  3323. "_actualFontSize": 20,
  3324. "_fontSize": 20,
  3325. "_fontFamily": "Arial",
  3326. "_lineHeight": 20,
  3327. "_overflow": 0,
  3328. "_enableWrapText": false,
  3329. "_font": {
  3330. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  3331. "__expectedType__": "cc.TTFFont"
  3332. },
  3333. "_isSystemFontUsed": false,
  3334. "_spacingX": 0,
  3335. "_isItalic": false,
  3336. "_isBold": true,
  3337. "_isUnderline": false,
  3338. "_underlineHeight": 2,
  3339. "_cacheMode": 0,
  3340. "_enableOutline": true,
  3341. "_outlineColor": {
  3342. "__type__": "cc.Color",
  3343. "r": 0,
  3344. "g": 0,
  3345. "b": 0,
  3346. "a": 255
  3347. },
  3348. "_outlineWidth": 3,
  3349. "_enableShadow": false,
  3350. "_shadowColor": {
  3351. "__type__": "cc.Color",
  3352. "r": 0,
  3353. "g": 0,
  3354. "b": 0,
  3355. "a": 255
  3356. },
  3357. "_shadowOffset": {
  3358. "__type__": "cc.Vec2",
  3359. "x": 2,
  3360. "y": 2
  3361. },
  3362. "_shadowBlur": 2,
  3363. "_id": ""
  3364. },
  3365. {
  3366. "__type__": "cc.CompPrefabInfo",
  3367. "fileId": "26pg3d2pRFiIBAgeXNoX5W"
  3368. },
  3369. {
  3370. "__type__": "cc.PrefabInfo",
  3371. "root": {
  3372. "__id__": 1
  3373. },
  3374. "asset": {
  3375. "__id__": 0
  3376. },
  3377. "fileId": "81BB8wgyVN2JigdoEXdIWS",
  3378. "instance": null,
  3379. "targetOverrides": null,
  3380. "nestedPrefabInstanceRoots": null
  3381. },
  3382. {
  3383. "__type__": "cc.UITransform",
  3384. "_name": "",
  3385. "_objFlags": 0,
  3386. "__editorExtras__": {},
  3387. "node": {
  3388. "__id__": 123
  3389. },
  3390. "_enabled": true,
  3391. "__prefab": {
  3392. "__id__": 137
  3393. },
  3394. "_contentSize": {
  3395. "__type__": "cc.Size",
  3396. "width": 304,
  3397. "height": 29
  3398. },
  3399. "_anchorPoint": {
  3400. "__type__": "cc.Vec2",
  3401. "x": 0.5,
  3402. "y": 0.5
  3403. },
  3404. "_id": ""
  3405. },
  3406. {
  3407. "__type__": "cc.CompPrefabInfo",
  3408. "fileId": "f0q0WITZ1EWaON7jyLnjLY"
  3409. },
  3410. {
  3411. "__type__": "cc.Sprite",
  3412. "_name": "",
  3413. "_objFlags": 0,
  3414. "__editorExtras__": {},
  3415. "node": {
  3416. "__id__": 123
  3417. },
  3418. "_enabled": true,
  3419. "__prefab": {
  3420. "__id__": 139
  3421. },
  3422. "_customMaterial": null,
  3423. "_srcBlendFactor": 2,
  3424. "_dstBlendFactor": 4,
  3425. "_color": {
  3426. "__type__": "cc.Color",
  3427. "r": 255,
  3428. "g": 255,
  3429. "b": 255,
  3430. "a": 255
  3431. },
  3432. "_spriteFrame": {
  3433. "__uuid__": "7e3c5a28-f0bc-4318-a354-cc413d89cc04@f9941",
  3434. "__expectedType__": "cc.SpriteFrame"
  3435. },
  3436. "_type": 1,
  3437. "_fillType": 0,
  3438. "_sizeMode": 0,
  3439. "_fillCenter": {
  3440. "__type__": "cc.Vec2",
  3441. "x": 0,
  3442. "y": 0
  3443. },
  3444. "_fillStart": 0,
  3445. "_fillRange": 0,
  3446. "_isTrimmedMode": true,
  3447. "_useGrayscale": false,
  3448. "_atlas": null,
  3449. "_id": ""
  3450. },
  3451. {
  3452. "__type__": "cc.CompPrefabInfo",
  3453. "fileId": "bcRrxrNlhN7qh4QfPEIPF5"
  3454. },
  3455. {
  3456. "__type__": "cc.ProgressBar",
  3457. "_name": "",
  3458. "_objFlags": 0,
  3459. "__editorExtras__": {},
  3460. "node": {
  3461. "__id__": 123
  3462. },
  3463. "_enabled": true,
  3464. "__prefab": {
  3465. "__id__": 141
  3466. },
  3467. "_barSprite": {
  3468. "__id__": 127
  3469. },
  3470. "_mode": 0,
  3471. "_totalLength": 300,
  3472. "_progress": 1,
  3473. "_reverse": false,
  3474. "_id": ""
  3475. },
  3476. {
  3477. "__type__": "cc.CompPrefabInfo",
  3478. "fileId": "d7/7D2zq1NlITkdgJHcGmG"
  3479. },
  3480. {
  3481. "__type__": "cc.PrefabInfo",
  3482. "root": {
  3483. "__id__": 1
  3484. },
  3485. "asset": {
  3486. "__id__": 0
  3487. },
  3488. "fileId": "dc4q7qBBhFt4N2IyEgv2CX",
  3489. "instance": null,
  3490. "targetOverrides": null,
  3491. "nestedPrefabInstanceRoots": null
  3492. },
  3493. {
  3494. "__type__": "cc.UITransform",
  3495. "_name": "",
  3496. "_objFlags": 0,
  3497. "__editorExtras__": {},
  3498. "node": {
  3499. "__id__": 72
  3500. },
  3501. "_enabled": true,
  3502. "__prefab": {
  3503. "__id__": 144
  3504. },
  3505. "_contentSize": {
  3506. "__type__": "cc.Size",
  3507. "width": 628,
  3508. "height": 160
  3509. },
  3510. "_anchorPoint": {
  3511. "__type__": "cc.Vec2",
  3512. "x": 0.5,
  3513. "y": 0.5
  3514. },
  3515. "_id": ""
  3516. },
  3517. {
  3518. "__type__": "cc.CompPrefabInfo",
  3519. "fileId": "24kmLpQNBFLKIBKmoWQrZ8"
  3520. },
  3521. {
  3522. "__type__": "cc.Sprite",
  3523. "_name": "",
  3524. "_objFlags": 0,
  3525. "__editorExtras__": {},
  3526. "node": {
  3527. "__id__": 72
  3528. },
  3529. "_enabled": true,
  3530. "__prefab": {
  3531. "__id__": 146
  3532. },
  3533. "_customMaterial": null,
  3534. "_srcBlendFactor": 2,
  3535. "_dstBlendFactor": 4,
  3536. "_color": {
  3537. "__type__": "cc.Color",
  3538. "r": 255,
  3539. "g": 255,
  3540. "b": 255,
  3541. "a": 255
  3542. },
  3543. "_spriteFrame": {
  3544. "__uuid__": "14b77576-3bb7-42e7-b2ae-637b2c376a4b@f9941",
  3545. "__expectedType__": "cc.SpriteFrame"
  3546. },
  3547. "_type": 1,
  3548. "_fillType": 0,
  3549. "_sizeMode": 0,
  3550. "_fillCenter": {
  3551. "__type__": "cc.Vec2",
  3552. "x": 0,
  3553. "y": 0
  3554. },
  3555. "_fillStart": 0,
  3556. "_fillRange": 0,
  3557. "_isTrimmedMode": true,
  3558. "_useGrayscale": false,
  3559. "_atlas": null,
  3560. "_id": ""
  3561. },
  3562. {
  3563. "__type__": "cc.CompPrefabInfo",
  3564. "fileId": "8bv43kPdpHOZcICdYTBe9A"
  3565. },
  3566. {
  3567. "__type__": "cc.PrefabInfo",
  3568. "root": {
  3569. "__id__": 1
  3570. },
  3571. "asset": {
  3572. "__id__": 0
  3573. },
  3574. "fileId": "d6WBLzsNBDC5fS2T51383F",
  3575. "instance": null,
  3576. "targetOverrides": null,
  3577. "nestedPrefabInstanceRoots": null
  3578. },
  3579. {
  3580. "__type__": "cc.Node",
  3581. "_name": "sv_bg",
  3582. "_objFlags": 0,
  3583. "__editorExtras__": {},
  3584. "_parent": {
  3585. "__id__": 35
  3586. },
  3587. "_children": [
  3588. {
  3589. "__id__": 149
  3590. }
  3591. ],
  3592. "_active": true,
  3593. "_components": [
  3594. {
  3595. "__id__": 174
  3596. },
  3597. {
  3598. "__id__": 176
  3599. }
  3600. ],
  3601. "_prefab": {
  3602. "__id__": 178
  3603. },
  3604. "_lpos": {
  3605. "__type__": "cc.Vec3",
  3606. "x": 0,
  3607. "y": -176,
  3608. "z": 0
  3609. },
  3610. "_lrot": {
  3611. "__type__": "cc.Quat",
  3612. "x": 0,
  3613. "y": 0,
  3614. "z": 0,
  3615. "w": 1
  3616. },
  3617. "_lscale": {
  3618. "__type__": "cc.Vec3",
  3619. "x": 1,
  3620. "y": 1,
  3621. "z": 1
  3622. },
  3623. "_mobility": 0,
  3624. "_layer": 33554432,
  3625. "_euler": {
  3626. "__type__": "cc.Vec3",
  3627. "x": 0,
  3628. "y": 0,
  3629. "z": 0
  3630. },
  3631. "_id": ""
  3632. },
  3633. {
  3634. "__type__": "cc.Node",
  3635. "_name": "sv",
  3636. "_objFlags": 0,
  3637. "__editorExtras__": {},
  3638. "_parent": {
  3639. "__id__": 148
  3640. },
  3641. "_children": [
  3642. {
  3643. "__id__": 150
  3644. }
  3645. ],
  3646. "_active": true,
  3647. "_components": [
  3648. {
  3649. "__id__": 164
  3650. },
  3651. {
  3652. "__id__": 166
  3653. },
  3654. {
  3655. "__id__": 168
  3656. }
  3657. ],
  3658. "_prefab": {
  3659. "__id__": 173
  3660. },
  3661. "_lpos": {
  3662. "__type__": "cc.Vec3",
  3663. "x": 0,
  3664. "y": 0,
  3665. "z": 0
  3666. },
  3667. "_lrot": {
  3668. "__type__": "cc.Quat",
  3669. "x": 0,
  3670. "y": 0,
  3671. "z": 0,
  3672. "w": 1
  3673. },
  3674. "_lscale": {
  3675. "__type__": "cc.Vec3",
  3676. "x": 1,
  3677. "y": 1,
  3678. "z": 1
  3679. },
  3680. "_mobility": 0,
  3681. "_layer": 33554432,
  3682. "_euler": {
  3683. "__type__": "cc.Vec3",
  3684. "x": 0,
  3685. "y": 0,
  3686. "z": 0
  3687. },
  3688. "_id": ""
  3689. },
  3690. {
  3691. "__type__": "cc.Node",
  3692. "_name": "view",
  3693. "_objFlags": 0,
  3694. "__editorExtras__": {},
  3695. "_parent": {
  3696. "__id__": 149
  3697. },
  3698. "_children": [
  3699. {
  3700. "__id__": 151
  3701. }
  3702. ],
  3703. "_active": true,
  3704. "_components": [
  3705. {
  3706. "__id__": 157
  3707. },
  3708. {
  3709. "__id__": 159
  3710. },
  3711. {
  3712. "__id__": 161
  3713. }
  3714. ],
  3715. "_prefab": {
  3716. "__id__": 163
  3717. },
  3718. "_lpos": {
  3719. "__type__": "cc.Vec3",
  3720. "x": 0,
  3721. "y": 188,
  3722. "z": 0
  3723. },
  3724. "_lrot": {
  3725. "__type__": "cc.Quat",
  3726. "x": 0,
  3727. "y": 0,
  3728. "z": 0,
  3729. "w": 1
  3730. },
  3731. "_lscale": {
  3732. "__type__": "cc.Vec3",
  3733. "x": 1,
  3734. "y": 1,
  3735. "z": 1
  3736. },
  3737. "_mobility": 0,
  3738. "_layer": 33554432,
  3739. "_euler": {
  3740. "__type__": "cc.Vec3",
  3741. "x": 0,
  3742. "y": 0,
  3743. "z": 0
  3744. },
  3745. "_id": ""
  3746. },
  3747. {
  3748. "__type__": "cc.Node",
  3749. "_name": "content",
  3750. "_objFlags": 0,
  3751. "__editorExtras__": {},
  3752. "_parent": {
  3753. "__id__": 150
  3754. },
  3755. "_children": [],
  3756. "_active": true,
  3757. "_components": [
  3758. {
  3759. "__id__": 152
  3760. },
  3761. {
  3762. "__id__": 154
  3763. }
  3764. ],
  3765. "_prefab": {
  3766. "__id__": 156
  3767. },
  3768. "_lpos": {
  3769. "__type__": "cc.Vec3",
  3770. "x": 0,
  3771. "y": 0,
  3772. "z": 0
  3773. },
  3774. "_lrot": {
  3775. "__type__": "cc.Quat",
  3776. "x": 0,
  3777. "y": 0,
  3778. "z": 0,
  3779. "w": 1
  3780. },
  3781. "_lscale": {
  3782. "__type__": "cc.Vec3",
  3783. "x": 1,
  3784. "y": 1,
  3785. "z": 1
  3786. },
  3787. "_mobility": 0,
  3788. "_layer": 33554432,
  3789. "_euler": {
  3790. "__type__": "cc.Vec3",
  3791. "x": 0,
  3792. "y": 0,
  3793. "z": 0
  3794. },
  3795. "_id": ""
  3796. },
  3797. {
  3798. "__type__": "cc.UITransform",
  3799. "_name": "",
  3800. "_objFlags": 0,
  3801. "__editorExtras__": {},
  3802. "node": {
  3803. "__id__": 151
  3804. },
  3805. "_enabled": true,
  3806. "__prefab": {
  3807. "__id__": 153
  3808. },
  3809. "_contentSize": {
  3810. "__type__": "cc.Size",
  3811. "width": 630,
  3812. "height": 20
  3813. },
  3814. "_anchorPoint": {
  3815. "__type__": "cc.Vec2",
  3816. "x": 0.5,
  3817. "y": 1
  3818. },
  3819. "_id": ""
  3820. },
  3821. {
  3822. "__type__": "cc.CompPrefabInfo",
  3823. "fileId": "33gd2opMhCg5IgRyFdAkLS"
  3824. },
  3825. {
  3826. "__type__": "cc.Layout",
  3827. "_name": "",
  3828. "_objFlags": 0,
  3829. "__editorExtras__": {},
  3830. "node": {
  3831. "__id__": 151
  3832. },
  3833. "_enabled": true,
  3834. "__prefab": {
  3835. "__id__": 155
  3836. },
  3837. "_resizeMode": 1,
  3838. "_layoutType": 3,
  3839. "_cellSize": {
  3840. "__type__": "cc.Size",
  3841. "width": 40,
  3842. "height": 40
  3843. },
  3844. "_startAxis": 0,
  3845. "_paddingLeft": 5,
  3846. "_paddingRight": 0,
  3847. "_paddingTop": 10,
  3848. "_paddingBottom": 10,
  3849. "_spacingX": 30,
  3850. "_spacingY": 20,
  3851. "_verticalDirection": 1,
  3852. "_horizontalDirection": 0,
  3853. "_constraint": 0,
  3854. "_constraintNum": 2,
  3855. "_affectedByScale": false,
  3856. "_isAlign": false,
  3857. "_id": ""
  3858. },
  3859. {
  3860. "__type__": "cc.CompPrefabInfo",
  3861. "fileId": "c6AJzks2tE4LaUO5ZBJa29"
  3862. },
  3863. {
  3864. "__type__": "cc.PrefabInfo",
  3865. "root": {
  3866. "__id__": 1
  3867. },
  3868. "asset": {
  3869. "__id__": 0
  3870. },
  3871. "fileId": "f0Obx6i8FL8Jk87s0kMtqy",
  3872. "instance": null,
  3873. "targetOverrides": null,
  3874. "nestedPrefabInstanceRoots": null
  3875. },
  3876. {
  3877. "__type__": "cc.UITransform",
  3878. "_name": "",
  3879. "_objFlags": 0,
  3880. "__editorExtras__": {},
  3881. "node": {
  3882. "__id__": 150
  3883. },
  3884. "_enabled": true,
  3885. "__prefab": {
  3886. "__id__": 158
  3887. },
  3888. "_contentSize": {
  3889. "__type__": "cc.Size",
  3890. "width": 630,
  3891. "height": 376
  3892. },
  3893. "_anchorPoint": {
  3894. "__type__": "cc.Vec2",
  3895. "x": 0.5,
  3896. "y": 1
  3897. },
  3898. "_id": ""
  3899. },
  3900. {
  3901. "__type__": "cc.CompPrefabInfo",
  3902. "fileId": "4frRWtTbdPdooVWwtdan1v"
  3903. },
  3904. {
  3905. "__type__": "cc.Mask",
  3906. "_name": "",
  3907. "_objFlags": 0,
  3908. "__editorExtras__": {},
  3909. "node": {
  3910. "__id__": 150
  3911. },
  3912. "_enabled": true,
  3913. "__prefab": {
  3914. "__id__": 160
  3915. },
  3916. "_type": 0,
  3917. "_inverted": false,
  3918. "_segments": 64,
  3919. "_alphaThreshold": 0.1,
  3920. "_id": ""
  3921. },
  3922. {
  3923. "__type__": "cc.CompPrefabInfo",
  3924. "fileId": "82HyOqBONJXpNpuxt7nEqi"
  3925. },
  3926. {
  3927. "__type__": "cc.Graphics",
  3928. "_name": "",
  3929. "_objFlags": 0,
  3930. "__editorExtras__": {},
  3931. "node": {
  3932. "__id__": 150
  3933. },
  3934. "_enabled": true,
  3935. "__prefab": {
  3936. "__id__": 162
  3937. },
  3938. "_customMaterial": null,
  3939. "_srcBlendFactor": 2,
  3940. "_dstBlendFactor": 4,
  3941. "_color": {
  3942. "__type__": "cc.Color",
  3943. "r": 255,
  3944. "g": 255,
  3945. "b": 255,
  3946. "a": 255
  3947. },
  3948. "_lineWidth": 1,
  3949. "_strokeColor": {
  3950. "__type__": "cc.Color",
  3951. "r": 0,
  3952. "g": 0,
  3953. "b": 0,
  3954. "a": 255
  3955. },
  3956. "_lineJoin": 2,
  3957. "_lineCap": 0,
  3958. "_fillColor": {
  3959. "__type__": "cc.Color",
  3960. "r": 255,
  3961. "g": 255,
  3962. "b": 255,
  3963. "a": 0
  3964. },
  3965. "_miterLimit": 10,
  3966. "_id": ""
  3967. },
  3968. {
  3969. "__type__": "cc.CompPrefabInfo",
  3970. "fileId": "0bOELWiYxAu7lipiNWmiXu"
  3971. },
  3972. {
  3973. "__type__": "cc.PrefabInfo",
  3974. "root": {
  3975. "__id__": 1
  3976. },
  3977. "asset": {
  3978. "__id__": 0
  3979. },
  3980. "fileId": "bcUo2XNVRKL7azANlAkK0T",
  3981. "instance": null,
  3982. "targetOverrides": null,
  3983. "nestedPrefabInstanceRoots": null
  3984. },
  3985. {
  3986. "__type__": "cc.UITransform",
  3987. "_name": "",
  3988. "_objFlags": 0,
  3989. "__editorExtras__": {},
  3990. "node": {
  3991. "__id__": 149
  3992. },
  3993. "_enabled": true,
  3994. "__prefab": {
  3995. "__id__": 165
  3996. },
  3997. "_contentSize": {
  3998. "__type__": "cc.Size",
  3999. "width": 630,
  4000. "height": 376
  4001. },
  4002. "_anchorPoint": {
  4003. "__type__": "cc.Vec2",
  4004. "x": 0.5,
  4005. "y": 0.5
  4006. },
  4007. "_id": ""
  4008. },
  4009. {
  4010. "__type__": "cc.CompPrefabInfo",
  4011. "fileId": "55afESSDxP/KBS4bjLB3WP"
  4012. },
  4013. {
  4014. "__type__": "cc.ScrollView",
  4015. "_name": "",
  4016. "_objFlags": 0,
  4017. "__editorExtras__": {},
  4018. "node": {
  4019. "__id__": 149
  4020. },
  4021. "_enabled": true,
  4022. "__prefab": {
  4023. "__id__": 167
  4024. },
  4025. "bounceDuration": 0.23,
  4026. "brake": 0.75,
  4027. "elastic": true,
  4028. "inertia": true,
  4029. "horizontal": false,
  4030. "vertical": true,
  4031. "cancelInnerEvents": true,
  4032. "scrollEvents": [],
  4033. "_content": {
  4034. "__id__": 151
  4035. },
  4036. "_horizontalScrollBar": null,
  4037. "_verticalScrollBar": null,
  4038. "_id": ""
  4039. },
  4040. {
  4041. "__type__": "cc.CompPrefabInfo",
  4042. "fileId": "ef7j3VQ95PAqnqbHHUkkof"
  4043. },
  4044. {
  4045. "__type__": "b3be3x8rnhKRZd5v1Xo0Flv",
  4046. "_name": "",
  4047. "_objFlags": 0,
  4048. "__editorExtras__": {},
  4049. "node": {
  4050. "__id__": 149
  4051. },
  4052. "_enabled": true,
  4053. "__prefab": {
  4054. "__id__": 169
  4055. },
  4056. "templateType": 2,
  4057. "tmpNode": null,
  4058. "tmpPrefab": {
  4059. "__uuid__": "1b68cbb7-baf0-4e46-aa7d-2e99a45168aa",
  4060. "__expectedType__": "cc.Prefab"
  4061. },
  4062. "_slideMode": 1,
  4063. "pageDistance": 0.3,
  4064. "pageChangeEvent": {
  4065. "__id__": 170
  4066. },
  4067. "_virtual": true,
  4068. "cyclic": false,
  4069. "lackCenter": false,
  4070. "lackSlide": false,
  4071. "_updateRate": 0,
  4072. "frameByFrameRenderNum": 0,
  4073. "renderEvent": {
  4074. "__id__": 171
  4075. },
  4076. "selectedMode": 0,
  4077. "selectedEvent": {
  4078. "__id__": 172
  4079. },
  4080. "repeatEventSingle": false,
  4081. "_id": ""
  4082. },
  4083. {
  4084. "__type__": "cc.CompPrefabInfo",
  4085. "fileId": "75wDwdtpBLWp438vTSfa3P"
  4086. },
  4087. {
  4088. "__type__": "cc.ClickEvent",
  4089. "target": null,
  4090. "component": "",
  4091. "_componentId": "",
  4092. "handler": "",
  4093. "customEventData": ""
  4094. },
  4095. {
  4096. "__type__": "cc.ClickEvent",
  4097. "target": {
  4098. "__id__": 1
  4099. },
  4100. "component": "",
  4101. "_componentId": "4fc4daJKR9AdqqJYYB05UAT",
  4102. "handler": "onEventList",
  4103. "customEventData": ""
  4104. },
  4105. {
  4106. "__type__": "cc.ClickEvent",
  4107. "target": null,
  4108. "component": "",
  4109. "_componentId": "",
  4110. "handler": "",
  4111. "customEventData": ""
  4112. },
  4113. {
  4114. "__type__": "cc.PrefabInfo",
  4115. "root": {
  4116. "__id__": 1
  4117. },
  4118. "asset": {
  4119. "__id__": 0
  4120. },
  4121. "fileId": "cbJZYPXAtGjL0H1/4ly02+",
  4122. "instance": null,
  4123. "targetOverrides": null,
  4124. "nestedPrefabInstanceRoots": null
  4125. },
  4126. {
  4127. "__type__": "cc.UITransform",
  4128. "_name": "",
  4129. "_objFlags": 0,
  4130. "__editorExtras__": {},
  4131. "node": {
  4132. "__id__": 148
  4133. },
  4134. "_enabled": true,
  4135. "__prefab": {
  4136. "__id__": 175
  4137. },
  4138. "_contentSize": {
  4139. "__type__": "cc.Size",
  4140. "width": 668,
  4141. "height": 385
  4142. },
  4143. "_anchorPoint": {
  4144. "__type__": "cc.Vec2",
  4145. "x": 0.5,
  4146. "y": 0.5
  4147. },
  4148. "_id": ""
  4149. },
  4150. {
  4151. "__type__": "cc.CompPrefabInfo",
  4152. "fileId": "06b8kknZdBWaKwTUfLSqSP"
  4153. },
  4154. {
  4155. "__type__": "cc.Sprite",
  4156. "_name": "",
  4157. "_objFlags": 0,
  4158. "__editorExtras__": {},
  4159. "node": {
  4160. "__id__": 148
  4161. },
  4162. "_enabled": true,
  4163. "__prefab": {
  4164. "__id__": 177
  4165. },
  4166. "_customMaterial": null,
  4167. "_srcBlendFactor": 2,
  4168. "_dstBlendFactor": 4,
  4169. "_color": {
  4170. "__type__": "cc.Color",
  4171. "r": 255,
  4172. "g": 255,
  4173. "b": 255,
  4174. "a": 255
  4175. },
  4176. "_spriteFrame": {
  4177. "__uuid__": "3e15eeb6-df20-467e-aa83-5f59e2762632@f9941",
  4178. "__expectedType__": "cc.SpriteFrame"
  4179. },
  4180. "_type": 1,
  4181. "_fillType": 0,
  4182. "_sizeMode": 0,
  4183. "_fillCenter": {
  4184. "__type__": "cc.Vec2",
  4185. "x": 0,
  4186. "y": 0
  4187. },
  4188. "_fillStart": 0,
  4189. "_fillRange": 0,
  4190. "_isTrimmedMode": true,
  4191. "_useGrayscale": false,
  4192. "_atlas": null,
  4193. "_id": ""
  4194. },
  4195. {
  4196. "__type__": "cc.CompPrefabInfo",
  4197. "fileId": "9fREzTlMBCOqyq34wDqgYD"
  4198. },
  4199. {
  4200. "__type__": "cc.PrefabInfo",
  4201. "root": {
  4202. "__id__": 1
  4203. },
  4204. "asset": {
  4205. "__id__": 0
  4206. },
  4207. "fileId": "adwxnez0hHbrXWBpoQuIp3",
  4208. "instance": null,
  4209. "targetOverrides": null,
  4210. "nestedPrefabInstanceRoots": null
  4211. },
  4212. {
  4213. "__type__": "cc.Node",
  4214. "_name": "update_btn",
  4215. "_objFlags": 0,
  4216. "__editorExtras__": {},
  4217. "_parent": {
  4218. "__id__": 35
  4219. },
  4220. "_children": [
  4221. {
  4222. "__id__": 180
  4223. }
  4224. ],
  4225. "_active": true,
  4226. "_components": [
  4227. {
  4228. "__id__": 186
  4229. },
  4230. {
  4231. "__id__": 188
  4232. },
  4233. {
  4234. "__id__": 190
  4235. }
  4236. ],
  4237. "_prefab": {
  4238. "__id__": 193
  4239. },
  4240. "_lpos": {
  4241. "__type__": "cc.Vec3",
  4242. "x": 150,
  4243. "y": -440,
  4244. "z": 0
  4245. },
  4246. "_lrot": {
  4247. "__type__": "cc.Quat",
  4248. "x": 0,
  4249. "y": 0,
  4250. "z": 0,
  4251. "w": 1
  4252. },
  4253. "_lscale": {
  4254. "__type__": "cc.Vec3",
  4255. "x": 0.75,
  4256. "y": 0.75,
  4257. "z": 1
  4258. },
  4259. "_mobility": 0,
  4260. "_layer": 33554432,
  4261. "_euler": {
  4262. "__type__": "cc.Vec3",
  4263. "x": 0,
  4264. "y": 0,
  4265. "z": 0
  4266. },
  4267. "_id": ""
  4268. },
  4269. {
  4270. "__type__": "cc.Node",
  4271. "_name": "btn_tx",
  4272. "_objFlags": 0,
  4273. "__editorExtras__": {},
  4274. "_parent": {
  4275. "__id__": 179
  4276. },
  4277. "_children": [],
  4278. "_active": true,
  4279. "_components": [
  4280. {
  4281. "__id__": 181
  4282. },
  4283. {
  4284. "__id__": 183
  4285. }
  4286. ],
  4287. "_prefab": {
  4288. "__id__": 185
  4289. },
  4290. "_lpos": {
  4291. "__type__": "cc.Vec3",
  4292. "x": 0,
  4293. "y": 0,
  4294. "z": 0
  4295. },
  4296. "_lrot": {
  4297. "__type__": "cc.Quat",
  4298. "x": 0,
  4299. "y": 0,
  4300. "z": 0,
  4301. "w": 1
  4302. },
  4303. "_lscale": {
  4304. "__type__": "cc.Vec3",
  4305. "x": 1,
  4306. "y": 1,
  4307. "z": 1
  4308. },
  4309. "_mobility": 0,
  4310. "_layer": 33554432,
  4311. "_euler": {
  4312. "__type__": "cc.Vec3",
  4313. "x": 0,
  4314. "y": 0,
  4315. "z": 0
  4316. },
  4317. "_id": ""
  4318. },
  4319. {
  4320. "__type__": "cc.UITransform",
  4321. "_name": "",
  4322. "_objFlags": 0,
  4323. "__editorExtras__": {},
  4324. "node": {
  4325. "__id__": 180
  4326. },
  4327. "_enabled": true,
  4328. "__prefab": {
  4329. "__id__": 182
  4330. },
  4331. "_contentSize": {
  4332. "__type__": "cc.Size",
  4333. "width": 116,
  4334. "height": 39.28
  4335. },
  4336. "_anchorPoint": {
  4337. "__type__": "cc.Vec2",
  4338. "x": 0.5,
  4339. "y": 0.5
  4340. },
  4341. "_id": ""
  4342. },
  4343. {
  4344. "__type__": "cc.CompPrefabInfo",
  4345. "fileId": "c3vSNgeulNgp/zIF1wUwyb"
  4346. },
  4347. {
  4348. "__type__": "cc.Label",
  4349. "_name": "",
  4350. "_objFlags": 0,
  4351. "__editorExtras__": {},
  4352. "node": {
  4353. "__id__": 180
  4354. },
  4355. "_enabled": true,
  4356. "__prefab": {
  4357. "__id__": 184
  4358. },
  4359. "_customMaterial": null,
  4360. "_srcBlendFactor": 2,
  4361. "_dstBlendFactor": 4,
  4362. "_color": {
  4363. "__type__": "cc.Color",
  4364. "r": 255,
  4365. "g": 255,
  4366. "b": 255,
  4367. "a": 255
  4368. },
  4369. "_string": "确定",
  4370. "_horizontalAlign": 1,
  4371. "_verticalAlign": 1,
  4372. "_actualFontSize": 28,
  4373. "_fontSize": 28,
  4374. "_fontFamily": "Arial",
  4375. "_lineHeight": 28,
  4376. "_overflow": 2,
  4377. "_enableWrapText": false,
  4378. "_font": {
  4379. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  4380. "__expectedType__": "cc.TTFFont"
  4381. },
  4382. "_isSystemFontUsed": false,
  4383. "_spacingX": 0,
  4384. "_isItalic": false,
  4385. "_isBold": true,
  4386. "_isUnderline": false,
  4387. "_underlineHeight": 2,
  4388. "_cacheMode": 0,
  4389. "_enableOutline": true,
  4390. "_outlineColor": {
  4391. "__type__": "cc.Color",
  4392. "r": 117,
  4393. "g": 71,
  4394. "b": 16,
  4395. "a": 255
  4396. },
  4397. "_outlineWidth": 3,
  4398. "_enableShadow": false,
  4399. "_shadowColor": {
  4400. "__type__": "cc.Color",
  4401. "r": 0,
  4402. "g": 0,
  4403. "b": 0,
  4404. "a": 255
  4405. },
  4406. "_shadowOffset": {
  4407. "__type__": "cc.Vec2",
  4408. "x": 2,
  4409. "y": 2
  4410. },
  4411. "_shadowBlur": 2,
  4412. "_id": ""
  4413. },
  4414. {
  4415. "__type__": "cc.CompPrefabInfo",
  4416. "fileId": "52I8/VHXdGGKU/ZoyPX5aj"
  4417. },
  4418. {
  4419. "__type__": "cc.PrefabInfo",
  4420. "root": {
  4421. "__id__": 1
  4422. },
  4423. "asset": {
  4424. "__id__": 0
  4425. },
  4426. "fileId": "8alb+5OQVIQ6bKMFz0rnLF",
  4427. "instance": null,
  4428. "targetOverrides": null,
  4429. "nestedPrefabInstanceRoots": null
  4430. },
  4431. {
  4432. "__type__": "cc.UITransform",
  4433. "_name": "",
  4434. "_objFlags": 0,
  4435. "__editorExtras__": {},
  4436. "node": {
  4437. "__id__": 179
  4438. },
  4439. "_enabled": true,
  4440. "__prefab": {
  4441. "__id__": 187
  4442. },
  4443. "_contentSize": {
  4444. "__type__": "cc.Size",
  4445. "width": 182,
  4446. "height": 90
  4447. },
  4448. "_anchorPoint": {
  4449. "__type__": "cc.Vec2",
  4450. "x": 0.5,
  4451. "y": 0.5
  4452. },
  4453. "_id": ""
  4454. },
  4455. {
  4456. "__type__": "cc.CompPrefabInfo",
  4457. "fileId": "6cQ/gDu/JEdKTaV5FKMWJQ"
  4458. },
  4459. {
  4460. "__type__": "cc.Sprite",
  4461. "_name": "",
  4462. "_objFlags": 0,
  4463. "__editorExtras__": {},
  4464. "node": {
  4465. "__id__": 179
  4466. },
  4467. "_enabled": true,
  4468. "__prefab": {
  4469. "__id__": 189
  4470. },
  4471. "_customMaterial": null,
  4472. "_srcBlendFactor": 2,
  4473. "_dstBlendFactor": 4,
  4474. "_color": {
  4475. "__type__": "cc.Color",
  4476. "r": 255,
  4477. "g": 255,
  4478. "b": 255,
  4479. "a": 255
  4480. },
  4481. "_spriteFrame": {
  4482. "__uuid__": "34877f34-75e1-4cbb-8ec9-f1eda8f303fc@f9941",
  4483. "__expectedType__": "cc.SpriteFrame"
  4484. },
  4485. "_type": 0,
  4486. "_fillType": 0,
  4487. "_sizeMode": 1,
  4488. "_fillCenter": {
  4489. "__type__": "cc.Vec2",
  4490. "x": 0,
  4491. "y": 0
  4492. },
  4493. "_fillStart": 0,
  4494. "_fillRange": 0,
  4495. "_isTrimmedMode": true,
  4496. "_useGrayscale": false,
  4497. "_atlas": null,
  4498. "_id": ""
  4499. },
  4500. {
  4501. "__type__": "cc.CompPrefabInfo",
  4502. "fileId": "faVJs1MOxNQ4etc1fUDfX8"
  4503. },
  4504. {
  4505. "__type__": "cc.Button",
  4506. "_name": "",
  4507. "_objFlags": 0,
  4508. "__editorExtras__": {},
  4509. "node": {
  4510. "__id__": 179
  4511. },
  4512. "_enabled": true,
  4513. "__prefab": {
  4514. "__id__": 191
  4515. },
  4516. "clickEvents": [
  4517. {
  4518. "__id__": 192
  4519. }
  4520. ],
  4521. "_interactable": true,
  4522. "_transition": 3,
  4523. "_normalColor": {
  4524. "__type__": "cc.Color",
  4525. "r": 214,
  4526. "g": 214,
  4527. "b": 214,
  4528. "a": 255
  4529. },
  4530. "_hoverColor": {
  4531. "__type__": "cc.Color",
  4532. "r": 211,
  4533. "g": 211,
  4534. "b": 211,
  4535. "a": 255
  4536. },
  4537. "_pressedColor": {
  4538. "__type__": "cc.Color",
  4539. "r": 255,
  4540. "g": 255,
  4541. "b": 255,
  4542. "a": 255
  4543. },
  4544. "_disabledColor": {
  4545. "__type__": "cc.Color",
  4546. "r": 124,
  4547. "g": 124,
  4548. "b": 124,
  4549. "a": 255
  4550. },
  4551. "_normalSprite": null,
  4552. "_hoverSprite": null,
  4553. "_pressedSprite": null,
  4554. "_disabledSprite": null,
  4555. "_duration": 0.1,
  4556. "_zoomScale": 0.8,
  4557. "_target": {
  4558. "__id__": 179
  4559. },
  4560. "_id": ""
  4561. },
  4562. {
  4563. "__type__": "cc.CompPrefabInfo",
  4564. "fileId": "a9WVgNJhpM6ps6qHQwhrwR"
  4565. },
  4566. {
  4567. "__type__": "cc.ClickEvent",
  4568. "target": {
  4569. "__id__": 1
  4570. },
  4571. "component": "",
  4572. "_componentId": "4fc4daJKR9AdqqJYYB05UAT",
  4573. "handler": "onTouchButton",
  4574. "customEventData": ""
  4575. },
  4576. {
  4577. "__type__": "cc.PrefabInfo",
  4578. "root": {
  4579. "__id__": 1
  4580. },
  4581. "asset": {
  4582. "__id__": 0
  4583. },
  4584. "fileId": "36G5iR9rlHp6gastFB1xy4",
  4585. "instance": null,
  4586. "targetOverrides": null,
  4587. "nestedPrefabInstanceRoots": null
  4588. },
  4589. {
  4590. "__type__": "cc.Node",
  4591. "_name": "auto_btn",
  4592. "_objFlags": 0,
  4593. "__editorExtras__": {},
  4594. "_parent": {
  4595. "__id__": 35
  4596. },
  4597. "_children": [
  4598. {
  4599. "__id__": 195
  4600. }
  4601. ],
  4602. "_active": true,
  4603. "_components": [
  4604. {
  4605. "__id__": 201
  4606. },
  4607. {
  4608. "__id__": 203
  4609. },
  4610. {
  4611. "__id__": 205
  4612. }
  4613. ],
  4614. "_prefab": {
  4615. "__id__": 208
  4616. },
  4617. "_lpos": {
  4618. "__type__": "cc.Vec3",
  4619. "x": -150,
  4620. "y": -440,
  4621. "z": 0
  4622. },
  4623. "_lrot": {
  4624. "__type__": "cc.Quat",
  4625. "x": 0,
  4626. "y": 0,
  4627. "z": 0,
  4628. "w": 1
  4629. },
  4630. "_lscale": {
  4631. "__type__": "cc.Vec3",
  4632. "x": 0.75,
  4633. "y": 0.75,
  4634. "z": 1
  4635. },
  4636. "_mobility": 0,
  4637. "_layer": 33554432,
  4638. "_euler": {
  4639. "__type__": "cc.Vec3",
  4640. "x": 0,
  4641. "y": 0,
  4642. "z": 0
  4643. },
  4644. "_id": ""
  4645. },
  4646. {
  4647. "__type__": "cc.Node",
  4648. "_name": "btn_tx",
  4649. "_objFlags": 0,
  4650. "__editorExtras__": {},
  4651. "_parent": {
  4652. "__id__": 194
  4653. },
  4654. "_children": [],
  4655. "_active": true,
  4656. "_components": [
  4657. {
  4658. "__id__": 196
  4659. },
  4660. {
  4661. "__id__": 198
  4662. }
  4663. ],
  4664. "_prefab": {
  4665. "__id__": 200
  4666. },
  4667. "_lpos": {
  4668. "__type__": "cc.Vec3",
  4669. "x": 0,
  4670. "y": 0,
  4671. "z": 0
  4672. },
  4673. "_lrot": {
  4674. "__type__": "cc.Quat",
  4675. "x": 0,
  4676. "y": 0,
  4677. "z": 0,
  4678. "w": 1
  4679. },
  4680. "_lscale": {
  4681. "__type__": "cc.Vec3",
  4682. "x": 1,
  4683. "y": 1,
  4684. "z": 1
  4685. },
  4686. "_mobility": 0,
  4687. "_layer": 33554432,
  4688. "_euler": {
  4689. "__type__": "cc.Vec3",
  4690. "x": 0,
  4691. "y": 0,
  4692. "z": 0
  4693. },
  4694. "_id": ""
  4695. },
  4696. {
  4697. "__type__": "cc.UITransform",
  4698. "_name": "",
  4699. "_objFlags": 0,
  4700. "__editorExtras__": {},
  4701. "node": {
  4702. "__id__": 195
  4703. },
  4704. "_enabled": true,
  4705. "__prefab": {
  4706. "__id__": 197
  4707. },
  4708. "_contentSize": {
  4709. "__type__": "cc.Size",
  4710. "width": 62,
  4711. "height": 41.28
  4712. },
  4713. "_anchorPoint": {
  4714. "__type__": "cc.Vec2",
  4715. "x": 0.5,
  4716. "y": 0.5
  4717. },
  4718. "_id": ""
  4719. },
  4720. {
  4721. "__type__": "cc.CompPrefabInfo",
  4722. "fileId": "92WWfpDlhCxJFxEEdTtWds"
  4723. },
  4724. {
  4725. "__type__": "cc.Label",
  4726. "_name": "",
  4727. "_objFlags": 0,
  4728. "__editorExtras__": {},
  4729. "node": {
  4730. "__id__": 195
  4731. },
  4732. "_enabled": true,
  4733. "__prefab": {
  4734. "__id__": 199
  4735. },
  4736. "_customMaterial": null,
  4737. "_srcBlendFactor": 2,
  4738. "_dstBlendFactor": 4,
  4739. "_color": {
  4740. "__type__": "cc.Color",
  4741. "r": 255,
  4742. "g": 255,
  4743. "b": 255,
  4744. "a": 255
  4745. },
  4746. "_string": "取消",
  4747. "_horizontalAlign": 1,
  4748. "_verticalAlign": 1,
  4749. "_actualFontSize": 28,
  4750. "_fontSize": 28,
  4751. "_fontFamily": "Arial",
  4752. "_lineHeight": 28,
  4753. "_overflow": 0,
  4754. "_enableWrapText": false,
  4755. "_font": {
  4756. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  4757. "__expectedType__": "cc.TTFFont"
  4758. },
  4759. "_isSystemFontUsed": false,
  4760. "_spacingX": 0,
  4761. "_isItalic": false,
  4762. "_isBold": true,
  4763. "_isUnderline": false,
  4764. "_underlineHeight": 2,
  4765. "_cacheMode": 0,
  4766. "_enableOutline": true,
  4767. "_outlineColor": {
  4768. "__type__": "cc.Color",
  4769. "r": 40,
  4770. "g": 86,
  4771. "b": 115,
  4772. "a": 255
  4773. },
  4774. "_outlineWidth": 3,
  4775. "_enableShadow": false,
  4776. "_shadowColor": {
  4777. "__type__": "cc.Color",
  4778. "r": 0,
  4779. "g": 0,
  4780. "b": 0,
  4781. "a": 255
  4782. },
  4783. "_shadowOffset": {
  4784. "__type__": "cc.Vec2",
  4785. "x": 2,
  4786. "y": 2
  4787. },
  4788. "_shadowBlur": 2,
  4789. "_id": ""
  4790. },
  4791. {
  4792. "__type__": "cc.CompPrefabInfo",
  4793. "fileId": "450gwougBHHIcCb3MKpdDK"
  4794. },
  4795. {
  4796. "__type__": "cc.PrefabInfo",
  4797. "root": {
  4798. "__id__": 1
  4799. },
  4800. "asset": {
  4801. "__id__": 0
  4802. },
  4803. "fileId": "55iXSxFMJH/KI4vixAeTKv",
  4804. "instance": null,
  4805. "targetOverrides": null,
  4806. "nestedPrefabInstanceRoots": null
  4807. },
  4808. {
  4809. "__type__": "cc.UITransform",
  4810. "_name": "",
  4811. "_objFlags": 0,
  4812. "__editorExtras__": {},
  4813. "node": {
  4814. "__id__": 194
  4815. },
  4816. "_enabled": true,
  4817. "__prefab": {
  4818. "__id__": 202
  4819. },
  4820. "_contentSize": {
  4821. "__type__": "cc.Size",
  4822. "width": 182,
  4823. "height": 90
  4824. },
  4825. "_anchorPoint": {
  4826. "__type__": "cc.Vec2",
  4827. "x": 0.5,
  4828. "y": 0.5
  4829. },
  4830. "_id": ""
  4831. },
  4832. {
  4833. "__type__": "cc.CompPrefabInfo",
  4834. "fileId": "69fRIZ6BpKUJ1HNQ4QabcM"
  4835. },
  4836. {
  4837. "__type__": "cc.Sprite",
  4838. "_name": "",
  4839. "_objFlags": 0,
  4840. "__editorExtras__": {},
  4841. "node": {
  4842. "__id__": 194
  4843. },
  4844. "_enabled": true,
  4845. "__prefab": {
  4846. "__id__": 204
  4847. },
  4848. "_customMaterial": null,
  4849. "_srcBlendFactor": 2,
  4850. "_dstBlendFactor": 4,
  4851. "_color": {
  4852. "__type__": "cc.Color",
  4853. "r": 255,
  4854. "g": 255,
  4855. "b": 255,
  4856. "a": 255
  4857. },
  4858. "_spriteFrame": {
  4859. "__uuid__": "a08bf7db-92e5-4606-b525-0487cd0c3154@f9941",
  4860. "__expectedType__": "cc.SpriteFrame"
  4861. },
  4862. "_type": 0,
  4863. "_fillType": 0,
  4864. "_sizeMode": 1,
  4865. "_fillCenter": {
  4866. "__type__": "cc.Vec2",
  4867. "x": 0,
  4868. "y": 0
  4869. },
  4870. "_fillStart": 0,
  4871. "_fillRange": 0,
  4872. "_isTrimmedMode": true,
  4873. "_useGrayscale": false,
  4874. "_atlas": null,
  4875. "_id": ""
  4876. },
  4877. {
  4878. "__type__": "cc.CompPrefabInfo",
  4879. "fileId": "b7rrwmnwNM0rNAEwP5lCW9"
  4880. },
  4881. {
  4882. "__type__": "cc.Button",
  4883. "_name": "",
  4884. "_objFlags": 0,
  4885. "__editorExtras__": {},
  4886. "node": {
  4887. "__id__": 194
  4888. },
  4889. "_enabled": true,
  4890. "__prefab": {
  4891. "__id__": 206
  4892. },
  4893. "clickEvents": [
  4894. {
  4895. "__id__": 207
  4896. }
  4897. ],
  4898. "_interactable": true,
  4899. "_transition": 3,
  4900. "_normalColor": {
  4901. "__type__": "cc.Color",
  4902. "r": 214,
  4903. "g": 214,
  4904. "b": 214,
  4905. "a": 255
  4906. },
  4907. "_hoverColor": {
  4908. "__type__": "cc.Color",
  4909. "r": 211,
  4910. "g": 211,
  4911. "b": 211,
  4912. "a": 255
  4913. },
  4914. "_pressedColor": {
  4915. "__type__": "cc.Color",
  4916. "r": 255,
  4917. "g": 255,
  4918. "b": 255,
  4919. "a": 255
  4920. },
  4921. "_disabledColor": {
  4922. "__type__": "cc.Color",
  4923. "r": 124,
  4924. "g": 124,
  4925. "b": 124,
  4926. "a": 255
  4927. },
  4928. "_normalSprite": null,
  4929. "_hoverSprite": null,
  4930. "_pressedSprite": null,
  4931. "_disabledSprite": null,
  4932. "_duration": 0.1,
  4933. "_zoomScale": 0.8,
  4934. "_target": {
  4935. "__id__": 194
  4936. },
  4937. "_id": ""
  4938. },
  4939. {
  4940. "__type__": "cc.CompPrefabInfo",
  4941. "fileId": "2djUTIgE9OS65I6rNBN5HQ"
  4942. },
  4943. {
  4944. "__type__": "cc.ClickEvent",
  4945. "target": {
  4946. "__id__": 1
  4947. },
  4948. "component": "",
  4949. "_componentId": "4fc4daJKR9AdqqJYYB05UAT",
  4950. "handler": "onTouchButton",
  4951. "customEventData": ""
  4952. },
  4953. {
  4954. "__type__": "cc.PrefabInfo",
  4955. "root": {
  4956. "__id__": 1
  4957. },
  4958. "asset": {
  4959. "__id__": 0
  4960. },
  4961. "fileId": "0dA2mYFeJBBIf/H7LpKQL/",
  4962. "instance": null,
  4963. "targetOverrides": null,
  4964. "nestedPrefabInstanceRoots": null
  4965. },
  4966. {
  4967. "__type__": "cc.UITransform",
  4968. "_name": "",
  4969. "_objFlags": 0,
  4970. "__editorExtras__": {},
  4971. "node": {
  4972. "__id__": 35
  4973. },
  4974. "_enabled": true,
  4975. "__prefab": {
  4976. "__id__": 210
  4977. },
  4978. "_contentSize": {
  4979. "__type__": "cc.Size",
  4980. "width": 704,
  4981. "height": 1012
  4982. },
  4983. "_anchorPoint": {
  4984. "__type__": "cc.Vec2",
  4985. "x": 0.5,
  4986. "y": 0.5
  4987. },
  4988. "_id": ""
  4989. },
  4990. {
  4991. "__type__": "cc.CompPrefabInfo",
  4992. "fileId": "58SY+x0rlNIo6UON3U1Y++"
  4993. },
  4994. {
  4995. "__type__": "cc.Sprite",
  4996. "_name": "",
  4997. "_objFlags": 0,
  4998. "__editorExtras__": {},
  4999. "node": {
  5000. "__id__": 35
  5001. },
  5002. "_enabled": true,
  5003. "__prefab": {
  5004. "__id__": 212
  5005. },
  5006. "_customMaterial": null,
  5007. "_srcBlendFactor": 2,
  5008. "_dstBlendFactor": 4,
  5009. "_color": {
  5010. "__type__": "cc.Color",
  5011. "r": 255,
  5012. "g": 255,
  5013. "b": 255,
  5014. "a": 255
  5015. },
  5016. "_spriteFrame": {
  5017. "__uuid__": "a4e9b2b4-69c4-49c9-97d7-1f9aa4d7418c@f9941",
  5018. "__expectedType__": "cc.SpriteFrame"
  5019. },
  5020. "_type": 1,
  5021. "_fillType": 0,
  5022. "_sizeMode": 0,
  5023. "_fillCenter": {
  5024. "__type__": "cc.Vec2",
  5025. "x": 0,
  5026. "y": 0
  5027. },
  5028. "_fillStart": 0,
  5029. "_fillRange": 0,
  5030. "_isTrimmedMode": true,
  5031. "_useGrayscale": false,
  5032. "_atlas": null,
  5033. "_id": ""
  5034. },
  5035. {
  5036. "__type__": "cc.CompPrefabInfo",
  5037. "fileId": "05y4QLm2NMhKvIUFPerk7S"
  5038. },
  5039. {
  5040. "__type__": "cc.Widget",
  5041. "_name": "",
  5042. "_objFlags": 0,
  5043. "__editorExtras__": {},
  5044. "node": {
  5045. "__id__": 35
  5046. },
  5047. "_enabled": true,
  5048. "__prefab": {
  5049. "__id__": 214
  5050. },
  5051. "_alignFlags": 18,
  5052. "_target": null,
  5053. "_left": 0,
  5054. "_right": 0,
  5055. "_top": 0,
  5056. "_bottom": 0,
  5057. "_horizontalCenter": 0,
  5058. "_verticalCenter": 0,
  5059. "_isAbsLeft": true,
  5060. "_isAbsRight": true,
  5061. "_isAbsTop": true,
  5062. "_isAbsBottom": true,
  5063. "_isAbsHorizontalCenter": true,
  5064. "_isAbsVerticalCenter": true,
  5065. "_originalWidth": 0,
  5066. "_originalHeight": 0,
  5067. "_alignMode": 2,
  5068. "_lockFlags": 0,
  5069. "_id": ""
  5070. },
  5071. {
  5072. "__type__": "cc.CompPrefabInfo",
  5073. "fileId": "36dYVU8CdAo4Onx+ZVi6br"
  5074. },
  5075. {
  5076. "__type__": "cc.BlockInputEvents",
  5077. "_name": "",
  5078. "_objFlags": 0,
  5079. "__editorExtras__": {},
  5080. "node": {
  5081. "__id__": 35
  5082. },
  5083. "_enabled": true,
  5084. "__prefab": {
  5085. "__id__": 216
  5086. },
  5087. "_id": ""
  5088. },
  5089. {
  5090. "__type__": "cc.CompPrefabInfo",
  5091. "fileId": "d7Ub2nJAxJ9KtrhQGI33jW"
  5092. },
  5093. {
  5094. "__type__": "cc.UIOpacity",
  5095. "_name": "",
  5096. "_objFlags": 0,
  5097. "__editorExtras__": {},
  5098. "node": {
  5099. "__id__": 35
  5100. },
  5101. "_enabled": true,
  5102. "__prefab": {
  5103. "__id__": 218
  5104. },
  5105. "_opacity": 255,
  5106. "_id": ""
  5107. },
  5108. {
  5109. "__type__": "cc.CompPrefabInfo",
  5110. "fileId": "69L4TUhi5IgodCf6V29oNp"
  5111. },
  5112. {
  5113. "__type__": "cc.PrefabInfo",
  5114. "root": {
  5115. "__id__": 1
  5116. },
  5117. "asset": {
  5118. "__id__": 0
  5119. },
  5120. "fileId": "16osAoBkdHlKLt3lxNjBsc",
  5121. "instance": null,
  5122. "targetOverrides": null,
  5123. "nestedPrefabInstanceRoots": null
  5124. },
  5125. {
  5126. "__type__": "cc.UITransform",
  5127. "_name": "",
  5128. "_objFlags": 0,
  5129. "__editorExtras__": {},
  5130. "node": {
  5131. "__id__": 1
  5132. },
  5133. "_enabled": true,
  5134. "__prefab": {
  5135. "__id__": 221
  5136. },
  5137. "_contentSize": {
  5138. "__type__": "cc.Size",
  5139. "width": 750,
  5140. "height": 1334
  5141. },
  5142. "_anchorPoint": {
  5143. "__type__": "cc.Vec2",
  5144. "x": 0.5,
  5145. "y": 0.5
  5146. },
  5147. "_id": ""
  5148. },
  5149. {
  5150. "__type__": "cc.CompPrefabInfo",
  5151. "fileId": "55Xtfq6iZLi4VV+eKSX0+l"
  5152. },
  5153. {
  5154. "__type__": "cc.Widget",
  5155. "_name": "",
  5156. "_objFlags": 0,
  5157. "__editorExtras__": {},
  5158. "node": {
  5159. "__id__": 1
  5160. },
  5161. "_enabled": true,
  5162. "__prefab": {
  5163. "__id__": 223
  5164. },
  5165. "_alignFlags": 45,
  5166. "_target": null,
  5167. "_left": 0,
  5168. "_right": 0,
  5169. "_top": 0,
  5170. "_bottom": 0,
  5171. "_horizontalCenter": 0,
  5172. "_verticalCenter": 0,
  5173. "_isAbsLeft": true,
  5174. "_isAbsRight": true,
  5175. "_isAbsTop": true,
  5176. "_isAbsBottom": true,
  5177. "_isAbsHorizontalCenter": true,
  5178. "_isAbsVerticalCenter": true,
  5179. "_originalWidth": 100,
  5180. "_originalHeight": 100,
  5181. "_alignMode": 2,
  5182. "_lockFlags": 0,
  5183. "_id": ""
  5184. },
  5185. {
  5186. "__type__": "cc.CompPrefabInfo",
  5187. "fileId": "66b+7e7GRBzYBxbdeHY31r"
  5188. },
  5189. {
  5190. "__type__": "cc.Animation",
  5191. "_name": "",
  5192. "_objFlags": 0,
  5193. "__editorExtras__": {},
  5194. "node": {
  5195. "__id__": 1
  5196. },
  5197. "_enabled": true,
  5198. "__prefab": {
  5199. "__id__": 225
  5200. },
  5201. "playOnLoad": false,
  5202. "_clips": [
  5203. {
  5204. "__uuid__": "89470c00-b399-43af-90c8-f03a38385103",
  5205. "__expectedType__": "cc.AnimationClip"
  5206. },
  5207. {
  5208. "__uuid__": "e0837eb3-8f98-4446-ae76-8a15cc5efaf1",
  5209. "__expectedType__": "cc.AnimationClip"
  5210. }
  5211. ],
  5212. "_defaultClip": null,
  5213. "_id": ""
  5214. },
  5215. {
  5216. "__type__": "cc.CompPrefabInfo",
  5217. "fileId": "83iuxSJuJIRIFlJVAZD8ix"
  5218. },
  5219. {
  5220. "__type__": "cc.UIOpacity",
  5221. "_name": "",
  5222. "_objFlags": 0,
  5223. "__editorExtras__": {},
  5224. "node": {
  5225. "__id__": 1
  5226. },
  5227. "_enabled": true,
  5228. "__prefab": {
  5229. "__id__": 227
  5230. },
  5231. "_opacity": 255,
  5232. "_id": ""
  5233. },
  5234. {
  5235. "__type__": "cc.CompPrefabInfo",
  5236. "fileId": "23jD5W5GJKX4DO4XtKFyVt"
  5237. },
  5238. {
  5239. "__type__": "4fc4daJKR9AdqqJYYB05UAT",
  5240. "_name": "",
  5241. "_objFlags": 0,
  5242. "__editorExtras__": {},
  5243. "node": {
  5244. "__id__": 1
  5245. },
  5246. "_enabled": true,
  5247. "__prefab": {
  5248. "__id__": 229
  5249. },
  5250. "frame_load": false,
  5251. "load_priority": 0,
  5252. "ui_type": 0,
  5253. "_base_view_full": false,
  5254. "_base_view_block": false,
  5255. "_base_quick_close": false,
  5256. "_base_quick_close_exclude_node": [],
  5257. "_base_quick_close_destroy": true,
  5258. "closeTips": null,
  5259. "titieTx": null,
  5260. "_id": ""
  5261. },
  5262. {
  5263. "__type__": "cc.CompPrefabInfo",
  5264. "fileId": "d0Rcuv9mRICoU54jXfT1Ik"
  5265. },
  5266. {
  5267. "__type__": "cc.PrefabInfo",
  5268. "root": {
  5269. "__id__": 1
  5270. },
  5271. "asset": {
  5272. "__id__": 0
  5273. },
  5274. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  5275. "instance": null,
  5276. "targetOverrides": null,
  5277. "nestedPrefabInstanceRoots": [
  5278. {
  5279. "__id__": 56
  5280. }
  5281. ]
  5282. }
  5283. ]