game.scene 88 KB

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