game.scene 86 KB

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