game.scene 87 KB

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