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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697
  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__": 68
  83. },
  84. {
  85. "__id__": 69
  86. },
  87. {
  88. "__id__": 70
  89. },
  90. {
  91. "__id__": 71
  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__": "05596136-4281-4597-aabc-ae422a373730"
  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__": "05596136-4281-4597-aabc-ae422a373730"
  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__": 51
  528. }
  529. ],
  530. "_active": true,
  531. "_components": [
  532. {
  533. "__id__": 66
  534. }
  535. ],
  536. "_prefab": {
  537. "__id__": 67
  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": true,
  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": 475,
  1010. "height": 161
  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. {
  1056. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1057. }
  1058. ],
  1059. "_srcBlendFactor": 770,
  1060. "_dstBlendFactor": 771,
  1061. "_spriteFrame": {
  1062. "__uuid__": "04f3281c-cb42-40b3-9170-0f813ae56e60"
  1063. },
  1064. "_type": 0,
  1065. "_sizeMode": 1,
  1066. "_fillType": 0,
  1067. "_fillCenter": {
  1068. "__type__": "cc.Vec2",
  1069. "x": 0,
  1070. "y": 0
  1071. },
  1072. "_fillStart": 0,
  1073. "_fillRange": 0,
  1074. "_isTrimmedMode": true,
  1075. "_atlas": null,
  1076. "_id": "b7WMCONEpLBakyg28WSI6M"
  1077. },
  1078. {
  1079. "__type__": "cc.PrefabInfo",
  1080. "root": {
  1081. "__id__": 10
  1082. },
  1083. "asset": {
  1084. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1085. },
  1086. "fileId": "15liPTeVpKgIWvXy6zzeIo",
  1087. "sync": false
  1088. },
  1089. {
  1090. "__type__": "cc.Node",
  1091. "_name": "wf",
  1092. "_objFlags": 0,
  1093. "_parent": {
  1094. "__id__": 10
  1095. },
  1096. "_children": [],
  1097. "_active": false,
  1098. "_components": [
  1099. {
  1100. "__id__": 26
  1101. }
  1102. ],
  1103. "_prefab": {
  1104. "__id__": 27
  1105. },
  1106. "_opacity": 255,
  1107. "_color": {
  1108. "__type__": "cc.Color",
  1109. "r": 255,
  1110. "g": 255,
  1111. "b": 255,
  1112. "a": 255
  1113. },
  1114. "_contentSize": {
  1115. "__type__": "cc.Size",
  1116. "width": 1080,
  1117. "height": 83
  1118. },
  1119. "_anchorPoint": {
  1120. "__type__": "cc.Vec2",
  1121. "x": 0.5,
  1122. "y": 0.5
  1123. },
  1124. "_trs": {
  1125. "__type__": "TypedArray",
  1126. "ctor": "Float64Array",
  1127. "array": [
  1128. 0,
  1129. -502,
  1130. 0,
  1131. 0,
  1132. 0,
  1133. 0,
  1134. 1,
  1135. 1,
  1136. 1,
  1137. 1
  1138. ]
  1139. },
  1140. "_eulerAngles": {
  1141. "__type__": "cc.Vec3",
  1142. "x": 0,
  1143. "y": 0,
  1144. "z": 0
  1145. },
  1146. "_skewX": 0,
  1147. "_skewY": 0,
  1148. "_is3DNode": false,
  1149. "_groupIndex": 0,
  1150. "groupIndex": 0,
  1151. "_id": "628FRY8ltCLaXqxTQa20C0"
  1152. },
  1153. {
  1154. "__type__": "cc.Sprite",
  1155. "_name": "",
  1156. "_objFlags": 0,
  1157. "node": {
  1158. "__id__": 25
  1159. },
  1160. "_enabled": true,
  1161. "_materials": [],
  1162. "_srcBlendFactor": 770,
  1163. "_dstBlendFactor": 771,
  1164. "_spriteFrame": {
  1165. "__uuid__": "02236a02-9d83-4b63-8b28-243375730a6a"
  1166. },
  1167. "_type": 0,
  1168. "_sizeMode": 1,
  1169. "_fillType": 0,
  1170. "_fillCenter": {
  1171. "__type__": "cc.Vec2",
  1172. "x": 0,
  1173. "y": 0
  1174. },
  1175. "_fillStart": 0,
  1176. "_fillRange": 0,
  1177. "_isTrimmedMode": true,
  1178. "_atlas": null,
  1179. "_id": "63Aoyvo4lPjra4RI6P+Tc8"
  1180. },
  1181. {
  1182. "__type__": "cc.PrefabInfo",
  1183. "root": {
  1184. "__id__": 10
  1185. },
  1186. "asset": {
  1187. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1188. },
  1189. "fileId": "628FRY8ltCLaXqxTQa20C0",
  1190. "sync": false
  1191. },
  1192. {
  1193. "__type__": "cc.Node",
  1194. "_name": "phbtb",
  1195. "_objFlags": 0,
  1196. "_parent": {
  1197. "__id__": 10
  1198. },
  1199. "_children": [],
  1200. "_active": false,
  1201. "_components": [
  1202. {
  1203. "__id__": 29
  1204. }
  1205. ],
  1206. "_prefab": {
  1207. "__id__": 30
  1208. },
  1209. "_opacity": 255,
  1210. "_color": {
  1211. "__type__": "cc.Color",
  1212. "r": 255,
  1213. "g": 255,
  1214. "b": 255,
  1215. "a": 255
  1216. },
  1217. "_contentSize": {
  1218. "__type__": "cc.Size",
  1219. "width": 286,
  1220. "height": 257
  1221. },
  1222. "_anchorPoint": {
  1223. "__type__": "cc.Vec2",
  1224. "x": 0.5,
  1225. "y": 0.5
  1226. },
  1227. "_trs": {
  1228. "__type__": "TypedArray",
  1229. "ctor": "Float64Array",
  1230. "array": [
  1231. 0,
  1232. -308,
  1233. 0,
  1234. 0,
  1235. 0,
  1236. 0,
  1237. 1,
  1238. 1,
  1239. 1,
  1240. 1
  1241. ]
  1242. },
  1243. "_eulerAngles": {
  1244. "__type__": "cc.Vec3",
  1245. "x": 0,
  1246. "y": 0,
  1247. "z": 0
  1248. },
  1249. "_skewX": 0,
  1250. "_skewY": 0,
  1251. "_is3DNode": false,
  1252. "_groupIndex": 0,
  1253. "groupIndex": 0,
  1254. "_id": "66pyry5klOkYR4zNRCbQcU"
  1255. },
  1256. {
  1257. "__type__": "cc.Sprite",
  1258. "_name": "",
  1259. "_objFlags": 0,
  1260. "node": {
  1261. "__id__": 28
  1262. },
  1263. "_enabled": true,
  1264. "_materials": [],
  1265. "_srcBlendFactor": 770,
  1266. "_dstBlendFactor": 771,
  1267. "_spriteFrame": {
  1268. "__uuid__": "9539f31e-0b8e-4a98-a87a-ecb96d2ff479"
  1269. },
  1270. "_type": 0,
  1271. "_sizeMode": 1,
  1272. "_fillType": 0,
  1273. "_fillCenter": {
  1274. "__type__": "cc.Vec2",
  1275. "x": 0,
  1276. "y": 0
  1277. },
  1278. "_fillStart": 0,
  1279. "_fillRange": 0,
  1280. "_isTrimmedMode": true,
  1281. "_atlas": null,
  1282. "_id": "e8u7s1hKVKzo/B43sdoeZt"
  1283. },
  1284. {
  1285. "__type__": "cc.PrefabInfo",
  1286. "root": {
  1287. "__id__": 10
  1288. },
  1289. "asset": {
  1290. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1291. },
  1292. "fileId": "66pyry5klOkYR4zNRCbQcU",
  1293. "sync": false
  1294. },
  1295. {
  1296. "__type__": "cc.Node",
  1297. "_name": "Up",
  1298. "_objFlags": 0,
  1299. "_parent": {
  1300. "__id__": 10
  1301. },
  1302. "_children": [
  1303. {
  1304. "__id__": 32
  1305. },
  1306. {
  1307. "__id__": 35
  1308. },
  1309. {
  1310. "__id__": 38
  1311. },
  1312. {
  1313. "__id__": 43
  1314. },
  1315. {
  1316. "__id__": 46
  1317. }
  1318. ],
  1319. "_active": true,
  1320. "_components": [
  1321. {
  1322. "__id__": 49
  1323. }
  1324. ],
  1325. "_prefab": {
  1326. "__id__": 50
  1327. },
  1328. "_opacity": 255,
  1329. "_color": {
  1330. "__type__": "cc.Color",
  1331. "r": 255,
  1332. "g": 255,
  1333. "b": 255,
  1334. "a": 255
  1335. },
  1336. "_contentSize": {
  1337. "__type__": "cc.Size",
  1338. "width": 0,
  1339. "height": 0
  1340. },
  1341. "_anchorPoint": {
  1342. "__type__": "cc.Vec2",
  1343. "x": 0.5,
  1344. "y": 0.5
  1345. },
  1346. "_trs": {
  1347. "__type__": "TypedArray",
  1348. "ctor": "Float64Array",
  1349. "array": [
  1350. 0,
  1351. 0,
  1352. 0,
  1353. 0,
  1354. 0,
  1355. 0,
  1356. 1,
  1357. 1,
  1358. 1,
  1359. 1
  1360. ]
  1361. },
  1362. "_eulerAngles": {
  1363. "__type__": "cc.Vec3",
  1364. "x": 0,
  1365. "y": 0,
  1366. "z": 0
  1367. },
  1368. "_skewX": 0,
  1369. "_skewY": 0,
  1370. "_is3DNode": false,
  1371. "_groupIndex": 0,
  1372. "groupIndex": 0,
  1373. "_id": "42Goy9OwBJQqt1uR/ALdgV"
  1374. },
  1375. {
  1376. "__type__": "cc.Node",
  1377. "_name": "ksan1",
  1378. "_objFlags": 0,
  1379. "_parent": {
  1380. "__id__": 31
  1381. },
  1382. "_children": [],
  1383. "_active": false,
  1384. "_components": [
  1385. {
  1386. "__id__": 33
  1387. }
  1388. ],
  1389. "_prefab": {
  1390. "__id__": 34
  1391. },
  1392. "_opacity": 255,
  1393. "_color": {
  1394. "__type__": "cc.Color",
  1395. "r": 255,
  1396. "g": 255,
  1397. "b": 255,
  1398. "a": 255
  1399. },
  1400. "_contentSize": {
  1401. "__type__": "cc.Size",
  1402. "width": 243,
  1403. "height": 243
  1404. },
  1405. "_anchorPoint": {
  1406. "__type__": "cc.Vec2",
  1407. "x": 0.5,
  1408. "y": 0.5
  1409. },
  1410. "_trs": {
  1411. "__type__": "TypedArray",
  1412. "ctor": "Float64Array",
  1413. "array": [
  1414. 0,
  1415. 107,
  1416. 0,
  1417. 0,
  1418. 0,
  1419. 0,
  1420. 1,
  1421. 1,
  1422. 1,
  1423. 1
  1424. ]
  1425. },
  1426. "_eulerAngles": {
  1427. "__type__": "cc.Vec3",
  1428. "x": 0,
  1429. "y": 0,
  1430. "z": 0
  1431. },
  1432. "_skewX": 0,
  1433. "_skewY": 0,
  1434. "_is3DNode": false,
  1435. "_groupIndex": 0,
  1436. "groupIndex": 0,
  1437. "_id": "17VM5uM3xFNYVjLZEwGScY"
  1438. },
  1439. {
  1440. "__type__": "cc.Sprite",
  1441. "_name": "",
  1442. "_objFlags": 0,
  1443. "node": {
  1444. "__id__": 32
  1445. },
  1446. "_enabled": true,
  1447. "_materials": [
  1448. {
  1449. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1450. }
  1451. ],
  1452. "_srcBlendFactor": 770,
  1453. "_dstBlendFactor": 771,
  1454. "_spriteFrame": {
  1455. "__uuid__": "dd4a8735-86bd-443c-9abe-f639be044508"
  1456. },
  1457. "_type": 0,
  1458. "_sizeMode": 1,
  1459. "_fillType": 0,
  1460. "_fillCenter": {
  1461. "__type__": "cc.Vec2",
  1462. "x": 0,
  1463. "y": 0
  1464. },
  1465. "_fillStart": 0,
  1466. "_fillRange": 0,
  1467. "_isTrimmedMode": true,
  1468. "_atlas": null,
  1469. "_id": "94iteuuR9MHLrnkDkVyNLY"
  1470. },
  1471. {
  1472. "__type__": "cc.PrefabInfo",
  1473. "root": {
  1474. "__id__": 10
  1475. },
  1476. "asset": {
  1477. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1478. },
  1479. "fileId": "17VM5uM3xFNYVjLZEwGScY",
  1480. "sync": false
  1481. },
  1482. {
  1483. "__type__": "cc.Node",
  1484. "_name": "ksan2",
  1485. "_objFlags": 0,
  1486. "_parent": {
  1487. "__id__": 31
  1488. },
  1489. "_children": [],
  1490. "_active": false,
  1491. "_components": [
  1492. {
  1493. "__id__": 36
  1494. }
  1495. ],
  1496. "_prefab": {
  1497. "__id__": 37
  1498. },
  1499. "_opacity": 255,
  1500. "_color": {
  1501. "__type__": "cc.Color",
  1502. "r": 255,
  1503. "g": 255,
  1504. "b": 255,
  1505. "a": 255
  1506. },
  1507. "_contentSize": {
  1508. "__type__": "cc.Size",
  1509. "width": 319,
  1510. "height": 319
  1511. },
  1512. "_anchorPoint": {
  1513. "__type__": "cc.Vec2",
  1514. "x": 0.5,
  1515. "y": 0.5
  1516. },
  1517. "_trs": {
  1518. "__type__": "TypedArray",
  1519. "ctor": "Float64Array",
  1520. "array": [
  1521. 0,
  1522. 107,
  1523. 0,
  1524. 0,
  1525. 0,
  1526. 0,
  1527. 1,
  1528. 1,
  1529. 1,
  1530. 1
  1531. ]
  1532. },
  1533. "_eulerAngles": {
  1534. "__type__": "cc.Vec3",
  1535. "x": 0,
  1536. "y": 0,
  1537. "z": 0
  1538. },
  1539. "_skewX": 0,
  1540. "_skewY": 0,
  1541. "_is3DNode": false,
  1542. "_groupIndex": 0,
  1543. "groupIndex": 0,
  1544. "_id": "65a3yNv6NCO4i0hIgh1Usj"
  1545. },
  1546. {
  1547. "__type__": "cc.Sprite",
  1548. "_name": "",
  1549. "_objFlags": 0,
  1550. "node": {
  1551. "__id__": 35
  1552. },
  1553. "_enabled": true,
  1554. "_materials": [
  1555. {
  1556. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1557. }
  1558. ],
  1559. "_srcBlendFactor": 770,
  1560. "_dstBlendFactor": 771,
  1561. "_spriteFrame": {
  1562. "__uuid__": "4ecd7fef-14ac-45e8-8323-9c758f939891"
  1563. },
  1564. "_type": 0,
  1565. "_sizeMode": 1,
  1566. "_fillType": 0,
  1567. "_fillCenter": {
  1568. "__type__": "cc.Vec2",
  1569. "x": 0,
  1570. "y": 0
  1571. },
  1572. "_fillStart": 0,
  1573. "_fillRange": 0,
  1574. "_isTrimmedMode": true,
  1575. "_atlas": null,
  1576. "_id": "44HJ/VV4xOUI52nVLxFCWz"
  1577. },
  1578. {
  1579. "__type__": "cc.PrefabInfo",
  1580. "root": {
  1581. "__id__": 10
  1582. },
  1583. "asset": {
  1584. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1585. },
  1586. "fileId": "65a3yNv6NCO4i0hIgh1Usj",
  1587. "sync": false
  1588. },
  1589. {
  1590. "__type__": "cc.Node",
  1591. "_name": "ksan",
  1592. "_objFlags": 0,
  1593. "_parent": {
  1594. "__id__": 31
  1595. },
  1596. "_children": [],
  1597. "_active": true,
  1598. "_components": [
  1599. {
  1600. "__id__": 39
  1601. },
  1602. {
  1603. "__id__": 40
  1604. }
  1605. ],
  1606. "_prefab": {
  1607. "__id__": 42
  1608. },
  1609. "_opacity": 255,
  1610. "_color": {
  1611. "__type__": "cc.Color",
  1612. "r": 255,
  1613. "g": 255,
  1614. "b": 255,
  1615. "a": 255
  1616. },
  1617. "_contentSize": {
  1618. "__type__": "cc.Size",
  1619. "width": 162,
  1620. "height": 163
  1621. },
  1622. "_anchorPoint": {
  1623. "__type__": "cc.Vec2",
  1624. "x": 0.5,
  1625. "y": 0.5
  1626. },
  1627. "_trs": {
  1628. "__type__": "TypedArray",
  1629. "ctor": "Float64Array",
  1630. "array": [
  1631. 0,
  1632. 107,
  1633. 0,
  1634. 0,
  1635. 0,
  1636. 0,
  1637. 1,
  1638. 1,
  1639. 1,
  1640. 1
  1641. ]
  1642. },
  1643. "_eulerAngles": {
  1644. "__type__": "cc.Vec3",
  1645. "x": 0,
  1646. "y": 0,
  1647. "z": 0
  1648. },
  1649. "_skewX": 0,
  1650. "_skewY": 0,
  1651. "_is3DNode": false,
  1652. "_groupIndex": 0,
  1653. "groupIndex": 0,
  1654. "_id": "105Rp9RXhIwr5N4WRMUuII"
  1655. },
  1656. {
  1657. "__type__": "cc.Sprite",
  1658. "_name": "",
  1659. "_objFlags": 0,
  1660. "node": {
  1661. "__id__": 38
  1662. },
  1663. "_enabled": true,
  1664. "_materials": [
  1665. {
  1666. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1667. }
  1668. ],
  1669. "_srcBlendFactor": 770,
  1670. "_dstBlendFactor": 771,
  1671. "_spriteFrame": {
  1672. "__uuid__": "43c8d506-f13b-45dd-93dc-6bc91eeb586c"
  1673. },
  1674. "_type": 0,
  1675. "_sizeMode": 1,
  1676. "_fillType": 0,
  1677. "_fillCenter": {
  1678. "__type__": "cc.Vec2",
  1679. "x": 0,
  1680. "y": 0
  1681. },
  1682. "_fillStart": 0,
  1683. "_fillRange": 0,
  1684. "_isTrimmedMode": true,
  1685. "_atlas": null,
  1686. "_id": "706e0GPulJ/oMN2eEtiES4"
  1687. },
  1688. {
  1689. "__type__": "cc.Button",
  1690. "_name": "",
  1691. "_objFlags": 0,
  1692. "node": {
  1693. "__id__": 38
  1694. },
  1695. "_enabled": true,
  1696. "_normalMaterial": null,
  1697. "_grayMaterial": null,
  1698. "duration": 0.1,
  1699. "zoomScale": 1.2,
  1700. "clickEvents": [
  1701. {
  1702. "__id__": 41
  1703. }
  1704. ],
  1705. "_N$interactable": true,
  1706. "_N$enableAutoGrayEffect": false,
  1707. "_N$transition": 0,
  1708. "transition": 0,
  1709. "_N$normalColor": {
  1710. "__type__": "cc.Color",
  1711. "r": 214,
  1712. "g": 214,
  1713. "b": 214,
  1714. "a": 255
  1715. },
  1716. "_N$pressedColor": {
  1717. "__type__": "cc.Color",
  1718. "r": 211,
  1719. "g": 211,
  1720. "b": 211,
  1721. "a": 255
  1722. },
  1723. "pressedColor": {
  1724. "__type__": "cc.Color",
  1725. "r": 211,
  1726. "g": 211,
  1727. "b": 211,
  1728. "a": 255
  1729. },
  1730. "_N$hoverColor": {
  1731. "__type__": "cc.Color",
  1732. "r": 255,
  1733. "g": 255,
  1734. "b": 255,
  1735. "a": 255
  1736. },
  1737. "hoverColor": {
  1738. "__type__": "cc.Color",
  1739. "r": 255,
  1740. "g": 255,
  1741. "b": 255,
  1742. "a": 255
  1743. },
  1744. "_N$disabledColor": {
  1745. "__type__": "cc.Color",
  1746. "r": 124,
  1747. "g": 124,
  1748. "b": 124,
  1749. "a": 255
  1750. },
  1751. "_N$normalSprite": null,
  1752. "_N$pressedSprite": null,
  1753. "pressedSprite": null,
  1754. "_N$hoverSprite": null,
  1755. "hoverSprite": null,
  1756. "_N$disabledSprite": null,
  1757. "_N$target": {
  1758. "__id__": 38
  1759. },
  1760. "_id": "2di548GEVKZYAPBOZ/VE3f"
  1761. },
  1762. {
  1763. "__type__": "cc.ClickEvent",
  1764. "target": {
  1765. "__id__": 2
  1766. },
  1767. "component": "",
  1768. "_componentId": "9129bZ2zN5I673xCbm79sLC",
  1769. "handler": "StartGame",
  1770. "customEventData": ""
  1771. },
  1772. {
  1773. "__type__": "cc.PrefabInfo",
  1774. "root": {
  1775. "__id__": 10
  1776. },
  1777. "asset": {
  1778. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1779. },
  1780. "fileId": "105Rp9RXhIwr5N4WRMUuII",
  1781. "sync": false
  1782. },
  1783. {
  1784. "__type__": "cc.Node",
  1785. "_name": "花瓣素材_手绘-科技风元素_48247524",
  1786. "_objFlags": 0,
  1787. "_parent": {
  1788. "__id__": 31
  1789. },
  1790. "_children": [],
  1791. "_active": true,
  1792. "_components": [
  1793. {
  1794. "__id__": 44
  1795. }
  1796. ],
  1797. "_prefab": {
  1798. "__id__": 45
  1799. },
  1800. "_opacity": 255,
  1801. "_color": {
  1802. "__type__": "cc.Color",
  1803. "r": 255,
  1804. "g": 255,
  1805. "b": 255,
  1806. "a": 255
  1807. },
  1808. "_contentSize": {
  1809. "__type__": "cc.Size",
  1810. "width": 301,
  1811. "height": 347
  1812. },
  1813. "_anchorPoint": {
  1814. "__type__": "cc.Vec2",
  1815. "x": 0.5,
  1816. "y": 0.5
  1817. },
  1818. "_trs": {
  1819. "__type__": "TypedArray",
  1820. "ctor": "Float64Array",
  1821. "array": [
  1822. 0,
  1823. 54.652,
  1824. 0,
  1825. 0,
  1826. 0,
  1827. 0,
  1828. 1,
  1829. 1,
  1830. 1,
  1831. 1
  1832. ]
  1833. },
  1834. "_eulerAngles": {
  1835. "__type__": "cc.Vec3",
  1836. "x": 0,
  1837. "y": 0,
  1838. "z": 0
  1839. },
  1840. "_skewX": 0,
  1841. "_skewY": 0,
  1842. "_is3DNode": false,
  1843. "_groupIndex": 0,
  1844. "groupIndex": 0,
  1845. "_id": "09K5EDIdtL6Zb0qzr6bj9P"
  1846. },
  1847. {
  1848. "__type__": "cc.Sprite",
  1849. "_name": "",
  1850. "_objFlags": 0,
  1851. "node": {
  1852. "__id__": 43
  1853. },
  1854. "_enabled": true,
  1855. "_materials": [
  1856. {
  1857. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1858. }
  1859. ],
  1860. "_srcBlendFactor": 770,
  1861. "_dstBlendFactor": 771,
  1862. "_spriteFrame": {
  1863. "__uuid__": "c840d697-b3d6-4864-a342-cbe7c5e2f1ce"
  1864. },
  1865. "_type": 0,
  1866. "_sizeMode": 1,
  1867. "_fillType": 0,
  1868. "_fillCenter": {
  1869. "__type__": "cc.Vec2",
  1870. "x": 0,
  1871. "y": 0
  1872. },
  1873. "_fillStart": 0,
  1874. "_fillRange": 0,
  1875. "_isTrimmedMode": true,
  1876. "_atlas": null,
  1877. "_id": "52qKT4XIFD2qvgvQKzSvfR"
  1878. },
  1879. {
  1880. "__type__": "cc.PrefabInfo",
  1881. "root": {
  1882. "__id__": 10
  1883. },
  1884. "asset": {
  1885. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1886. },
  1887. "fileId": "05SHA18YVDZa3p7hcNvO8K",
  1888. "sync": false
  1889. },
  1890. {
  1891. "__type__": "cc.Node",
  1892. "_name": "logo",
  1893. "_objFlags": 0,
  1894. "_parent": {
  1895. "__id__": 31
  1896. },
  1897. "_children": [],
  1898. "_active": false,
  1899. "_components": [
  1900. {
  1901. "__id__": 47
  1902. }
  1903. ],
  1904. "_prefab": {
  1905. "__id__": 48
  1906. },
  1907. "_opacity": 255,
  1908. "_color": {
  1909. "__type__": "cc.Color",
  1910. "r": 255,
  1911. "g": 255,
  1912. "b": 255,
  1913. "a": 255
  1914. },
  1915. "_contentSize": {
  1916. "__type__": "cc.Size",
  1917. "width": 852,
  1918. "height": 479
  1919. },
  1920. "_anchorPoint": {
  1921. "__type__": "cc.Vec2",
  1922. "x": 0.5,
  1923. "y": 0.5
  1924. },
  1925. "_trs": {
  1926. "__type__": "TypedArray",
  1927. "ctor": "Float64Array",
  1928. "array": [
  1929. 4,
  1930. 633,
  1931. 0,
  1932. 0,
  1933. 0,
  1934. 0,
  1935. 1,
  1936. 1,
  1937. 1,
  1938. 1
  1939. ]
  1940. },
  1941. "_eulerAngles": {
  1942. "__type__": "cc.Vec3",
  1943. "x": 0,
  1944. "y": 0,
  1945. "z": 0
  1946. },
  1947. "_skewX": 0,
  1948. "_skewY": 0,
  1949. "_is3DNode": false,
  1950. "_groupIndex": 0,
  1951. "groupIndex": 0,
  1952. "_id": "fcc2tjolZP/ZCtpfRx+oyC"
  1953. },
  1954. {
  1955. "__type__": "cc.Sprite",
  1956. "_name": "",
  1957. "_objFlags": 0,
  1958. "node": {
  1959. "__id__": 46
  1960. },
  1961. "_enabled": true,
  1962. "_materials": [
  1963. {
  1964. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1965. }
  1966. ],
  1967. "_srcBlendFactor": 770,
  1968. "_dstBlendFactor": 771,
  1969. "_spriteFrame": {
  1970. "__uuid__": "285e75fc-fd47-47aa-9554-1a5a5427961f"
  1971. },
  1972. "_type": 0,
  1973. "_sizeMode": 1,
  1974. "_fillType": 0,
  1975. "_fillCenter": {
  1976. "__type__": "cc.Vec2",
  1977. "x": 0,
  1978. "y": 0
  1979. },
  1980. "_fillStart": 0,
  1981. "_fillRange": 0,
  1982. "_isTrimmedMode": true,
  1983. "_atlas": null,
  1984. "_id": "9crhu+61ZExLRIk8ylPzi7"
  1985. },
  1986. {
  1987. "__type__": "cc.PrefabInfo",
  1988. "root": {
  1989. "__id__": 10
  1990. },
  1991. "asset": {
  1992. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  1993. },
  1994. "fileId": "fcc2tjolZP/ZCtpfRx+oyC",
  1995. "sync": false
  1996. },
  1997. {
  1998. "__type__": "cc.Animation",
  1999. "_name": "",
  2000. "_objFlags": 0,
  2001. "node": {
  2002. "__id__": 31
  2003. },
  2004. "_enabled": true,
  2005. "_defaultClip": {
  2006. "__uuid__": "cb825fce-09de-4e41-9952-4136908e1a02"
  2007. },
  2008. "_clips": [
  2009. {
  2010. "__uuid__": "cb825fce-09de-4e41-9952-4136908e1a02"
  2011. }
  2012. ],
  2013. "playOnLoad": false,
  2014. "_id": "29lwUJHD9GWowzidR+r3Ms"
  2015. },
  2016. {
  2017. "__type__": "cc.PrefabInfo",
  2018. "root": {
  2019. "__id__": 10
  2020. },
  2021. "asset": {
  2022. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2023. },
  2024. "fileId": "42Goy9OwBJQqt1uR/ALdgV",
  2025. "sync": false
  2026. },
  2027. {
  2028. "__type__": "cc.Node",
  2029. "_name": "Down",
  2030. "_objFlags": 0,
  2031. "_parent": {
  2032. "__id__": 10
  2033. },
  2034. "_children": [
  2035. {
  2036. "__id__": 52
  2037. },
  2038. {
  2039. "__id__": 55
  2040. }
  2041. ],
  2042. "_active": true,
  2043. "_components": [
  2044. {
  2045. "__id__": 64
  2046. }
  2047. ],
  2048. "_prefab": {
  2049. "__id__": 65
  2050. },
  2051. "_opacity": 255,
  2052. "_color": {
  2053. "__type__": "cc.Color",
  2054. "r": 255,
  2055. "g": 255,
  2056. "b": 255,
  2057. "a": 255
  2058. },
  2059. "_contentSize": {
  2060. "__type__": "cc.Size",
  2061. "width": 0,
  2062. "height": 0
  2063. },
  2064. "_anchorPoint": {
  2065. "__type__": "cc.Vec2",
  2066. "x": 0.5,
  2067. "y": 0.5
  2068. },
  2069. "_trs": {
  2070. "__type__": "TypedArray",
  2071. "ctor": "Float64Array",
  2072. "array": [
  2073. 0,
  2074. 0,
  2075. 0,
  2076. 0,
  2077. 0,
  2078. 0,
  2079. 1,
  2080. 1,
  2081. 1,
  2082. 1
  2083. ]
  2084. },
  2085. "_eulerAngles": {
  2086. "__type__": "cc.Vec3",
  2087. "x": 0,
  2088. "y": 0,
  2089. "z": 0
  2090. },
  2091. "_skewX": 0,
  2092. "_skewY": 0,
  2093. "_is3DNode": false,
  2094. "_groupIndex": 0,
  2095. "groupIndex": 0,
  2096. "_id": "86iEVo3VFJ6p8mvLDVbThE"
  2097. },
  2098. {
  2099. "__type__": "cc.Node",
  2100. "_name": "wf",
  2101. "_objFlags": 0,
  2102. "_parent": {
  2103. "__id__": 51
  2104. },
  2105. "_children": [],
  2106. "_active": true,
  2107. "_components": [
  2108. {
  2109. "__id__": 53
  2110. }
  2111. ],
  2112. "_prefab": {
  2113. "__id__": 54
  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": 680,
  2126. "height": 66
  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. -502,
  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": "a7rZ1bBx5F0oOfangwBwvN"
  2161. },
  2162. {
  2163. "__type__": "cc.Sprite",
  2164. "_name": "",
  2165. "_objFlags": 0,
  2166. "node": {
  2167. "__id__": 52
  2168. },
  2169. "_enabled": true,
  2170. "_materials": [
  2171. {
  2172. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2173. }
  2174. ],
  2175. "_srcBlendFactor": 770,
  2176. "_dstBlendFactor": 771,
  2177. "_spriteFrame": {
  2178. "__uuid__": "fca32e6e-f7f3-41ac-93ee-585633595023"
  2179. },
  2180. "_type": 0,
  2181. "_sizeMode": 1,
  2182. "_fillType": 0,
  2183. "_fillCenter": {
  2184. "__type__": "cc.Vec2",
  2185. "x": 0,
  2186. "y": 0
  2187. },
  2188. "_fillStart": 0,
  2189. "_fillRange": 0,
  2190. "_isTrimmedMode": true,
  2191. "_atlas": null,
  2192. "_id": "18pfJoj99PD6CFNBhdp8lF"
  2193. },
  2194. {
  2195. "__type__": "cc.PrefabInfo",
  2196. "root": {
  2197. "__id__": 10
  2198. },
  2199. "asset": {
  2200. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2201. },
  2202. "fileId": "a7rZ1bBx5F0oOfangwBwvN",
  2203. "sync": false
  2204. },
  2205. {
  2206. "__type__": "cc.Node",
  2207. "_name": "phbtb",
  2208. "_objFlags": 0,
  2209. "_parent": {
  2210. "__id__": 51
  2211. },
  2212. "_children": [
  2213. {
  2214. "__id__": 56
  2215. },
  2216. {
  2217. "__id__": 58
  2218. }
  2219. ],
  2220. "_active": false,
  2221. "_components": [
  2222. {
  2223. "__id__": 62
  2224. }
  2225. ],
  2226. "_prefab": {
  2227. "__id__": 63
  2228. },
  2229. "_opacity": 255,
  2230. "_color": {
  2231. "__type__": "cc.Color",
  2232. "r": 255,
  2233. "g": 255,
  2234. "b": 255,
  2235. "a": 255
  2236. },
  2237. "_contentSize": {
  2238. "__type__": "cc.Size",
  2239. "width": 286,
  2240. "height": 257
  2241. },
  2242. "_anchorPoint": {
  2243. "__type__": "cc.Vec2",
  2244. "x": 0.5,
  2245. "y": 0.5
  2246. },
  2247. "_trs": {
  2248. "__type__": "TypedArray",
  2249. "ctor": "Float64Array",
  2250. "array": [
  2251. 0,
  2252. -308,
  2253. 0,
  2254. 0,
  2255. 0,
  2256. 0,
  2257. 1,
  2258. 1,
  2259. 1,
  2260. 1
  2261. ]
  2262. },
  2263. "_eulerAngles": {
  2264. "__type__": "cc.Vec3",
  2265. "x": 0,
  2266. "y": 0,
  2267. "z": 0
  2268. },
  2269. "_skewX": 0,
  2270. "_skewY": 0,
  2271. "_is3DNode": false,
  2272. "_groupIndex": 0,
  2273. "groupIndex": 0,
  2274. "_id": "4aeR7XcvhGfL2hBTaukHak"
  2275. },
  2276. {
  2277. "__type__": "cc.Node",
  2278. "_name": "Check",
  2279. "_objFlags": 0,
  2280. "_parent": {
  2281. "__id__": 55
  2282. },
  2283. "_children": [],
  2284. "_active": true,
  2285. "_components": [],
  2286. "_prefab": {
  2287. "__id__": 57
  2288. },
  2289. "_opacity": 255,
  2290. "_color": {
  2291. "__type__": "cc.Color",
  2292. "r": 255,
  2293. "g": 255,
  2294. "b": 255,
  2295. "a": 255
  2296. },
  2297. "_contentSize": {
  2298. "__type__": "cc.Size",
  2299. "width": 100,
  2300. "height": 40
  2301. },
  2302. "_anchorPoint": {
  2303. "__type__": "cc.Vec2",
  2304. "x": 0.5,
  2305. "y": 0.5
  2306. },
  2307. "_trs": {
  2308. "__type__": "TypedArray",
  2309. "ctor": "Float64Array",
  2310. "array": [
  2311. 6.2,
  2312. -99.6,
  2313. 0,
  2314. 0,
  2315. 0,
  2316. 0,
  2317. 1,
  2318. 1,
  2319. 1,
  2320. 1
  2321. ]
  2322. },
  2323. "_eulerAngles": {
  2324. "__type__": "cc.Vec3",
  2325. "x": 0,
  2326. "y": 0,
  2327. "z": 0
  2328. },
  2329. "_skewX": 0,
  2330. "_skewY": 0,
  2331. "_is3DNode": false,
  2332. "_groupIndex": 0,
  2333. "groupIndex": 0,
  2334. "_id": "8dnJPYUdVN9I4jnOHA+Wnq"
  2335. },
  2336. {
  2337. "__type__": "cc.PrefabInfo",
  2338. "root": {
  2339. "__id__": 10
  2340. },
  2341. "asset": {
  2342. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2343. },
  2344. "fileId": "8dnJPYUdVN9I4jnOHA+Wnq",
  2345. "sync": false
  2346. },
  2347. {
  2348. "__type__": "cc.Node",
  2349. "_name": "Check",
  2350. "_objFlags": 0,
  2351. "_parent": {
  2352. "__id__": 55
  2353. },
  2354. "_children": [],
  2355. "_active": true,
  2356. "_components": [
  2357. {
  2358. "__id__": 59
  2359. }
  2360. ],
  2361. "_prefab": {
  2362. "__id__": 61
  2363. },
  2364. "_opacity": 255,
  2365. "_color": {
  2366. "__type__": "cc.Color",
  2367. "r": 255,
  2368. "g": 255,
  2369. "b": 255,
  2370. "a": 255
  2371. },
  2372. "_contentSize": {
  2373. "__type__": "cc.Size",
  2374. "width": 300,
  2375. "height": 266
  2376. },
  2377. "_anchorPoint": {
  2378. "__type__": "cc.Vec2",
  2379. "x": 0.5,
  2380. "y": 0.5
  2381. },
  2382. "_trs": {
  2383. "__type__": "TypedArray",
  2384. "ctor": "Float64Array",
  2385. "array": [
  2386. -4.392,
  2387. -5.814,
  2388. 0,
  2389. 0,
  2390. 0,
  2391. 0,
  2392. 1,
  2393. 1,
  2394. 1,
  2395. 1
  2396. ]
  2397. },
  2398. "_eulerAngles": {
  2399. "__type__": "cc.Vec3",
  2400. "x": 0,
  2401. "y": 0,
  2402. "z": 0
  2403. },
  2404. "_skewX": 0,
  2405. "_skewY": 0,
  2406. "_is3DNode": false,
  2407. "_groupIndex": 0,
  2408. "groupIndex": 0,
  2409. "_id": "3fM0XTsr5FoKVAjxCDrOXN"
  2410. },
  2411. {
  2412. "__type__": "cc.Button",
  2413. "_name": "",
  2414. "_objFlags": 0,
  2415. "node": {
  2416. "__id__": 58
  2417. },
  2418. "_enabled": true,
  2419. "_normalMaterial": null,
  2420. "_grayMaterial": null,
  2421. "duration": 0.1,
  2422. "zoomScale": 1.2,
  2423. "clickEvents": [
  2424. {
  2425. "__id__": 60
  2426. }
  2427. ],
  2428. "_N$interactable": true,
  2429. "_N$enableAutoGrayEffect": false,
  2430. "_N$transition": 0,
  2431. "transition": 0,
  2432. "_N$normalColor": {
  2433. "__type__": "cc.Color",
  2434. "r": 255,
  2435. "g": 255,
  2436. "b": 255,
  2437. "a": 255
  2438. },
  2439. "_N$pressedColor": {
  2440. "__type__": "cc.Color",
  2441. "r": 255,
  2442. "g": 255,
  2443. "b": 255,
  2444. "a": 255
  2445. },
  2446. "pressedColor": {
  2447. "__type__": "cc.Color",
  2448. "r": 255,
  2449. "g": 255,
  2450. "b": 255,
  2451. "a": 255
  2452. },
  2453. "_N$hoverColor": {
  2454. "__type__": "cc.Color",
  2455. "r": 255,
  2456. "g": 255,
  2457. "b": 255,
  2458. "a": 255
  2459. },
  2460. "hoverColor": {
  2461. "__type__": "cc.Color",
  2462. "r": 255,
  2463. "g": 255,
  2464. "b": 255,
  2465. "a": 255
  2466. },
  2467. "_N$disabledColor": {
  2468. "__type__": "cc.Color",
  2469. "r": 255,
  2470. "g": 255,
  2471. "b": 255,
  2472. "a": 255
  2473. },
  2474. "_N$normalSprite": {
  2475. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2476. },
  2477. "_N$pressedSprite": {
  2478. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2479. },
  2480. "pressedSprite": {
  2481. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2482. },
  2483. "_N$hoverSprite": {
  2484. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2485. },
  2486. "hoverSprite": {
  2487. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2488. },
  2489. "_N$disabledSprite": {
  2490. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2491. },
  2492. "_N$target": {
  2493. "__id__": 58
  2494. },
  2495. "_id": "f858NCYcpOfZ+J/OYuX/iL"
  2496. },
  2497. {
  2498. "__type__": "cc.ClickEvent",
  2499. "target": {
  2500. "__id__": 2
  2501. },
  2502. "component": "",
  2503. "_componentId": "9129bZ2zN5I673xCbm79sLC",
  2504. "handler": "CheckRank",
  2505. "customEventData": ""
  2506. },
  2507. {
  2508. "__type__": "cc.PrefabInfo",
  2509. "root": {
  2510. "__id__": 10
  2511. },
  2512. "asset": {
  2513. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2514. },
  2515. "fileId": "3fM0XTsr5FoKVAjxCDrOXN",
  2516. "sync": false
  2517. },
  2518. {
  2519. "__type__": "cc.Sprite",
  2520. "_name": "",
  2521. "_objFlags": 0,
  2522. "node": {
  2523. "__id__": 55
  2524. },
  2525. "_enabled": true,
  2526. "_materials": [
  2527. {
  2528. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2529. }
  2530. ],
  2531. "_srcBlendFactor": 770,
  2532. "_dstBlendFactor": 771,
  2533. "_spriteFrame": {
  2534. "__uuid__": "9539f31e-0b8e-4a98-a87a-ecb96d2ff479"
  2535. },
  2536. "_type": 0,
  2537. "_sizeMode": 1,
  2538. "_fillType": 0,
  2539. "_fillCenter": {
  2540. "__type__": "cc.Vec2",
  2541. "x": 0,
  2542. "y": 0
  2543. },
  2544. "_fillStart": 0,
  2545. "_fillRange": 0,
  2546. "_isTrimmedMode": true,
  2547. "_atlas": null,
  2548. "_id": "12hKP1q/lFRKZep7RZNHVc"
  2549. },
  2550. {
  2551. "__type__": "cc.PrefabInfo",
  2552. "root": {
  2553. "__id__": 10
  2554. },
  2555. "asset": {
  2556. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2557. },
  2558. "fileId": "4aeR7XcvhGfL2hBTaukHak",
  2559. "sync": false
  2560. },
  2561. {
  2562. "__type__": "cc.Animation",
  2563. "_name": "",
  2564. "_objFlags": 0,
  2565. "node": {
  2566. "__id__": 51
  2567. },
  2568. "_enabled": true,
  2569. "_defaultClip": {
  2570. "__uuid__": "6179a4fd-bd28-41df-b498-398691c7c94c"
  2571. },
  2572. "_clips": [
  2573. {
  2574. "__uuid__": "6179a4fd-bd28-41df-b498-398691c7c94c"
  2575. }
  2576. ],
  2577. "playOnLoad": false,
  2578. "_id": "d3Rb/ZCZRCZavWWbcG2bss"
  2579. },
  2580. {
  2581. "__type__": "cc.PrefabInfo",
  2582. "root": {
  2583. "__id__": 10
  2584. },
  2585. "asset": {
  2586. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2587. },
  2588. "fileId": "86iEVo3VFJ6p8mvLDVbThE",
  2589. "sync": false
  2590. },
  2591. {
  2592. "__type__": "cc.Animation",
  2593. "_name": "",
  2594. "_objFlags": 0,
  2595. "node": {
  2596. "__id__": 10
  2597. },
  2598. "_enabled": true,
  2599. "_defaultClip": {
  2600. "__uuid__": "f70cf6cf-9141-4f42-87bd-5d443e0220af"
  2601. },
  2602. "_clips": [
  2603. {
  2604. "__uuid__": "f70cf6cf-9141-4f42-87bd-5d443e0220af"
  2605. }
  2606. ],
  2607. "playOnLoad": false,
  2608. "_id": "0c1EvX3NtGTb8pqKspAydU"
  2609. },
  2610. {
  2611. "__type__": "cc.PrefabInfo",
  2612. "root": {
  2613. "__id__": 10
  2614. },
  2615. "asset": {
  2616. "__uuid__": "6f2eb256-c016-403a-8f1a-20c48e1a7ef9"
  2617. },
  2618. "fileId": "1dfdwaY1pP5KIJ7xUVbVgA",
  2619. "sync": false
  2620. },
  2621. {
  2622. "__type__": "cc.Canvas",
  2623. "_name": "",
  2624. "_objFlags": 0,
  2625. "node": {
  2626. "__id__": 2
  2627. },
  2628. "_enabled": true,
  2629. "_designResolution": {
  2630. "__type__": "cc.Size",
  2631. "width": 540,
  2632. "height": 960
  2633. },
  2634. "_fitWidth": true,
  2635. "_fitHeight": true,
  2636. "_id": "a58ADMBRRNyo0AFLJ12ydz"
  2637. },
  2638. {
  2639. "__type__": "9129bZ2zN5I673xCbm79sLC",
  2640. "_name": "",
  2641. "_objFlags": 0,
  2642. "node": {
  2643. "__id__": 2
  2644. },
  2645. "_enabled": true,
  2646. "paihangbang": {
  2647. "__uuid__": "e8c6737f-31bf-41fb-81a7-ffb65792dd04"
  2648. },
  2649. "_id": "5cq/dCbc9OnaU+5o2GL9uA"
  2650. },
  2651. {
  2652. "__type__": "cc.AudioSource",
  2653. "_name": "",
  2654. "_objFlags": 0,
  2655. "node": {
  2656. "__id__": 2
  2657. },
  2658. "_enabled": true,
  2659. "_clip": {
  2660. "__uuid__": "318070b5-c6d6-4245-a79c-468aa3e7a6a9"
  2661. },
  2662. "_volume": 1,
  2663. "_mute": false,
  2664. "_loop": true,
  2665. "_firstlyEnabled": true,
  2666. "playOnLoad": true,
  2667. "preload": true,
  2668. "_id": "caUTagq1pOF5pJnwqNDoBC"
  2669. },
  2670. {
  2671. "__type__": "cc.Widget",
  2672. "_name": "",
  2673. "_objFlags": 0,
  2674. "node": {
  2675. "__id__": 2
  2676. },
  2677. "_enabled": true,
  2678. "alignMode": 1,
  2679. "_target": null,
  2680. "_alignFlags": 45,
  2681. "_left": 0,
  2682. "_right": 0,
  2683. "_top": 0,
  2684. "_bottom": 0,
  2685. "_verticalCenter": 0,
  2686. "_horizontalCenter": 0,
  2687. "_isAbsLeft": true,
  2688. "_isAbsRight": true,
  2689. "_isAbsTop": true,
  2690. "_isAbsBottom": true,
  2691. "_isAbsHorizontalCenter": true,
  2692. "_isAbsVerticalCenter": true,
  2693. "_originalWidth": 0,
  2694. "_originalHeight": 0,
  2695. "_id": "68unDNtiBEBY4hcMtQguAf"
  2696. }
  2697. ]