game.scene 86 KB

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