game.scene 78 KB

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