game.scene 90 KB

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