SudokuOutput.prefab 89 KB

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