game.scene 89 KB

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