game.scene 75 KB

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