icon_info.prefab 91 KB

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