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

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