game.scene 86 KB

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