ebc13ba9-25b3-4404-82e3-04ed8482b95f.json 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "StartScene",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. },
  10. "asyncLoadAssets": false
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_objFlags": 0,
  15. "_parent": null,
  16. "_children": [
  17. {
  18. "__id__": 2
  19. }
  20. ],
  21. "_active": true,
  22. "_components": [],
  23. "_prefab": null,
  24. "_opacity": 255,
  25. "_color": {
  26. "__type__": "cc.Color",
  27. "r": 255,
  28. "g": 255,
  29. "b": 255,
  30. "a": 255
  31. },
  32. "_contentSize": {
  33. "__type__": "cc.Size",
  34. "width": 0,
  35. "height": 0
  36. },
  37. "_anchorPoint": {
  38. "__type__": "cc.Vec2",
  39. "x": 0,
  40. "y": 0
  41. },
  42. "_trs": {
  43. "__type__": "TypedArray",
  44. "ctor": "Float64Array",
  45. "array": [
  46. 0,
  47. 0,
  48. 0,
  49. 0,
  50. 0,
  51. 0,
  52. 1,
  53. 1,
  54. 1,
  55. 1
  56. ]
  57. },
  58. "_is3DNode": true,
  59. "_groupIndex": 0,
  60. "groupIndex": 0,
  61. "autoReleaseAssets": false,
  62. "_id": "ebc13ba9-25b3-4404-82e3-04ed8482b95f"
  63. },
  64. {
  65. "__type__": "cc.Node",
  66. "_name": "Canvas",
  67. "_objFlags": 0,
  68. "_parent": {
  69. "__id__": 1
  70. },
  71. "_children": [
  72. {
  73. "__id__": 3
  74. },
  75. {
  76. "__id__": 5
  77. },
  78. {
  79. "__id__": 72
  80. }
  81. ],
  82. "_active": true,
  83. "_components": [
  84. {
  85. "__id__": 74
  86. },
  87. {
  88. "__id__": 75
  89. },
  90. {
  91. "__id__": 76
  92. }
  93. ],
  94. "_prefab": null,
  95. "_opacity": 255,
  96. "_color": {
  97. "__type__": "cc.Color",
  98. "r": 255,
  99. "g": 255,
  100. "b": 255,
  101. "a": 255
  102. },
  103. "_contentSize": {
  104. "__type__": "cc.Size",
  105. "width": 540,
  106. "height": 960
  107. },
  108. "_anchorPoint": {
  109. "__type__": "cc.Vec2",
  110. "x": 0.5,
  111. "y": 0.5
  112. },
  113. "_trs": {
  114. "__type__": "TypedArray",
  115. "ctor": "Float64Array",
  116. "array": [
  117. 270,
  118. 480,
  119. 0,
  120. 0,
  121. 0,
  122. 0,
  123. 1,
  124. 1,
  125. 1,
  126. 1
  127. ]
  128. },
  129. "_eulerAngles": {
  130. "__type__": "cc.Vec3",
  131. "x": 0,
  132. "y": 0,
  133. "z": 0
  134. },
  135. "_skewX": 0,
  136. "_skewY": 0,
  137. "_is3DNode": false,
  138. "_groupIndex": 0,
  139. "groupIndex": 0,
  140. "_id": "28ubvqnNBH0IcXuJwpef7F"
  141. },
  142. {
  143. "__type__": "cc.Node",
  144. "_name": "Main Camera",
  145. "_objFlags": 0,
  146. "_parent": {
  147. "__id__": 2
  148. },
  149. "_children": [],
  150. "_active": true,
  151. "_components": [
  152. {
  153. "__id__": 4
  154. }
  155. ],
  156. "_prefab": null,
  157. "_opacity": 255,
  158. "_color": {
  159. "__type__": "cc.Color",
  160. "r": 255,
  161. "g": 255,
  162. "b": 255,
  163. "a": 255
  164. },
  165. "_contentSize": {
  166. "__type__": "cc.Size",
  167. "width": 0,
  168. "height": 0
  169. },
  170. "_anchorPoint": {
  171. "__type__": "cc.Vec2",
  172. "x": 0.5,
  173. "y": 0.5
  174. },
  175. "_trs": {
  176. "__type__": "TypedArray",
  177. "ctor": "Float64Array",
  178. "array": [
  179. 0,
  180. 0,
  181. 0,
  182. 0,
  183. 0,
  184. 0,
  185. 1,
  186. 1,
  187. 1,
  188. 1
  189. ]
  190. },
  191. "_eulerAngles": {
  192. "__type__": "cc.Vec3",
  193. "x": 0,
  194. "y": 0,
  195. "z": 0
  196. },
  197. "_skewX": 0,
  198. "_skewY": 0,
  199. "_is3DNode": false,
  200. "_groupIndex": 0,
  201. "groupIndex": 0,
  202. "_id": "6e/srhu31EL7IccvCVzoiD"
  203. },
  204. {
  205. "__type__": "cc.Camera",
  206. "_name": "",
  207. "_objFlags": 0,
  208. "node": {
  209. "__id__": 3
  210. },
  211. "_enabled": true,
  212. "_cullingMask": 4294967295,
  213. "_clearFlags": 7,
  214. "_backgroundColor": {
  215. "__type__": "cc.Color",
  216. "r": 0,
  217. "g": 0,
  218. "b": 0,
  219. "a": 255
  220. },
  221. "_depth": -1,
  222. "_zoomRatio": 1,
  223. "_targetTexture": null,
  224. "_fov": 60,
  225. "_orthoSize": 10,
  226. "_nearClip": 1,
  227. "_farClip": 4096,
  228. "_ortho": true,
  229. "_rect": {
  230. "__type__": "cc.Rect",
  231. "x": 0,
  232. "y": 0,
  233. "width": 1,
  234. "height": 1
  235. },
  236. "_renderStages": 1,
  237. "_alignWithScreen": true,
  238. "_id": "0a92QpFZlGAa4IxrXXUzrW"
  239. },
  240. {
  241. "__type__": "cc.Node",
  242. "_name": "BgNode",
  243. "_objFlags": 0,
  244. "_parent": {
  245. "__id__": 2
  246. },
  247. "_children": [
  248. {
  249. "__id__": 6
  250. },
  251. {
  252. "__id__": 10
  253. },
  254. {
  255. "__id__": 68
  256. }
  257. ],
  258. "_active": true,
  259. "_components": [],
  260. "_prefab": null,
  261. "_opacity": 255,
  262. "_color": {
  263. "__type__": "cc.Color",
  264. "r": 255,
  265. "g": 255,
  266. "b": 255,
  267. "a": 255
  268. },
  269. "_contentSize": {
  270. "__type__": "cc.Size",
  271. "width": 0,
  272. "height": 0
  273. },
  274. "_anchorPoint": {
  275. "__type__": "cc.Vec2",
  276. "x": 0.5,
  277. "y": 0.5
  278. },
  279. "_trs": {
  280. "__type__": "TypedArray",
  281. "ctor": "Float64Array",
  282. "array": [
  283. 0,
  284. 0,
  285. 0,
  286. 0,
  287. 0,
  288. 0,
  289. 1,
  290. 1,
  291. 1,
  292. 1
  293. ]
  294. },
  295. "_eulerAngles": {
  296. "__type__": "cc.Vec3",
  297. "x": 0,
  298. "y": 0,
  299. "z": 0
  300. },
  301. "_skewX": 0,
  302. "_skewY": 0,
  303. "_is3DNode": false,
  304. "_groupIndex": 0,
  305. "groupIndex": 0,
  306. "_id": "0dslvoJcBN9IsYOJ8wnPxs"
  307. },
  308. {
  309. "__type__": "cc.Node",
  310. "_name": "BG",
  311. "_objFlags": 0,
  312. "_parent": {
  313. "__id__": 5
  314. },
  315. "_children": [
  316. {
  317. "__id__": 7
  318. }
  319. ],
  320. "_active": true,
  321. "_components": [
  322. {
  323. "__id__": 9
  324. }
  325. ],
  326. "_prefab": null,
  327. "_opacity": 255,
  328. "_color": {
  329. "__type__": "cc.Color",
  330. "r": 255,
  331. "g": 255,
  332. "b": 255,
  333. "a": 255
  334. },
  335. "_contentSize": {
  336. "__type__": "cc.Size",
  337. "width": 540,
  338. "height": 960
  339. },
  340. "_anchorPoint": {
  341. "__type__": "cc.Vec2",
  342. "x": 0.5,
  343. "y": 0.5
  344. },
  345. "_trs": {
  346. "__type__": "TypedArray",
  347. "ctor": "Float64Array",
  348. "array": [
  349. 0,
  350. 0,
  351. 0,
  352. 0,
  353. 0,
  354. 0,
  355. 1,
  356. 1,
  357. 1,
  358. 1
  359. ]
  360. },
  361. "_eulerAngles": {
  362. "__type__": "cc.Vec3",
  363. "x": 0,
  364. "y": 0,
  365. "z": 0
  366. },
  367. "_skewX": 0,
  368. "_skewY": 0,
  369. "_is3DNode": false,
  370. "_groupIndex": 0,
  371. "groupIndex": 0,
  372. "_id": "2egqDKB0tAZqo61AMmFToa"
  373. },
  374. {
  375. "__type__": "cc.Node",
  376. "_name": "BG copy",
  377. "_objFlags": 0,
  378. "_parent": {
  379. "__id__": 6
  380. },
  381. "_children": [],
  382. "_active": true,
  383. "_components": [
  384. {
  385. "__id__": 8
  386. }
  387. ],
  388. "_prefab": null,
  389. "_opacity": 255,
  390. "_color": {
  391. "__type__": "cc.Color",
  392. "r": 255,
  393. "g": 255,
  394. "b": 255,
  395. "a": 255
  396. },
  397. "_contentSize": {
  398. "__type__": "cc.Size",
  399. "width": 540,
  400. "height": 1200
  401. },
  402. "_anchorPoint": {
  403. "__type__": "cc.Vec2",
  404. "x": 0.5,
  405. "y": 0.5
  406. },
  407. "_trs": {
  408. "__type__": "TypedArray",
  409. "ctor": "Float64Array",
  410. "array": [
  411. 0,
  412. 0,
  413. 0,
  414. 0,
  415. 0,
  416. 0,
  417. 1,
  418. 1,
  419. 1,
  420. 1
  421. ]
  422. },
  423. "_eulerAngles": {
  424. "__type__": "cc.Vec3",
  425. "x": 0,
  426. "y": 0,
  427. "z": 0
  428. },
  429. "_skewX": 0,
  430. "_skewY": 0,
  431. "_is3DNode": false,
  432. "_groupIndex": 0,
  433. "groupIndex": 0,
  434. "_id": "20z7Td0TVGVpHyXAVxCl8R"
  435. },
  436. {
  437. "__type__": "cc.Sprite",
  438. "_name": "",
  439. "_objFlags": 0,
  440. "node": {
  441. "__id__": 7
  442. },
  443. "_enabled": true,
  444. "_materials": [
  445. {
  446. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  447. }
  448. ],
  449. "_srcBlendFactor": 770,
  450. "_dstBlendFactor": 771,
  451. "_spriteFrame": {
  452. "__uuid__": "05596136-4281-4597-aabc-ae422a373730"
  453. },
  454. "_type": 0,
  455. "_sizeMode": 0,
  456. "_fillType": 0,
  457. "_fillCenter": {
  458. "__type__": "cc.Vec2",
  459. "x": 0,
  460. "y": 0
  461. },
  462. "_fillStart": 0,
  463. "_fillRange": 0,
  464. "_isTrimmedMode": true,
  465. "_atlas": null,
  466. "_id": "d7HPEPyw5E65r73aOPcV4I"
  467. },
  468. {
  469. "__type__": "cc.Sprite",
  470. "_name": "",
  471. "_objFlags": 0,
  472. "node": {
  473. "__id__": 6
  474. },
  475. "_enabled": true,
  476. "_materials": [
  477. {
  478. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  479. }
  480. ],
  481. "_srcBlendFactor": 770,
  482. "_dstBlendFactor": 771,
  483. "_spriteFrame": {
  484. "__uuid__": "05596136-4281-4597-aabc-ae422a373730"
  485. },
  486. "_type": 0,
  487. "_sizeMode": 0,
  488. "_fillType": 0,
  489. "_fillCenter": {
  490. "__type__": "cc.Vec2",
  491. "x": 0,
  492. "y": 0
  493. },
  494. "_fillStart": 0,
  495. "_fillRange": 0,
  496. "_isTrimmedMode": true,
  497. "_atlas": null,
  498. "_id": "eaPg7wKVtG6oytmnhuAK/F"
  499. },
  500. {
  501. "__type__": "cc.Node",
  502. "_name": "kaiji",
  503. "_objFlags": 0,
  504. "_parent": {
  505. "__id__": 5
  506. },
  507. "_children": [
  508. {
  509. "__id__": 11
  510. },
  511. {
  512. "__id__": 14
  513. },
  514. {
  515. "__id__": 17
  516. },
  517. {
  518. "__id__": 22
  519. },
  520. {
  521. "__id__": 25
  522. },
  523. {
  524. "__id__": 28
  525. },
  526. {
  527. "__id__": 31
  528. },
  529. {
  530. "__id__": 51
  531. }
  532. ],
  533. "_active": true,
  534. "_components": [
  535. {
  536. "__id__": 66
  537. }
  538. ],
  539. "_prefab": {
  540. "__id__": 67
  541. },
  542. "_opacity": 255,
  543. "_color": {
  544. "__type__": "cc.Color",
  545. "r": 255,
  546. "g": 255,
  547. "b": 255,
  548. "a": 255
  549. },
  550. "_contentSize": {
  551. "__type__": "cc.Size",
  552. "width": 0,
  553. "height": 0
  554. },
  555. "_anchorPoint": {
  556. "__type__": "cc.Vec2",
  557. "x": 0.5,
  558. "y": 0.5
  559. },
  560. "_trs": {
  561. "__type__": "TypedArray",
  562. "ctor": "Float64Array",
  563. "array": [
  564. 0,
  565. 0,
  566. 0,
  567. 0,
  568. 0,
  569. 0,
  570. 1,
  571. 0.5,
  572. 0.48,
  573. 1
  574. ]
  575. },
  576. "_eulerAngles": {
  577. "__type__": "cc.Vec3",
  578. "x": 0,
  579. "y": 0,
  580. "z": 0
  581. },
  582. "_skewX": 0,
  583. "_skewY": 0,
  584. "_is3DNode": false,
  585. "_groupIndex": 0,
  586. "groupIndex": 0,
  587. "_id": "1dfdwaY1pP5KIJ7xUVbVgA"
  588. },
  589. {
  590. "__type__": "cc.Node",
  591. "_name": "ksan1",
  592. "_objFlags": 0,
  593. "_parent": {
  594. "__id__": 10
  595. },
  596. "_children": [],
  597. "_active": false,
  598. "_components": [
  599. {
  600. "__id__": 12
  601. }
  602. ],
  603. "_prefab": {
  604. "__id__": 13
  605. },
  606. "_opacity": 255,
  607. "_color": {
  608. "__type__": "cc.Color",
  609. "r": 255,
  610. "g": 255,
  611. "b": 255,
  612. "a": 255
  613. },
  614. "_contentSize": {
  615. "__type__": "cc.Size",
  616. "width": 243,
  617. "height": 243
  618. },
  619. "_anchorPoint": {
  620. "__type__": "cc.Vec2",
  621. "x": 0.5,
  622. "y": 0.5
  623. },
  624. "_trs": {
  625. "__type__": "TypedArray",
  626. "ctor": "Float64Array",
  627. "array": [
  628. 0,
  629. 107,
  630. 0,
  631. 0,
  632. 0,
  633. 0,
  634. 1,
  635. 1,
  636. 1,
  637. 1
  638. ]
  639. },
  640. "_eulerAngles": {
  641. "__type__": "cc.Vec3",
  642. "x": 0,
  643. "y": 0,
  644. "z": 0
  645. },
  646. "_skewX": 0,
  647. "_skewY": 0,
  648. "_is3DNode": false,
  649. "_groupIndex": 0,
  650. "groupIndex": 0,
  651. "_id": "b71MyWt5tFy4PcRMeZ8Tus"
  652. },
  653. {
  654. "__type__": "cc.Sprite",
  655. "_name": "",
  656. "_objFlags": 0,
  657. "node": {
  658. "__id__": 11
  659. },
  660. "_enabled": true,
  661. "_materials": [],
  662. "_srcBlendFactor": 770,
  663. "_dstBlendFactor": 771,
  664. "_spriteFrame": {
  665. "__uuid__": "dd4a8735-86bd-443c-9abe-f639be044508"
  666. },
  667. "_type": 0,
  668. "_sizeMode": 1,
  669. "_fillType": 0,
  670. "_fillCenter": {
  671. "__type__": "cc.Vec2",
  672. "x": 0,
  673. "y": 0
  674. },
  675. "_fillStart": 0,
  676. "_fillRange": 0,
  677. "_isTrimmedMode": true,
  678. "_atlas": null,
  679. "_id": "32MtS4O4xJ5ZlkwXsmrAeK"
  680. },
  681. {
  682. "__type__": "cc.PrefabInfo",
  683. "root": {
  684. "__id__": 10
  685. },
  686. "asset": {
  687. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  688. },
  689. "fileId": "b71MyWt5tFy4PcRMeZ8Tus",
  690. "sync": false
  691. },
  692. {
  693. "__type__": "cc.Node",
  694. "_name": "ksan2",
  695. "_objFlags": 0,
  696. "_parent": {
  697. "__id__": 10
  698. },
  699. "_children": [],
  700. "_active": false,
  701. "_components": [
  702. {
  703. "__id__": 15
  704. }
  705. ],
  706. "_prefab": {
  707. "__id__": 16
  708. },
  709. "_opacity": 255,
  710. "_color": {
  711. "__type__": "cc.Color",
  712. "r": 255,
  713. "g": 255,
  714. "b": 255,
  715. "a": 255
  716. },
  717. "_contentSize": {
  718. "__type__": "cc.Size",
  719. "width": 319,
  720. "height": 319
  721. },
  722. "_anchorPoint": {
  723. "__type__": "cc.Vec2",
  724. "x": 0.5,
  725. "y": 0.5
  726. },
  727. "_trs": {
  728. "__type__": "TypedArray",
  729. "ctor": "Float64Array",
  730. "array": [
  731. 0,
  732. 107,
  733. 0,
  734. 0,
  735. 0,
  736. 0,
  737. 1,
  738. 1,
  739. 1,
  740. 1
  741. ]
  742. },
  743. "_eulerAngles": {
  744. "__type__": "cc.Vec3",
  745. "x": 0,
  746. "y": 0,
  747. "z": 0
  748. },
  749. "_skewX": 0,
  750. "_skewY": 0,
  751. "_is3DNode": false,
  752. "_groupIndex": 0,
  753. "groupIndex": 0,
  754. "_id": "baJhOb3nBAhrospvabl2nB"
  755. },
  756. {
  757. "__type__": "cc.Sprite",
  758. "_name": "",
  759. "_objFlags": 0,
  760. "node": {
  761. "__id__": 14
  762. },
  763. "_enabled": true,
  764. "_materials": [],
  765. "_srcBlendFactor": 770,
  766. "_dstBlendFactor": 771,
  767. "_spriteFrame": {
  768. "__uuid__": "4ecd7fef-14ac-45e8-8323-9c758f939891"
  769. },
  770. "_type": 0,
  771. "_sizeMode": 1,
  772. "_fillType": 0,
  773. "_fillCenter": {
  774. "__type__": "cc.Vec2",
  775. "x": 0,
  776. "y": 0
  777. },
  778. "_fillStart": 0,
  779. "_fillRange": 0,
  780. "_isTrimmedMode": true,
  781. "_atlas": null,
  782. "_id": "afxjf+YrFHgJ+N6ZT6H7On"
  783. },
  784. {
  785. "__type__": "cc.PrefabInfo",
  786. "root": {
  787. "__id__": 10
  788. },
  789. "asset": {
  790. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  791. },
  792. "fileId": "baJhOb3nBAhrospvabl2nB",
  793. "sync": false
  794. },
  795. {
  796. "__type__": "cc.Node",
  797. "_name": "ksan",
  798. "_objFlags": 0,
  799. "_parent": {
  800. "__id__": 10
  801. },
  802. "_children": [],
  803. "_active": false,
  804. "_components": [
  805. {
  806. "__id__": 18
  807. },
  808. {
  809. "__id__": 19
  810. }
  811. ],
  812. "_prefab": {
  813. "__id__": 21
  814. },
  815. "_opacity": 255,
  816. "_color": {
  817. "__type__": "cc.Color",
  818. "r": 255,
  819. "g": 255,
  820. "b": 255,
  821. "a": 255
  822. },
  823. "_contentSize": {
  824. "__type__": "cc.Size",
  825. "width": 214,
  826. "height": 214
  827. },
  828. "_anchorPoint": {
  829. "__type__": "cc.Vec2",
  830. "x": 0.5,
  831. "y": 0.5
  832. },
  833. "_trs": {
  834. "__type__": "TypedArray",
  835. "ctor": "Float64Array",
  836. "array": [
  837. 0,
  838. 107,
  839. 0,
  840. 0,
  841. 0,
  842. 0,
  843. 1,
  844. 1,
  845. 1,
  846. 1
  847. ]
  848. },
  849. "_eulerAngles": {
  850. "__type__": "cc.Vec3",
  851. "x": 0,
  852. "y": 0,
  853. "z": 0
  854. },
  855. "_skewX": 0,
  856. "_skewY": 0,
  857. "_is3DNode": false,
  858. "_groupIndex": 0,
  859. "groupIndex": 0,
  860. "_id": "2bs/trtWhGqrn8y1YW7I2g"
  861. },
  862. {
  863. "__type__": "cc.Sprite",
  864. "_name": "",
  865. "_objFlags": 0,
  866. "node": {
  867. "__id__": 17
  868. },
  869. "_enabled": true,
  870. "_materials": [],
  871. "_srcBlendFactor": 770,
  872. "_dstBlendFactor": 771,
  873. "_spriteFrame": {
  874. "__uuid__": "ac0209a4-f28c-4294-b118-5bf1a3ea432e"
  875. },
  876. "_type": 0,
  877. "_sizeMode": 1,
  878. "_fillType": 0,
  879. "_fillCenter": {
  880. "__type__": "cc.Vec2",
  881. "x": 0,
  882. "y": 0
  883. },
  884. "_fillStart": 0,
  885. "_fillRange": 0,
  886. "_isTrimmedMode": true,
  887. "_atlas": null,
  888. "_id": "a2143mWplGxLEjjN6PQBn3"
  889. },
  890. {
  891. "__type__": "cc.Button",
  892. "_name": "",
  893. "_objFlags": 0,
  894. "node": {
  895. "__id__": 17
  896. },
  897. "_enabled": true,
  898. "_normalMaterial": null,
  899. "_grayMaterial": null,
  900. "duration": 0.1,
  901. "zoomScale": 1.2,
  902. "clickEvents": [
  903. {
  904. "__id__": 20
  905. }
  906. ],
  907. "_N$interactable": true,
  908. "_N$enableAutoGrayEffect": false,
  909. "_N$transition": 0,
  910. "transition": 0,
  911. "_N$normalColor": {
  912. "__type__": "cc.Color",
  913. "r": 214,
  914. "g": 214,
  915. "b": 214,
  916. "a": 255
  917. },
  918. "_N$pressedColor": {
  919. "__type__": "cc.Color",
  920. "r": 211,
  921. "g": 211,
  922. "b": 211,
  923. "a": 255
  924. },
  925. "pressedColor": {
  926. "__type__": "cc.Color",
  927. "r": 211,
  928. "g": 211,
  929. "b": 211,
  930. "a": 255
  931. },
  932. "_N$hoverColor": {
  933. "__type__": "cc.Color",
  934. "r": 255,
  935. "g": 255,
  936. "b": 255,
  937. "a": 255
  938. },
  939. "hoverColor": {
  940. "__type__": "cc.Color",
  941. "r": 255,
  942. "g": 255,
  943. "b": 255,
  944. "a": 255
  945. },
  946. "_N$disabledColor": {
  947. "__type__": "cc.Color",
  948. "r": 124,
  949. "g": 124,
  950. "b": 124,
  951. "a": 255
  952. },
  953. "_N$normalSprite": null,
  954. "_N$pressedSprite": null,
  955. "pressedSprite": null,
  956. "_N$hoverSprite": null,
  957. "hoverSprite": null,
  958. "_N$disabledSprite": null,
  959. "_N$target": {
  960. "__id__": 17
  961. },
  962. "_id": "54gm2rRUhNipRz5jZy06zi"
  963. },
  964. {
  965. "__type__": "cc.ClickEvent",
  966. "target": {
  967. "__id__": 2
  968. },
  969. "component": "",
  970. "_componentId": "9129bZ2zN5I673xCbm79sLC",
  971. "handler": "StartGame",
  972. "customEventData": ""
  973. },
  974. {
  975. "__type__": "cc.PrefabInfo",
  976. "root": {
  977. "__id__": 10
  978. },
  979. "asset": {
  980. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  981. },
  982. "fileId": "2bs/trtWhGqrn8y1YW7I2g",
  983. "sync": false
  984. },
  985. {
  986. "__type__": "cc.Node",
  987. "_name": "logo",
  988. "_objFlags": 0,
  989. "_parent": {
  990. "__id__": 10
  991. },
  992. "_children": [],
  993. "_active": true,
  994. "_components": [
  995. {
  996. "__id__": 23
  997. }
  998. ],
  999. "_prefab": {
  1000. "__id__": 24
  1001. },
  1002. "_opacity": 255,
  1003. "_color": {
  1004. "__type__": "cc.Color",
  1005. "r": 255,
  1006. "g": 255,
  1007. "b": 255,
  1008. "a": 255
  1009. },
  1010. "_contentSize": {
  1011. "__type__": "cc.Size",
  1012. "width": 475,
  1013. "height": 161
  1014. },
  1015. "_anchorPoint": {
  1016. "__type__": "cc.Vec2",
  1017. "x": 0.5,
  1018. "y": 0.5
  1019. },
  1020. "_trs": {
  1021. "__type__": "TypedArray",
  1022. "ctor": "Float64Array",
  1023. "array": [
  1024. 4,
  1025. 633,
  1026. 0,
  1027. 0,
  1028. 0,
  1029. 0,
  1030. 1,
  1031. 1,
  1032. 1,
  1033. 1
  1034. ]
  1035. },
  1036. "_eulerAngles": {
  1037. "__type__": "cc.Vec3",
  1038. "x": 0,
  1039. "y": 0,
  1040. "z": 0
  1041. },
  1042. "_skewX": 0,
  1043. "_skewY": 0,
  1044. "_is3DNode": false,
  1045. "_groupIndex": 0,
  1046. "groupIndex": 0,
  1047. "_id": "15liPTeVpKgIWvXy6zzeIo"
  1048. },
  1049. {
  1050. "__type__": "cc.Sprite",
  1051. "_name": "",
  1052. "_objFlags": 0,
  1053. "node": {
  1054. "__id__": 22
  1055. },
  1056. "_enabled": true,
  1057. "_materials": [
  1058. {
  1059. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1060. }
  1061. ],
  1062. "_srcBlendFactor": 770,
  1063. "_dstBlendFactor": 771,
  1064. "_spriteFrame": {
  1065. "__uuid__": "04f3281c-cb42-40b3-9170-0f813ae56e60"
  1066. },
  1067. "_type": 0,
  1068. "_sizeMode": 1,
  1069. "_fillType": 0,
  1070. "_fillCenter": {
  1071. "__type__": "cc.Vec2",
  1072. "x": 0,
  1073. "y": 0
  1074. },
  1075. "_fillStart": 0,
  1076. "_fillRange": 0,
  1077. "_isTrimmedMode": true,
  1078. "_atlas": null,
  1079. "_id": "b7WMCONEpLBakyg28WSI6M"
  1080. },
  1081. {
  1082. "__type__": "cc.PrefabInfo",
  1083. "root": {
  1084. "__id__": 10
  1085. },
  1086. "asset": {
  1087. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1088. },
  1089. "fileId": "15liPTeVpKgIWvXy6zzeIo",
  1090. "sync": false
  1091. },
  1092. {
  1093. "__type__": "cc.Node",
  1094. "_name": "wf",
  1095. "_objFlags": 0,
  1096. "_parent": {
  1097. "__id__": 10
  1098. },
  1099. "_children": [],
  1100. "_active": false,
  1101. "_components": [
  1102. {
  1103. "__id__": 26
  1104. }
  1105. ],
  1106. "_prefab": {
  1107. "__id__": 27
  1108. },
  1109. "_opacity": 255,
  1110. "_color": {
  1111. "__type__": "cc.Color",
  1112. "r": 255,
  1113. "g": 255,
  1114. "b": 255,
  1115. "a": 255
  1116. },
  1117. "_contentSize": {
  1118. "__type__": "cc.Size",
  1119. "width": 1080,
  1120. "height": 83
  1121. },
  1122. "_anchorPoint": {
  1123. "__type__": "cc.Vec2",
  1124. "x": 0.5,
  1125. "y": 0.5
  1126. },
  1127. "_trs": {
  1128. "__type__": "TypedArray",
  1129. "ctor": "Float64Array",
  1130. "array": [
  1131. 0,
  1132. -502,
  1133. 0,
  1134. 0,
  1135. 0,
  1136. 0,
  1137. 1,
  1138. 1,
  1139. 1,
  1140. 1
  1141. ]
  1142. },
  1143. "_eulerAngles": {
  1144. "__type__": "cc.Vec3",
  1145. "x": 0,
  1146. "y": 0,
  1147. "z": 0
  1148. },
  1149. "_skewX": 0,
  1150. "_skewY": 0,
  1151. "_is3DNode": false,
  1152. "_groupIndex": 0,
  1153. "groupIndex": 0,
  1154. "_id": "628FRY8ltCLaXqxTQa20C0"
  1155. },
  1156. {
  1157. "__type__": "cc.Sprite",
  1158. "_name": "",
  1159. "_objFlags": 0,
  1160. "node": {
  1161. "__id__": 25
  1162. },
  1163. "_enabled": true,
  1164. "_materials": [],
  1165. "_srcBlendFactor": 770,
  1166. "_dstBlendFactor": 771,
  1167. "_spriteFrame": {
  1168. "__uuid__": "02236a02-9d83-4b63-8b28-243375730a6a"
  1169. },
  1170. "_type": 0,
  1171. "_sizeMode": 1,
  1172. "_fillType": 0,
  1173. "_fillCenter": {
  1174. "__type__": "cc.Vec2",
  1175. "x": 0,
  1176. "y": 0
  1177. },
  1178. "_fillStart": 0,
  1179. "_fillRange": 0,
  1180. "_isTrimmedMode": true,
  1181. "_atlas": null,
  1182. "_id": "63Aoyvo4lPjra4RI6P+Tc8"
  1183. },
  1184. {
  1185. "__type__": "cc.PrefabInfo",
  1186. "root": {
  1187. "__id__": 10
  1188. },
  1189. "asset": {
  1190. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1191. },
  1192. "fileId": "628FRY8ltCLaXqxTQa20C0",
  1193. "sync": false
  1194. },
  1195. {
  1196. "__type__": "cc.Node",
  1197. "_name": "phbtb",
  1198. "_objFlags": 0,
  1199. "_parent": {
  1200. "__id__": 10
  1201. },
  1202. "_children": [],
  1203. "_active": false,
  1204. "_components": [
  1205. {
  1206. "__id__": 29
  1207. }
  1208. ],
  1209. "_prefab": {
  1210. "__id__": 30
  1211. },
  1212. "_opacity": 255,
  1213. "_color": {
  1214. "__type__": "cc.Color",
  1215. "r": 255,
  1216. "g": 255,
  1217. "b": 255,
  1218. "a": 255
  1219. },
  1220. "_contentSize": {
  1221. "__type__": "cc.Size",
  1222. "width": 286,
  1223. "height": 257
  1224. },
  1225. "_anchorPoint": {
  1226. "__type__": "cc.Vec2",
  1227. "x": 0.5,
  1228. "y": 0.5
  1229. },
  1230. "_trs": {
  1231. "__type__": "TypedArray",
  1232. "ctor": "Float64Array",
  1233. "array": [
  1234. 0,
  1235. -308,
  1236. 0,
  1237. 0,
  1238. 0,
  1239. 0,
  1240. 1,
  1241. 1,
  1242. 1,
  1243. 1
  1244. ]
  1245. },
  1246. "_eulerAngles": {
  1247. "__type__": "cc.Vec3",
  1248. "x": 0,
  1249. "y": 0,
  1250. "z": 0
  1251. },
  1252. "_skewX": 0,
  1253. "_skewY": 0,
  1254. "_is3DNode": false,
  1255. "_groupIndex": 0,
  1256. "groupIndex": 0,
  1257. "_id": "66pyry5klOkYR4zNRCbQcU"
  1258. },
  1259. {
  1260. "__type__": "cc.Sprite",
  1261. "_name": "",
  1262. "_objFlags": 0,
  1263. "node": {
  1264. "__id__": 28
  1265. },
  1266. "_enabled": true,
  1267. "_materials": [],
  1268. "_srcBlendFactor": 770,
  1269. "_dstBlendFactor": 771,
  1270. "_spriteFrame": {
  1271. "__uuid__": "9539f31e-0b8e-4a98-a87a-ecb96d2ff479"
  1272. },
  1273. "_type": 0,
  1274. "_sizeMode": 1,
  1275. "_fillType": 0,
  1276. "_fillCenter": {
  1277. "__type__": "cc.Vec2",
  1278. "x": 0,
  1279. "y": 0
  1280. },
  1281. "_fillStart": 0,
  1282. "_fillRange": 0,
  1283. "_isTrimmedMode": true,
  1284. "_atlas": null,
  1285. "_id": "e8u7s1hKVKzo/B43sdoeZt"
  1286. },
  1287. {
  1288. "__type__": "cc.PrefabInfo",
  1289. "root": {
  1290. "__id__": 10
  1291. },
  1292. "asset": {
  1293. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1294. },
  1295. "fileId": "66pyry5klOkYR4zNRCbQcU",
  1296. "sync": false
  1297. },
  1298. {
  1299. "__type__": "cc.Node",
  1300. "_name": "Up",
  1301. "_objFlags": 0,
  1302. "_parent": {
  1303. "__id__": 10
  1304. },
  1305. "_children": [
  1306. {
  1307. "__id__": 32
  1308. },
  1309. {
  1310. "__id__": 35
  1311. },
  1312. {
  1313. "__id__": 38
  1314. },
  1315. {
  1316. "__id__": 43
  1317. },
  1318. {
  1319. "__id__": 46
  1320. }
  1321. ],
  1322. "_active": true,
  1323. "_components": [
  1324. {
  1325. "__id__": 49
  1326. }
  1327. ],
  1328. "_prefab": {
  1329. "__id__": 50
  1330. },
  1331. "_opacity": 255,
  1332. "_color": {
  1333. "__type__": "cc.Color",
  1334. "r": 255,
  1335. "g": 255,
  1336. "b": 255,
  1337. "a": 255
  1338. },
  1339. "_contentSize": {
  1340. "__type__": "cc.Size",
  1341. "width": 0,
  1342. "height": 0
  1343. },
  1344. "_anchorPoint": {
  1345. "__type__": "cc.Vec2",
  1346. "x": 0.5,
  1347. "y": 0.5
  1348. },
  1349. "_trs": {
  1350. "__type__": "TypedArray",
  1351. "ctor": "Float64Array",
  1352. "array": [
  1353. 0,
  1354. 0,
  1355. 0,
  1356. 0,
  1357. 0,
  1358. 0,
  1359. 1,
  1360. 1,
  1361. 1,
  1362. 1
  1363. ]
  1364. },
  1365. "_eulerAngles": {
  1366. "__type__": "cc.Vec3",
  1367. "x": 0,
  1368. "y": 0,
  1369. "z": 0
  1370. },
  1371. "_skewX": 0,
  1372. "_skewY": 0,
  1373. "_is3DNode": false,
  1374. "_groupIndex": 0,
  1375. "groupIndex": 0,
  1376. "_id": "42Goy9OwBJQqt1uR/ALdgV"
  1377. },
  1378. {
  1379. "__type__": "cc.Node",
  1380. "_name": "ksan1",
  1381. "_objFlags": 0,
  1382. "_parent": {
  1383. "__id__": 31
  1384. },
  1385. "_children": [],
  1386. "_active": false,
  1387. "_components": [
  1388. {
  1389. "__id__": 33
  1390. }
  1391. ],
  1392. "_prefab": {
  1393. "__id__": 34
  1394. },
  1395. "_opacity": 255,
  1396. "_color": {
  1397. "__type__": "cc.Color",
  1398. "r": 255,
  1399. "g": 255,
  1400. "b": 255,
  1401. "a": 255
  1402. },
  1403. "_contentSize": {
  1404. "__type__": "cc.Size",
  1405. "width": 243,
  1406. "height": 243
  1407. },
  1408. "_anchorPoint": {
  1409. "__type__": "cc.Vec2",
  1410. "x": 0.5,
  1411. "y": 0.5
  1412. },
  1413. "_trs": {
  1414. "__type__": "TypedArray",
  1415. "ctor": "Float64Array",
  1416. "array": [
  1417. 0,
  1418. 107,
  1419. 0,
  1420. 0,
  1421. 0,
  1422. 0,
  1423. 1,
  1424. 1,
  1425. 1,
  1426. 1
  1427. ]
  1428. },
  1429. "_eulerAngles": {
  1430. "__type__": "cc.Vec3",
  1431. "x": 0,
  1432. "y": 0,
  1433. "z": 0
  1434. },
  1435. "_skewX": 0,
  1436. "_skewY": 0,
  1437. "_is3DNode": false,
  1438. "_groupIndex": 0,
  1439. "groupIndex": 0,
  1440. "_id": "17VM5uM3xFNYVjLZEwGScY"
  1441. },
  1442. {
  1443. "__type__": "cc.Sprite",
  1444. "_name": "",
  1445. "_objFlags": 0,
  1446. "node": {
  1447. "__id__": 32
  1448. },
  1449. "_enabled": true,
  1450. "_materials": [
  1451. {
  1452. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1453. }
  1454. ],
  1455. "_srcBlendFactor": 770,
  1456. "_dstBlendFactor": 771,
  1457. "_spriteFrame": {
  1458. "__uuid__": "dd4a8735-86bd-443c-9abe-f639be044508"
  1459. },
  1460. "_type": 0,
  1461. "_sizeMode": 1,
  1462. "_fillType": 0,
  1463. "_fillCenter": {
  1464. "__type__": "cc.Vec2",
  1465. "x": 0,
  1466. "y": 0
  1467. },
  1468. "_fillStart": 0,
  1469. "_fillRange": 0,
  1470. "_isTrimmedMode": true,
  1471. "_atlas": null,
  1472. "_id": "94iteuuR9MHLrnkDkVyNLY"
  1473. },
  1474. {
  1475. "__type__": "cc.PrefabInfo",
  1476. "root": {
  1477. "__id__": 10
  1478. },
  1479. "asset": {
  1480. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1481. },
  1482. "fileId": "17VM5uM3xFNYVjLZEwGScY",
  1483. "sync": false
  1484. },
  1485. {
  1486. "__type__": "cc.Node",
  1487. "_name": "ksan2",
  1488. "_objFlags": 0,
  1489. "_parent": {
  1490. "__id__": 31
  1491. },
  1492. "_children": [],
  1493. "_active": false,
  1494. "_components": [
  1495. {
  1496. "__id__": 36
  1497. }
  1498. ],
  1499. "_prefab": {
  1500. "__id__": 37
  1501. },
  1502. "_opacity": 255,
  1503. "_color": {
  1504. "__type__": "cc.Color",
  1505. "r": 255,
  1506. "g": 255,
  1507. "b": 255,
  1508. "a": 255
  1509. },
  1510. "_contentSize": {
  1511. "__type__": "cc.Size",
  1512. "width": 319,
  1513. "height": 319
  1514. },
  1515. "_anchorPoint": {
  1516. "__type__": "cc.Vec2",
  1517. "x": 0.5,
  1518. "y": 0.5
  1519. },
  1520. "_trs": {
  1521. "__type__": "TypedArray",
  1522. "ctor": "Float64Array",
  1523. "array": [
  1524. 0,
  1525. 107,
  1526. 0,
  1527. 0,
  1528. 0,
  1529. 0,
  1530. 1,
  1531. 1,
  1532. 1,
  1533. 1
  1534. ]
  1535. },
  1536. "_eulerAngles": {
  1537. "__type__": "cc.Vec3",
  1538. "x": 0,
  1539. "y": 0,
  1540. "z": 0
  1541. },
  1542. "_skewX": 0,
  1543. "_skewY": 0,
  1544. "_is3DNode": false,
  1545. "_groupIndex": 0,
  1546. "groupIndex": 0,
  1547. "_id": "65a3yNv6NCO4i0hIgh1Usj"
  1548. },
  1549. {
  1550. "__type__": "cc.Sprite",
  1551. "_name": "",
  1552. "_objFlags": 0,
  1553. "node": {
  1554. "__id__": 35
  1555. },
  1556. "_enabled": true,
  1557. "_materials": [
  1558. {
  1559. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1560. }
  1561. ],
  1562. "_srcBlendFactor": 770,
  1563. "_dstBlendFactor": 771,
  1564. "_spriteFrame": {
  1565. "__uuid__": "4ecd7fef-14ac-45e8-8323-9c758f939891"
  1566. },
  1567. "_type": 0,
  1568. "_sizeMode": 1,
  1569. "_fillType": 0,
  1570. "_fillCenter": {
  1571. "__type__": "cc.Vec2",
  1572. "x": 0,
  1573. "y": 0
  1574. },
  1575. "_fillStart": 0,
  1576. "_fillRange": 0,
  1577. "_isTrimmedMode": true,
  1578. "_atlas": null,
  1579. "_id": "44HJ/VV4xOUI52nVLxFCWz"
  1580. },
  1581. {
  1582. "__type__": "cc.PrefabInfo",
  1583. "root": {
  1584. "__id__": 10
  1585. },
  1586. "asset": {
  1587. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1588. },
  1589. "fileId": "65a3yNv6NCO4i0hIgh1Usj",
  1590. "sync": false
  1591. },
  1592. {
  1593. "__type__": "cc.Node",
  1594. "_name": "ksan",
  1595. "_objFlags": 0,
  1596. "_parent": {
  1597. "__id__": 31
  1598. },
  1599. "_children": [],
  1600. "_active": true,
  1601. "_components": [
  1602. {
  1603. "__id__": 39
  1604. },
  1605. {
  1606. "__id__": 40
  1607. }
  1608. ],
  1609. "_prefab": {
  1610. "__id__": 42
  1611. },
  1612. "_opacity": 255,
  1613. "_color": {
  1614. "__type__": "cc.Color",
  1615. "r": 255,
  1616. "g": 255,
  1617. "b": 255,
  1618. "a": 255
  1619. },
  1620. "_contentSize": {
  1621. "__type__": "cc.Size",
  1622. "width": 162,
  1623. "height": 163
  1624. },
  1625. "_anchorPoint": {
  1626. "__type__": "cc.Vec2",
  1627. "x": 0.5,
  1628. "y": 0.5
  1629. },
  1630. "_trs": {
  1631. "__type__": "TypedArray",
  1632. "ctor": "Float64Array",
  1633. "array": [
  1634. 0,
  1635. 213.098,
  1636. 0,
  1637. 0,
  1638. 0,
  1639. 0,
  1640. 1,
  1641. 1,
  1642. 1,
  1643. 1
  1644. ]
  1645. },
  1646. "_eulerAngles": {
  1647. "__type__": "cc.Vec3",
  1648. "x": 0,
  1649. "y": 0,
  1650. "z": 0
  1651. },
  1652. "_skewX": 0,
  1653. "_skewY": 0,
  1654. "_is3DNode": false,
  1655. "_groupIndex": 0,
  1656. "groupIndex": 0,
  1657. "_id": "105Rp9RXhIwr5N4WRMUuII"
  1658. },
  1659. {
  1660. "__type__": "cc.Sprite",
  1661. "_name": "",
  1662. "_objFlags": 0,
  1663. "node": {
  1664. "__id__": 38
  1665. },
  1666. "_enabled": true,
  1667. "_materials": [
  1668. {
  1669. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1670. }
  1671. ],
  1672. "_srcBlendFactor": 770,
  1673. "_dstBlendFactor": 771,
  1674. "_spriteFrame": {
  1675. "__uuid__": "43c8d506-f13b-45dd-93dc-6bc91eeb586c"
  1676. },
  1677. "_type": 0,
  1678. "_sizeMode": 1,
  1679. "_fillType": 0,
  1680. "_fillCenter": {
  1681. "__type__": "cc.Vec2",
  1682. "x": 0,
  1683. "y": 0
  1684. },
  1685. "_fillStart": 0,
  1686. "_fillRange": 0,
  1687. "_isTrimmedMode": true,
  1688. "_atlas": null,
  1689. "_id": "706e0GPulJ/oMN2eEtiES4"
  1690. },
  1691. {
  1692. "__type__": "cc.Button",
  1693. "_name": "",
  1694. "_objFlags": 0,
  1695. "node": {
  1696. "__id__": 38
  1697. },
  1698. "_enabled": true,
  1699. "_normalMaterial": null,
  1700. "_grayMaterial": null,
  1701. "duration": 0.1,
  1702. "zoomScale": 1.2,
  1703. "clickEvents": [
  1704. {
  1705. "__id__": 41
  1706. }
  1707. ],
  1708. "_N$interactable": true,
  1709. "_N$enableAutoGrayEffect": false,
  1710. "_N$transition": 0,
  1711. "transition": 0,
  1712. "_N$normalColor": {
  1713. "__type__": "cc.Color",
  1714. "r": 214,
  1715. "g": 214,
  1716. "b": 214,
  1717. "a": 255
  1718. },
  1719. "_N$pressedColor": {
  1720. "__type__": "cc.Color",
  1721. "r": 211,
  1722. "g": 211,
  1723. "b": 211,
  1724. "a": 255
  1725. },
  1726. "pressedColor": {
  1727. "__type__": "cc.Color",
  1728. "r": 211,
  1729. "g": 211,
  1730. "b": 211,
  1731. "a": 255
  1732. },
  1733. "_N$hoverColor": {
  1734. "__type__": "cc.Color",
  1735. "r": 255,
  1736. "g": 255,
  1737. "b": 255,
  1738. "a": 255
  1739. },
  1740. "hoverColor": {
  1741. "__type__": "cc.Color",
  1742. "r": 255,
  1743. "g": 255,
  1744. "b": 255,
  1745. "a": 255
  1746. },
  1747. "_N$disabledColor": {
  1748. "__type__": "cc.Color",
  1749. "r": 124,
  1750. "g": 124,
  1751. "b": 124,
  1752. "a": 255
  1753. },
  1754. "_N$normalSprite": null,
  1755. "_N$pressedSprite": null,
  1756. "pressedSprite": null,
  1757. "_N$hoverSprite": null,
  1758. "hoverSprite": null,
  1759. "_N$disabledSprite": null,
  1760. "_N$target": {
  1761. "__id__": 38
  1762. },
  1763. "_id": "2di548GEVKZYAPBOZ/VE3f"
  1764. },
  1765. {
  1766. "__type__": "cc.ClickEvent",
  1767. "target": {
  1768. "__id__": 2
  1769. },
  1770. "component": "",
  1771. "_componentId": "9129bZ2zN5I673xCbm79sLC",
  1772. "handler": "StartGame",
  1773. "customEventData": ""
  1774. },
  1775. {
  1776. "__type__": "cc.PrefabInfo",
  1777. "root": {
  1778. "__id__": 10
  1779. },
  1780. "asset": {
  1781. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1782. },
  1783. "fileId": "105Rp9RXhIwr5N4WRMUuII",
  1784. "sync": false
  1785. },
  1786. {
  1787. "__type__": "cc.Node",
  1788. "_name": "花瓣素材_手绘-科技风元素_48247524",
  1789. "_objFlags": 0,
  1790. "_parent": {
  1791. "__id__": 31
  1792. },
  1793. "_children": [],
  1794. "_active": true,
  1795. "_components": [
  1796. {
  1797. "__id__": 44
  1798. }
  1799. ],
  1800. "_prefab": {
  1801. "__id__": 45
  1802. },
  1803. "_opacity": 255,
  1804. "_color": {
  1805. "__type__": "cc.Color",
  1806. "r": 255,
  1807. "g": 255,
  1808. "b": 255,
  1809. "a": 255
  1810. },
  1811. "_contentSize": {
  1812. "__type__": "cc.Size",
  1813. "width": 301,
  1814. "height": 347
  1815. },
  1816. "_anchorPoint": {
  1817. "__type__": "cc.Vec2",
  1818. "x": 0.5,
  1819. "y": 0.5
  1820. },
  1821. "_trs": {
  1822. "__type__": "TypedArray",
  1823. "ctor": "Float64Array",
  1824. "array": [
  1825. 0,
  1826. 54.652,
  1827. 0,
  1828. 0,
  1829. 0,
  1830. 0,
  1831. 1,
  1832. 1,
  1833. 1,
  1834. 1
  1835. ]
  1836. },
  1837. "_eulerAngles": {
  1838. "__type__": "cc.Vec3",
  1839. "x": 0,
  1840. "y": 0,
  1841. "z": 0
  1842. },
  1843. "_skewX": 0,
  1844. "_skewY": 0,
  1845. "_is3DNode": false,
  1846. "_groupIndex": 0,
  1847. "groupIndex": 0,
  1848. "_id": "09K5EDIdtL6Zb0qzr6bj9P"
  1849. },
  1850. {
  1851. "__type__": "cc.Sprite",
  1852. "_name": "",
  1853. "_objFlags": 0,
  1854. "node": {
  1855. "__id__": 43
  1856. },
  1857. "_enabled": true,
  1858. "_materials": [
  1859. {
  1860. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1861. }
  1862. ],
  1863. "_srcBlendFactor": 770,
  1864. "_dstBlendFactor": 771,
  1865. "_spriteFrame": {
  1866. "__uuid__": "c840d697-b3d6-4864-a342-cbe7c5e2f1ce"
  1867. },
  1868. "_type": 0,
  1869. "_sizeMode": 1,
  1870. "_fillType": 0,
  1871. "_fillCenter": {
  1872. "__type__": "cc.Vec2",
  1873. "x": 0,
  1874. "y": 0
  1875. },
  1876. "_fillStart": 0,
  1877. "_fillRange": 0,
  1878. "_isTrimmedMode": true,
  1879. "_atlas": null,
  1880. "_id": "52qKT4XIFD2qvgvQKzSvfR"
  1881. },
  1882. {
  1883. "__type__": "cc.PrefabInfo",
  1884. "root": {
  1885. "__id__": 10
  1886. },
  1887. "asset": {
  1888. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1889. },
  1890. "fileId": "05SHA18YVDZa3p7hcNvO8K",
  1891. "sync": false
  1892. },
  1893. {
  1894. "__type__": "cc.Node",
  1895. "_name": "logo",
  1896. "_objFlags": 0,
  1897. "_parent": {
  1898. "__id__": 31
  1899. },
  1900. "_children": [],
  1901. "_active": false,
  1902. "_components": [
  1903. {
  1904. "__id__": 47
  1905. }
  1906. ],
  1907. "_prefab": {
  1908. "__id__": 48
  1909. },
  1910. "_opacity": 255,
  1911. "_color": {
  1912. "__type__": "cc.Color",
  1913. "r": 255,
  1914. "g": 255,
  1915. "b": 255,
  1916. "a": 255
  1917. },
  1918. "_contentSize": {
  1919. "__type__": "cc.Size",
  1920. "width": 852,
  1921. "height": 479
  1922. },
  1923. "_anchorPoint": {
  1924. "__type__": "cc.Vec2",
  1925. "x": 0.5,
  1926. "y": 0.5
  1927. },
  1928. "_trs": {
  1929. "__type__": "TypedArray",
  1930. "ctor": "Float64Array",
  1931. "array": [
  1932. 4,
  1933. 633,
  1934. 0,
  1935. 0,
  1936. 0,
  1937. 0,
  1938. 1,
  1939. 1,
  1940. 1,
  1941. 1
  1942. ]
  1943. },
  1944. "_eulerAngles": {
  1945. "__type__": "cc.Vec3",
  1946. "x": 0,
  1947. "y": 0,
  1948. "z": 0
  1949. },
  1950. "_skewX": 0,
  1951. "_skewY": 0,
  1952. "_is3DNode": false,
  1953. "_groupIndex": 0,
  1954. "groupIndex": 0,
  1955. "_id": "fcc2tjolZP/ZCtpfRx+oyC"
  1956. },
  1957. {
  1958. "__type__": "cc.Sprite",
  1959. "_name": "",
  1960. "_objFlags": 0,
  1961. "node": {
  1962. "__id__": 46
  1963. },
  1964. "_enabled": true,
  1965. "_materials": [
  1966. {
  1967. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1968. }
  1969. ],
  1970. "_srcBlendFactor": 770,
  1971. "_dstBlendFactor": 771,
  1972. "_spriteFrame": {
  1973. "__uuid__": "285e75fc-fd47-47aa-9554-1a5a5427961f"
  1974. },
  1975. "_type": 0,
  1976. "_sizeMode": 1,
  1977. "_fillType": 0,
  1978. "_fillCenter": {
  1979. "__type__": "cc.Vec2",
  1980. "x": 0,
  1981. "y": 0
  1982. },
  1983. "_fillStart": 0,
  1984. "_fillRange": 0,
  1985. "_isTrimmedMode": true,
  1986. "_atlas": null,
  1987. "_id": "9crhu+61ZExLRIk8ylPzi7"
  1988. },
  1989. {
  1990. "__type__": "cc.PrefabInfo",
  1991. "root": {
  1992. "__id__": 10
  1993. },
  1994. "asset": {
  1995. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1996. },
  1997. "fileId": "fcc2tjolZP/ZCtpfRx+oyC",
  1998. "sync": false
  1999. },
  2000. {
  2001. "__type__": "cc.Animation",
  2002. "_name": "",
  2003. "_objFlags": 0,
  2004. "node": {
  2005. "__id__": 31
  2006. },
  2007. "_enabled": true,
  2008. "_defaultClip": {
  2009. "__uuid__": "cb825fce-09de-4e41-9952-4136908e1a02"
  2010. },
  2011. "_clips": [
  2012. {
  2013. "__uuid__": "cb825fce-09de-4e41-9952-4136908e1a02"
  2014. }
  2015. ],
  2016. "playOnLoad": false,
  2017. "_id": "29lwUJHD9GWowzidR+r3Ms"
  2018. },
  2019. {
  2020. "__type__": "cc.PrefabInfo",
  2021. "root": {
  2022. "__id__": 10
  2023. },
  2024. "asset": {
  2025. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2026. },
  2027. "fileId": "42Goy9OwBJQqt1uR/ALdgV",
  2028. "sync": false
  2029. },
  2030. {
  2031. "__type__": "cc.Node",
  2032. "_name": "Down",
  2033. "_objFlags": 0,
  2034. "_parent": {
  2035. "__id__": 10
  2036. },
  2037. "_children": [
  2038. {
  2039. "__id__": 52
  2040. },
  2041. {
  2042. "__id__": 55
  2043. }
  2044. ],
  2045. "_active": true,
  2046. "_components": [
  2047. {
  2048. "__id__": 64
  2049. }
  2050. ],
  2051. "_prefab": {
  2052. "__id__": 65
  2053. },
  2054. "_opacity": 255,
  2055. "_color": {
  2056. "__type__": "cc.Color",
  2057. "r": 255,
  2058. "g": 255,
  2059. "b": 255,
  2060. "a": 255
  2061. },
  2062. "_contentSize": {
  2063. "__type__": "cc.Size",
  2064. "width": 0,
  2065. "height": 0
  2066. },
  2067. "_anchorPoint": {
  2068. "__type__": "cc.Vec2",
  2069. "x": 0.5,
  2070. "y": 0.5
  2071. },
  2072. "_trs": {
  2073. "__type__": "TypedArray",
  2074. "ctor": "Float64Array",
  2075. "array": [
  2076. 0,
  2077. 0,
  2078. 0,
  2079. 0,
  2080. 0,
  2081. 0,
  2082. 1,
  2083. 1,
  2084. 1,
  2085. 1
  2086. ]
  2087. },
  2088. "_eulerAngles": {
  2089. "__type__": "cc.Vec3",
  2090. "x": 0,
  2091. "y": 0,
  2092. "z": 0
  2093. },
  2094. "_skewX": 0,
  2095. "_skewY": 0,
  2096. "_is3DNode": false,
  2097. "_groupIndex": 0,
  2098. "groupIndex": 0,
  2099. "_id": "86iEVo3VFJ6p8mvLDVbThE"
  2100. },
  2101. {
  2102. "__type__": "cc.Node",
  2103. "_name": "wf",
  2104. "_objFlags": 0,
  2105. "_parent": {
  2106. "__id__": 51
  2107. },
  2108. "_children": [],
  2109. "_active": true,
  2110. "_components": [
  2111. {
  2112. "__id__": 53
  2113. }
  2114. ],
  2115. "_prefab": {
  2116. "__id__": 54
  2117. },
  2118. "_opacity": 255,
  2119. "_color": {
  2120. "__type__": "cc.Color",
  2121. "r": 255,
  2122. "g": 255,
  2123. "b": 255,
  2124. "a": 255
  2125. },
  2126. "_contentSize": {
  2127. "__type__": "cc.Size",
  2128. "width": 680,
  2129. "height": 66
  2130. },
  2131. "_anchorPoint": {
  2132. "__type__": "cc.Vec2",
  2133. "x": 0.5,
  2134. "y": 0.5
  2135. },
  2136. "_trs": {
  2137. "__type__": "TypedArray",
  2138. "ctor": "Float64Array",
  2139. "array": [
  2140. 0,
  2141. -389.84,
  2142. 0,
  2143. 0,
  2144. 0,
  2145. 0,
  2146. 1,
  2147. 1,
  2148. 1,
  2149. 1
  2150. ]
  2151. },
  2152. "_eulerAngles": {
  2153. "__type__": "cc.Vec3",
  2154. "x": 0,
  2155. "y": 0,
  2156. "z": 0
  2157. },
  2158. "_skewX": 0,
  2159. "_skewY": 0,
  2160. "_is3DNode": false,
  2161. "_groupIndex": 0,
  2162. "groupIndex": 0,
  2163. "_id": "a7rZ1bBx5F0oOfangwBwvN"
  2164. },
  2165. {
  2166. "__type__": "cc.Sprite",
  2167. "_name": "",
  2168. "_objFlags": 0,
  2169. "node": {
  2170. "__id__": 52
  2171. },
  2172. "_enabled": true,
  2173. "_materials": [
  2174. {
  2175. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2176. }
  2177. ],
  2178. "_srcBlendFactor": 770,
  2179. "_dstBlendFactor": 771,
  2180. "_spriteFrame": {
  2181. "__uuid__": "fca32e6e-f7f3-41ac-93ee-585633595023"
  2182. },
  2183. "_type": 0,
  2184. "_sizeMode": 1,
  2185. "_fillType": 0,
  2186. "_fillCenter": {
  2187. "__type__": "cc.Vec2",
  2188. "x": 0,
  2189. "y": 0
  2190. },
  2191. "_fillStart": 0,
  2192. "_fillRange": 0,
  2193. "_isTrimmedMode": true,
  2194. "_atlas": null,
  2195. "_id": "18pfJoj99PD6CFNBhdp8lF"
  2196. },
  2197. {
  2198. "__type__": "cc.PrefabInfo",
  2199. "root": {
  2200. "__id__": 10
  2201. },
  2202. "asset": {
  2203. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2204. },
  2205. "fileId": "a7rZ1bBx5F0oOfangwBwvN",
  2206. "sync": false
  2207. },
  2208. {
  2209. "__type__": "cc.Node",
  2210. "_name": "phbtb",
  2211. "_objFlags": 0,
  2212. "_parent": {
  2213. "__id__": 51
  2214. },
  2215. "_children": [
  2216. {
  2217. "__id__": 56
  2218. },
  2219. {
  2220. "__id__": 58
  2221. }
  2222. ],
  2223. "_active": false,
  2224. "_components": [
  2225. {
  2226. "__id__": 62
  2227. }
  2228. ],
  2229. "_prefab": {
  2230. "__id__": 63
  2231. },
  2232. "_opacity": 255,
  2233. "_color": {
  2234. "__type__": "cc.Color",
  2235. "r": 255,
  2236. "g": 255,
  2237. "b": 255,
  2238. "a": 255
  2239. },
  2240. "_contentSize": {
  2241. "__type__": "cc.Size",
  2242. "width": 286,
  2243. "height": 257
  2244. },
  2245. "_anchorPoint": {
  2246. "__type__": "cc.Vec2",
  2247. "x": 0.5,
  2248. "y": 0.5
  2249. },
  2250. "_trs": {
  2251. "__type__": "TypedArray",
  2252. "ctor": "Float64Array",
  2253. "array": [
  2254. 0,
  2255. -308,
  2256. 0,
  2257. 0,
  2258. 0,
  2259. 0,
  2260. 1,
  2261. 1,
  2262. 1,
  2263. 1
  2264. ]
  2265. },
  2266. "_eulerAngles": {
  2267. "__type__": "cc.Vec3",
  2268. "x": 0,
  2269. "y": 0,
  2270. "z": 0
  2271. },
  2272. "_skewX": 0,
  2273. "_skewY": 0,
  2274. "_is3DNode": false,
  2275. "_groupIndex": 0,
  2276. "groupIndex": 0,
  2277. "_id": "4aeR7XcvhGfL2hBTaukHak"
  2278. },
  2279. {
  2280. "__type__": "cc.Node",
  2281. "_name": "Check",
  2282. "_objFlags": 0,
  2283. "_parent": {
  2284. "__id__": 55
  2285. },
  2286. "_children": [],
  2287. "_active": true,
  2288. "_components": [],
  2289. "_prefab": {
  2290. "__id__": 57
  2291. },
  2292. "_opacity": 255,
  2293. "_color": {
  2294. "__type__": "cc.Color",
  2295. "r": 255,
  2296. "g": 255,
  2297. "b": 255,
  2298. "a": 255
  2299. },
  2300. "_contentSize": {
  2301. "__type__": "cc.Size",
  2302. "width": 100,
  2303. "height": 40
  2304. },
  2305. "_anchorPoint": {
  2306. "__type__": "cc.Vec2",
  2307. "x": 0.5,
  2308. "y": 0.5
  2309. },
  2310. "_trs": {
  2311. "__type__": "TypedArray",
  2312. "ctor": "Float64Array",
  2313. "array": [
  2314. 6.2,
  2315. -99.6,
  2316. 0,
  2317. 0,
  2318. 0,
  2319. 0,
  2320. 1,
  2321. 1,
  2322. 1,
  2323. 1
  2324. ]
  2325. },
  2326. "_eulerAngles": {
  2327. "__type__": "cc.Vec3",
  2328. "x": 0,
  2329. "y": 0,
  2330. "z": 0
  2331. },
  2332. "_skewX": 0,
  2333. "_skewY": 0,
  2334. "_is3DNode": false,
  2335. "_groupIndex": 0,
  2336. "groupIndex": 0,
  2337. "_id": "8dnJPYUdVN9I4jnOHA+Wnq"
  2338. },
  2339. {
  2340. "__type__": "cc.PrefabInfo",
  2341. "root": {
  2342. "__id__": 10
  2343. },
  2344. "asset": {
  2345. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2346. },
  2347. "fileId": "8dnJPYUdVN9I4jnOHA+Wnq",
  2348. "sync": false
  2349. },
  2350. {
  2351. "__type__": "cc.Node",
  2352. "_name": "Check",
  2353. "_objFlags": 0,
  2354. "_parent": {
  2355. "__id__": 55
  2356. },
  2357. "_children": [],
  2358. "_active": true,
  2359. "_components": [
  2360. {
  2361. "__id__": 59
  2362. }
  2363. ],
  2364. "_prefab": {
  2365. "__id__": 61
  2366. },
  2367. "_opacity": 255,
  2368. "_color": {
  2369. "__type__": "cc.Color",
  2370. "r": 255,
  2371. "g": 255,
  2372. "b": 255,
  2373. "a": 255
  2374. },
  2375. "_contentSize": {
  2376. "__type__": "cc.Size",
  2377. "width": 300,
  2378. "height": 266
  2379. },
  2380. "_anchorPoint": {
  2381. "__type__": "cc.Vec2",
  2382. "x": 0.5,
  2383. "y": 0.5
  2384. },
  2385. "_trs": {
  2386. "__type__": "TypedArray",
  2387. "ctor": "Float64Array",
  2388. "array": [
  2389. -4.392,
  2390. -5.814,
  2391. 0,
  2392. 0,
  2393. 0,
  2394. 0,
  2395. 1,
  2396. 1,
  2397. 1,
  2398. 1
  2399. ]
  2400. },
  2401. "_eulerAngles": {
  2402. "__type__": "cc.Vec3",
  2403. "x": 0,
  2404. "y": 0,
  2405. "z": 0
  2406. },
  2407. "_skewX": 0,
  2408. "_skewY": 0,
  2409. "_is3DNode": false,
  2410. "_groupIndex": 0,
  2411. "groupIndex": 0,
  2412. "_id": "3fM0XTsr5FoKVAjxCDrOXN"
  2413. },
  2414. {
  2415. "__type__": "cc.Button",
  2416. "_name": "",
  2417. "_objFlags": 0,
  2418. "node": {
  2419. "__id__": 58
  2420. },
  2421. "_enabled": true,
  2422. "_normalMaterial": null,
  2423. "_grayMaterial": null,
  2424. "duration": 0.1,
  2425. "zoomScale": 1.2,
  2426. "clickEvents": [
  2427. {
  2428. "__id__": 60
  2429. }
  2430. ],
  2431. "_N$interactable": true,
  2432. "_N$enableAutoGrayEffect": false,
  2433. "_N$transition": 0,
  2434. "transition": 0,
  2435. "_N$normalColor": {
  2436. "__type__": "cc.Color",
  2437. "r": 255,
  2438. "g": 255,
  2439. "b": 255,
  2440. "a": 255
  2441. },
  2442. "_N$pressedColor": {
  2443. "__type__": "cc.Color",
  2444. "r": 255,
  2445. "g": 255,
  2446. "b": 255,
  2447. "a": 255
  2448. },
  2449. "pressedColor": {
  2450. "__type__": "cc.Color",
  2451. "r": 255,
  2452. "g": 255,
  2453. "b": 255,
  2454. "a": 255
  2455. },
  2456. "_N$hoverColor": {
  2457. "__type__": "cc.Color",
  2458. "r": 255,
  2459. "g": 255,
  2460. "b": 255,
  2461. "a": 255
  2462. },
  2463. "hoverColor": {
  2464. "__type__": "cc.Color",
  2465. "r": 255,
  2466. "g": 255,
  2467. "b": 255,
  2468. "a": 255
  2469. },
  2470. "_N$disabledColor": {
  2471. "__type__": "cc.Color",
  2472. "r": 255,
  2473. "g": 255,
  2474. "b": 255,
  2475. "a": 255
  2476. },
  2477. "_N$normalSprite": {
  2478. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2479. },
  2480. "_N$pressedSprite": {
  2481. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2482. },
  2483. "pressedSprite": {
  2484. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2485. },
  2486. "_N$hoverSprite": {
  2487. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2488. },
  2489. "hoverSprite": {
  2490. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2491. },
  2492. "_N$disabledSprite": {
  2493. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2494. },
  2495. "_N$target": {
  2496. "__id__": 58
  2497. },
  2498. "_id": "f858NCYcpOfZ+J/OYuX/iL"
  2499. },
  2500. {
  2501. "__type__": "cc.ClickEvent",
  2502. "target": {
  2503. "__id__": 2
  2504. },
  2505. "component": "",
  2506. "_componentId": "9129bZ2zN5I673xCbm79sLC",
  2507. "handler": "CheckRank",
  2508. "customEventData": ""
  2509. },
  2510. {
  2511. "__type__": "cc.PrefabInfo",
  2512. "root": {
  2513. "__id__": 10
  2514. },
  2515. "asset": {
  2516. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2517. },
  2518. "fileId": "3fM0XTsr5FoKVAjxCDrOXN",
  2519. "sync": false
  2520. },
  2521. {
  2522. "__type__": "cc.Sprite",
  2523. "_name": "",
  2524. "_objFlags": 0,
  2525. "node": {
  2526. "__id__": 55
  2527. },
  2528. "_enabled": true,
  2529. "_materials": [
  2530. {
  2531. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2532. }
  2533. ],
  2534. "_srcBlendFactor": 770,
  2535. "_dstBlendFactor": 771,
  2536. "_spriteFrame": {
  2537. "__uuid__": "9539f31e-0b8e-4a98-a87a-ecb96d2ff479"
  2538. },
  2539. "_type": 0,
  2540. "_sizeMode": 1,
  2541. "_fillType": 0,
  2542. "_fillCenter": {
  2543. "__type__": "cc.Vec2",
  2544. "x": 0,
  2545. "y": 0
  2546. },
  2547. "_fillStart": 0,
  2548. "_fillRange": 0,
  2549. "_isTrimmedMode": true,
  2550. "_atlas": null,
  2551. "_id": "12hKP1q/lFRKZep7RZNHVc"
  2552. },
  2553. {
  2554. "__type__": "cc.PrefabInfo",
  2555. "root": {
  2556. "__id__": 10
  2557. },
  2558. "asset": {
  2559. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2560. },
  2561. "fileId": "4aeR7XcvhGfL2hBTaukHak",
  2562. "sync": false
  2563. },
  2564. {
  2565. "__type__": "cc.Animation",
  2566. "_name": "",
  2567. "_objFlags": 0,
  2568. "node": {
  2569. "__id__": 51
  2570. },
  2571. "_enabled": true,
  2572. "_defaultClip": {
  2573. "__uuid__": "6179a4fd-bd28-41df-b498-398691c7c94c"
  2574. },
  2575. "_clips": [
  2576. {
  2577. "__uuid__": "6179a4fd-bd28-41df-b498-398691c7c94c"
  2578. }
  2579. ],
  2580. "playOnLoad": false,
  2581. "_id": "d3Rb/ZCZRCZavWWbcG2bss"
  2582. },
  2583. {
  2584. "__type__": "cc.PrefabInfo",
  2585. "root": {
  2586. "__id__": 10
  2587. },
  2588. "asset": {
  2589. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2590. },
  2591. "fileId": "86iEVo3VFJ6p8mvLDVbThE",
  2592. "sync": false
  2593. },
  2594. {
  2595. "__type__": "cc.Animation",
  2596. "_name": "",
  2597. "_objFlags": 0,
  2598. "node": {
  2599. "__id__": 10
  2600. },
  2601. "_enabled": true,
  2602. "_defaultClip": {
  2603. "__uuid__": "f70cf6cf-9141-4f42-87bd-5d443e0220af"
  2604. },
  2605. "_clips": [
  2606. {
  2607. "__uuid__": "f70cf6cf-9141-4f42-87bd-5d443e0220af"
  2608. }
  2609. ],
  2610. "playOnLoad": false,
  2611. "_id": "0c1EvX3NtGTb8pqKspAydU"
  2612. },
  2613. {
  2614. "__type__": "cc.PrefabInfo",
  2615. "root": {
  2616. "__id__": 10
  2617. },
  2618. "asset": {
  2619. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2620. },
  2621. "fileId": "1dfdwaY1pP5KIJ7xUVbVgA",
  2622. "sync": false
  2623. },
  2624. {
  2625. "__type__": "cc.Node",
  2626. "_name": "ksan",
  2627. "_objFlags": 0,
  2628. "_parent": {
  2629. "__id__": 5
  2630. },
  2631. "_children": [],
  2632. "_active": true,
  2633. "_components": [
  2634. {
  2635. "__id__": 69
  2636. },
  2637. {
  2638. "__id__": 70
  2639. }
  2640. ],
  2641. "_prefab": null,
  2642. "_opacity": 255,
  2643. "_color": {
  2644. "__type__": "cc.Color",
  2645. "r": 255,
  2646. "g": 255,
  2647. "b": 255,
  2648. "a": 255
  2649. },
  2650. "_contentSize": {
  2651. "__type__": "cc.Size",
  2652. "width": 162,
  2653. "height": 65
  2654. },
  2655. "_anchorPoint": {
  2656. "__type__": "cc.Vec2",
  2657. "x": 0.5,
  2658. "y": 0.5
  2659. },
  2660. "_trs": {
  2661. "__type__": "TypedArray",
  2662. "ctor": "Float64Array",
  2663. "array": [
  2664. 0,
  2665. -116.13,
  2666. 0,
  2667. 0,
  2668. 0,
  2669. 0,
  2670. 1,
  2671. 1,
  2672. 1,
  2673. 1
  2674. ]
  2675. },
  2676. "_eulerAngles": {
  2677. "__type__": "cc.Vec3",
  2678. "x": 0,
  2679. "y": 0,
  2680. "z": 0
  2681. },
  2682. "_skewX": 0,
  2683. "_skewY": 0,
  2684. "_is3DNode": false,
  2685. "_groupIndex": 0,
  2686. "groupIndex": 0,
  2687. "_id": "73WI862T1B0qFJ1aybHASA"
  2688. },
  2689. {
  2690. "__type__": "cc.Sprite",
  2691. "_name": "",
  2692. "_objFlags": 0,
  2693. "node": {
  2694. "__id__": 68
  2695. },
  2696. "_enabled": true,
  2697. "_materials": [
  2698. {
  2699. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2700. }
  2701. ],
  2702. "_srcBlendFactor": 770,
  2703. "_dstBlendFactor": 771,
  2704. "_spriteFrame": {
  2705. "__uuid__": "36a7fe6f-de1c-43c2-ada5-5b1c620f58ce"
  2706. },
  2707. "_type": 0,
  2708. "_sizeMode": 0,
  2709. "_fillType": 0,
  2710. "_fillCenter": {
  2711. "__type__": "cc.Vec2",
  2712. "x": 0,
  2713. "y": 0
  2714. },
  2715. "_fillStart": 0,
  2716. "_fillRange": 0,
  2717. "_isTrimmedMode": true,
  2718. "_atlas": null,
  2719. "_id": "46EA1T0qpI3ZbpmIQJbDoZ"
  2720. },
  2721. {
  2722. "__type__": "cc.Button",
  2723. "_name": "",
  2724. "_objFlags": 0,
  2725. "node": {
  2726. "__id__": 68
  2727. },
  2728. "_enabled": true,
  2729. "_normalMaterial": null,
  2730. "_grayMaterial": null,
  2731. "duration": 0.1,
  2732. "zoomScale": 1.2,
  2733. "clickEvents": [
  2734. {
  2735. "__id__": 71
  2736. }
  2737. ],
  2738. "_N$interactable": true,
  2739. "_N$enableAutoGrayEffect": false,
  2740. "_N$transition": 0,
  2741. "transition": 0,
  2742. "_N$normalColor": {
  2743. "__type__": "cc.Color",
  2744. "r": 214,
  2745. "g": 214,
  2746. "b": 214,
  2747. "a": 255
  2748. },
  2749. "_N$pressedColor": {
  2750. "__type__": "cc.Color",
  2751. "r": 211,
  2752. "g": 211,
  2753. "b": 211,
  2754. "a": 255
  2755. },
  2756. "pressedColor": {
  2757. "__type__": "cc.Color",
  2758. "r": 211,
  2759. "g": 211,
  2760. "b": 211,
  2761. "a": 255
  2762. },
  2763. "_N$hoverColor": {
  2764. "__type__": "cc.Color",
  2765. "r": 255,
  2766. "g": 255,
  2767. "b": 255,
  2768. "a": 255
  2769. },
  2770. "hoverColor": {
  2771. "__type__": "cc.Color",
  2772. "r": 255,
  2773. "g": 255,
  2774. "b": 255,
  2775. "a": 255
  2776. },
  2777. "_N$disabledColor": {
  2778. "__type__": "cc.Color",
  2779. "r": 124,
  2780. "g": 124,
  2781. "b": 124,
  2782. "a": 255
  2783. },
  2784. "_N$normalSprite": null,
  2785. "_N$pressedSprite": null,
  2786. "pressedSprite": null,
  2787. "_N$hoverSprite": null,
  2788. "hoverSprite": null,
  2789. "_N$disabledSprite": null,
  2790. "_N$target": {
  2791. "__id__": 68
  2792. },
  2793. "_id": "c8QkbH61NBp7XPl+OODB80"
  2794. },
  2795. {
  2796. "__type__": "cc.ClickEvent",
  2797. "target": {
  2798. "__id__": 2
  2799. },
  2800. "component": "",
  2801. "_componentId": "9129bZ2zN5I673xCbm79sLC",
  2802. "handler": "StartGame",
  2803. "customEventData": ""
  2804. },
  2805. {
  2806. "__type__": "cc.Node",
  2807. "_name": "New Node",
  2808. "_objFlags": 0,
  2809. "_parent": {
  2810. "__id__": 2
  2811. },
  2812. "_children": [],
  2813. "_active": true,
  2814. "_components": [
  2815. {
  2816. "__id__": 73
  2817. }
  2818. ],
  2819. "_prefab": null,
  2820. "_opacity": 255,
  2821. "_color": {
  2822. "__type__": "cc.Color",
  2823. "r": 255,
  2824. "g": 255,
  2825. "b": 255,
  2826. "a": 255
  2827. },
  2828. "_contentSize": {
  2829. "__type__": "cc.Size",
  2830. "width": 0,
  2831. "height": 0
  2832. },
  2833. "_anchorPoint": {
  2834. "__type__": "cc.Vec2",
  2835. "x": 0.5,
  2836. "y": 0.5
  2837. },
  2838. "_trs": {
  2839. "__type__": "TypedArray",
  2840. "ctor": "Float64Array",
  2841. "array": [
  2842. 0,
  2843. 0,
  2844. 0,
  2845. 0,
  2846. 0,
  2847. 0,
  2848. 1,
  2849. 1,
  2850. 1,
  2851. 1
  2852. ]
  2853. },
  2854. "_eulerAngles": {
  2855. "__type__": "cc.Vec3",
  2856. "x": 0,
  2857. "y": 0,
  2858. "z": 0
  2859. },
  2860. "_skewX": 0,
  2861. "_skewY": 0,
  2862. "_is3DNode": false,
  2863. "_groupIndex": 0,
  2864. "groupIndex": 0,
  2865. "_id": "4bawyJUcFMUKfTX3t0RmCb"
  2866. },
  2867. {
  2868. "__type__": "01e0ck4av1EM7cpxCFt/TXr",
  2869. "_name": "",
  2870. "_objFlags": 0,
  2871. "node": {
  2872. "__id__": 72
  2873. },
  2874. "_enabled": true,
  2875. "boli": {
  2876. "__uuid__": "8364a8ac-3dbb-4708-b9e3-a23e9814a985"
  2877. },
  2878. "_id": "6aOgHEJ95EU4AP7Pns+Zru"
  2879. },
  2880. {
  2881. "__type__": "cc.Canvas",
  2882. "_name": "",
  2883. "_objFlags": 0,
  2884. "node": {
  2885. "__id__": 2
  2886. },
  2887. "_enabled": true,
  2888. "_designResolution": {
  2889. "__type__": "cc.Size",
  2890. "width": 540,
  2891. "height": 960
  2892. },
  2893. "_fitWidth": true,
  2894. "_fitHeight": true,
  2895. "_id": "a58ADMBRRNyo0AFLJ12ydz"
  2896. },
  2897. {
  2898. "__type__": "9129bZ2zN5I673xCbm79sLC",
  2899. "_name": "",
  2900. "_objFlags": 0,
  2901. "node": {
  2902. "__id__": 2
  2903. },
  2904. "_enabled": true,
  2905. "paihangbang": {
  2906. "__uuid__": "e8c6737f-31bf-41fb-81a7-ffb65792dd04"
  2907. },
  2908. "_id": "5cq/dCbc9OnaU+5o2GL9uA"
  2909. },
  2910. {
  2911. "__type__": "cc.Widget",
  2912. "_name": "",
  2913. "_objFlags": 0,
  2914. "node": {
  2915. "__id__": 2
  2916. },
  2917. "_enabled": true,
  2918. "alignMode": 1,
  2919. "_target": null,
  2920. "_alignFlags": 45,
  2921. "_left": 0,
  2922. "_right": 0,
  2923. "_top": 0,
  2924. "_bottom": 0,
  2925. "_verticalCenter": 0,
  2926. "_horizontalCenter": 0,
  2927. "_isAbsLeft": true,
  2928. "_isAbsRight": true,
  2929. "_isAbsTop": true,
  2930. "_isAbsBottom": true,
  2931. "_isAbsHorizontalCenter": true,
  2932. "_isAbsVerticalCenter": true,
  2933. "_originalWidth": 0,
  2934. "_originalHeight": 0,
  2935. "_id": "68unDNtiBEBY4hcMtQguAf"
  2936. }
  2937. ]