UserPrefab_21201.prefab 90 KB

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