UserPrefab_21201.prefab 87 KB

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