lobbyNotice.prefab 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "lobbyNotice",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 60
  31. },
  32. {
  33. "__id__": 61
  34. },
  35. {
  36. "__id__": 62
  37. }
  38. ],
  39. "_prefab": {
  40. "__id__": 63
  41. },
  42. "_opacity": 255,
  43. "_color": {
  44. "__type__": "cc.Color",
  45. "r": 255,
  46. "g": 255,
  47. "b": 255,
  48. "a": 255
  49. },
  50. "_contentSize": {
  51. "__type__": "cc.Size",
  52. "width": 1624,
  53. "height": 750
  54. },
  55. "_anchorPoint": {
  56. "__type__": "cc.Vec2",
  57. "x": 0.5,
  58. "y": 0.5
  59. },
  60. "_trs": {
  61. "__type__": "TypedArray",
  62. "ctor": "Float64Array",
  63. "array": [
  64. 812,
  65. 375,
  66. 0,
  67. 0,
  68. 0,
  69. 0,
  70. 1,
  71. 1,
  72. 1,
  73. 1
  74. ]
  75. },
  76. "_eulerAngles": {
  77. "__type__": "cc.Vec3",
  78. "x": 0,
  79. "y": 0,
  80. "z": 0
  81. },
  82. "_skewX": 0,
  83. "_skewY": 0,
  84. "_is3DNode": false,
  85. "_groupIndex": 0,
  86. "groupIndex": 0,
  87. "_id": ""
  88. },
  89. {
  90. "__type__": "cc.Node",
  91. "_name": "Mask",
  92. "_objFlags": 0,
  93. "_parent": {
  94. "__id__": 1
  95. },
  96. "_children": [],
  97. "_active": true,
  98. "_components": [
  99. {
  100. "__id__": 3
  101. },
  102. {
  103. "__id__": 4
  104. },
  105. {
  106. "__id__": 5
  107. }
  108. ],
  109. "_prefab": {
  110. "__id__": 6
  111. },
  112. "_opacity": 125,
  113. "_color": {
  114. "__type__": "cc.Color",
  115. "r": 0,
  116. "g": 0,
  117. "b": 0,
  118. "a": 255
  119. },
  120. "_contentSize": {
  121. "__type__": "cc.Size",
  122. "width": 1624,
  123. "height": 750
  124. },
  125. "_anchorPoint": {
  126. "__type__": "cc.Vec2",
  127. "x": 0.5,
  128. "y": 0.5
  129. },
  130. "_trs": {
  131. "__type__": "TypedArray",
  132. "ctor": "Float64Array",
  133. "array": [
  134. 0,
  135. 0,
  136. 0,
  137. 0,
  138. 0,
  139. 0,
  140. 1,
  141. 1,
  142. 1,
  143. 1
  144. ]
  145. },
  146. "_eulerAngles": {
  147. "__type__": "cc.Vec3",
  148. "x": 0,
  149. "y": 0,
  150. "z": 0
  151. },
  152. "_skewX": 0,
  153. "_skewY": 0,
  154. "_is3DNode": false,
  155. "_groupIndex": 0,
  156. "groupIndex": 0,
  157. "_id": ""
  158. },
  159. {
  160. "__type__": "cc.Sprite",
  161. "_name": "",
  162. "_objFlags": 0,
  163. "node": {
  164. "__id__": 2
  165. },
  166. "_enabled": true,
  167. "_materials": [
  168. {
  169. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  170. }
  171. ],
  172. "_srcBlendFactor": 770,
  173. "_dstBlendFactor": 771,
  174. "_spriteFrame": {
  175. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  176. },
  177. "_type": 0,
  178. "_sizeMode": 0,
  179. "_fillType": 0,
  180. "_fillCenter": {
  181. "__type__": "cc.Vec2",
  182. "x": 0,
  183. "y": 0
  184. },
  185. "_fillStart": 0,
  186. "_fillRange": 0,
  187. "_isTrimmedMode": true,
  188. "_atlas": null,
  189. "_id": ""
  190. },
  191. {
  192. "__type__": "cc.Button",
  193. "_name": "",
  194. "_objFlags": 0,
  195. "node": {
  196. "__id__": 2
  197. },
  198. "_enabled": true,
  199. "_normalMaterial": null,
  200. "_grayMaterial": null,
  201. "duration": 0.1,
  202. "zoomScale": 1.2,
  203. "clickEvents": [],
  204. "_N$interactable": true,
  205. "_N$enableAutoGrayEffect": false,
  206. "_N$transition": 0,
  207. "transition": 0,
  208. "_N$normalColor": {
  209. "__type__": "cc.Color",
  210. "r": 214,
  211. "g": 214,
  212. "b": 214,
  213. "a": 255
  214. },
  215. "_N$pressedColor": {
  216. "__type__": "cc.Color",
  217. "r": 211,
  218. "g": 211,
  219. "b": 211,
  220. "a": 255
  221. },
  222. "pressedColor": {
  223. "__type__": "cc.Color",
  224. "r": 211,
  225. "g": 211,
  226. "b": 211,
  227. "a": 255
  228. },
  229. "_N$hoverColor": {
  230. "__type__": "cc.Color",
  231. "r": 255,
  232. "g": 255,
  233. "b": 255,
  234. "a": 255
  235. },
  236. "hoverColor": {
  237. "__type__": "cc.Color",
  238. "r": 255,
  239. "g": 255,
  240. "b": 255,
  241. "a": 255
  242. },
  243. "_N$disabledColor": {
  244. "__type__": "cc.Color",
  245. "r": 124,
  246. "g": 124,
  247. "b": 124,
  248. "a": 255
  249. },
  250. "_N$normalSprite": null,
  251. "_N$pressedSprite": null,
  252. "pressedSprite": null,
  253. "_N$hoverSprite": null,
  254. "hoverSprite": null,
  255. "_N$disabledSprite": null,
  256. "_N$target": {
  257. "__id__": 2
  258. },
  259. "_id": ""
  260. },
  261. {
  262. "__type__": "cc.Widget",
  263. "_name": "",
  264. "_objFlags": 0,
  265. "node": {
  266. "__id__": 2
  267. },
  268. "_enabled": true,
  269. "alignMode": 1,
  270. "_target": null,
  271. "_alignFlags": 45,
  272. "_left": 0,
  273. "_right": 0,
  274. "_top": 0,
  275. "_bottom": 0,
  276. "_verticalCenter": 0,
  277. "_horizontalCenter": 0,
  278. "_isAbsLeft": true,
  279. "_isAbsRight": true,
  280. "_isAbsTop": true,
  281. "_isAbsBottom": true,
  282. "_isAbsHorizontalCenter": true,
  283. "_isAbsVerticalCenter": true,
  284. "_originalWidth": 100,
  285. "_originalHeight": 100,
  286. "_id": ""
  287. },
  288. {
  289. "__type__": "cc.PrefabInfo",
  290. "root": {
  291. "__id__": 1
  292. },
  293. "asset": {
  294. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  295. },
  296. "fileId": "e0FqlQfatJkaHweRNge7Kf",
  297. "sync": false
  298. },
  299. {
  300. "__type__": "cc.Node",
  301. "_name": "rootNode",
  302. "_objFlags": 0,
  303. "_parent": {
  304. "__id__": 1
  305. },
  306. "_children": [
  307. {
  308. "__id__": 8
  309. },
  310. {
  311. "__id__": 11
  312. },
  313. {
  314. "__id__": 14
  315. },
  316. {
  317. "__id__": 26
  318. },
  319. {
  320. "__id__": 52
  321. },
  322. {
  323. "__id__": 55
  324. }
  325. ],
  326. "_active": true,
  327. "_components": [],
  328. "_prefab": {
  329. "__id__": 59
  330. },
  331. "_opacity": 255,
  332. "_color": {
  333. "__type__": "cc.Color",
  334. "r": 255,
  335. "g": 255,
  336. "b": 255,
  337. "a": 255
  338. },
  339. "_contentSize": {
  340. "__type__": "cc.Size",
  341. "width": 1624,
  342. "height": 750
  343. },
  344. "_anchorPoint": {
  345. "__type__": "cc.Vec2",
  346. "x": 0.5,
  347. "y": 0.5
  348. },
  349. "_trs": {
  350. "__type__": "TypedArray",
  351. "ctor": "Float64Array",
  352. "array": [
  353. 0,
  354. 0,
  355. 0,
  356. 0,
  357. 0,
  358. 0,
  359. 1,
  360. 1,
  361. 1,
  362. 1
  363. ]
  364. },
  365. "_eulerAngles": {
  366. "__type__": "cc.Vec3",
  367. "x": 0,
  368. "y": 0,
  369. "z": 0
  370. },
  371. "_skewX": 0,
  372. "_skewY": 0,
  373. "_is3DNode": false,
  374. "_groupIndex": 0,
  375. "groupIndex": 0,
  376. "_id": ""
  377. },
  378. {
  379. "__type__": "cc.Node",
  380. "_name": "sprite_bg",
  381. "_objFlags": 0,
  382. "_parent": {
  383. "__id__": 7
  384. },
  385. "_children": [],
  386. "_active": true,
  387. "_components": [
  388. {
  389. "__id__": 9
  390. }
  391. ],
  392. "_prefab": {
  393. "__id__": 10
  394. },
  395. "_opacity": 255,
  396. "_color": {
  397. "__type__": "cc.Color",
  398. "r": 255,
  399. "g": 255,
  400. "b": 255,
  401. "a": 255
  402. },
  403. "_contentSize": {
  404. "__type__": "cc.Size",
  405. "width": 1277.65,
  406. "height": 762.45
  407. },
  408. "_anchorPoint": {
  409. "__type__": "cc.Vec2",
  410. "x": 0.5,
  411. "y": 0.5
  412. },
  413. "_trs": {
  414. "__type__": "TypedArray",
  415. "ctor": "Float64Array",
  416. "array": [
  417. 0,
  418. 0,
  419. 0,
  420. 0,
  421. 0,
  422. 0,
  423. 1,
  424. 1,
  425. 1,
  426. 1
  427. ]
  428. },
  429. "_eulerAngles": {
  430. "__type__": "cc.Vec3",
  431. "x": 0,
  432. "y": 0,
  433. "z": 0
  434. },
  435. "_skewX": 0,
  436. "_skewY": 0,
  437. "_is3DNode": false,
  438. "_groupIndex": 0,
  439. "groupIndex": 0,
  440. "_id": ""
  441. },
  442. {
  443. "__type__": "cc.Sprite",
  444. "_name": "",
  445. "_objFlags": 0,
  446. "node": {
  447. "__id__": 8
  448. },
  449. "_enabled": true,
  450. "_materials": [
  451. {
  452. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  453. }
  454. ],
  455. "_srcBlendFactor": 770,
  456. "_dstBlendFactor": 771,
  457. "_spriteFrame": {
  458. "__uuid__": "0de783b1-efa1-491a-9988-47702088afff"
  459. },
  460. "_type": 0,
  461. "_sizeMode": 0,
  462. "_fillType": 0,
  463. "_fillCenter": {
  464. "__type__": "cc.Vec2",
  465. "x": 0,
  466. "y": 0
  467. },
  468. "_fillStart": 0,
  469. "_fillRange": 0,
  470. "_isTrimmedMode": true,
  471. "_atlas": null,
  472. "_id": ""
  473. },
  474. {
  475. "__type__": "cc.PrefabInfo",
  476. "root": {
  477. "__id__": 1
  478. },
  479. "asset": {
  480. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  481. },
  482. "fileId": "cc6mKKJV9A5ZcVf6CMRqza",
  483. "sync": false
  484. },
  485. {
  486. "__type__": "cc.Node",
  487. "_name": "sprite_choiceMask",
  488. "_objFlags": 0,
  489. "_parent": {
  490. "__id__": 7
  491. },
  492. "_children": [],
  493. "_active": false,
  494. "_components": [
  495. {
  496. "__id__": 12
  497. }
  498. ],
  499. "_prefab": {
  500. "__id__": 13
  501. },
  502. "_opacity": 255,
  503. "_color": {
  504. "__type__": "cc.Color",
  505. "r": 255,
  506. "g": 255,
  507. "b": 255,
  508. "a": 255
  509. },
  510. "_contentSize": {
  511. "__type__": "cc.Size",
  512. "width": 269,
  513. "height": 105
  514. },
  515. "_anchorPoint": {
  516. "__type__": "cc.Vec2",
  517. "x": 0.5,
  518. "y": 0.5
  519. },
  520. "_trs": {
  521. "__type__": "TypedArray",
  522. "ctor": "Float64Array",
  523. "array": [
  524. -462.02,
  525. 169.483,
  526. 0,
  527. 0,
  528. 0,
  529. 0,
  530. 1,
  531. 1,
  532. 1,
  533. 1
  534. ]
  535. },
  536. "_eulerAngles": {
  537. "__type__": "cc.Vec3",
  538. "x": 0,
  539. "y": 0,
  540. "z": 0
  541. },
  542. "_skewX": 0,
  543. "_skewY": 0,
  544. "_is3DNode": false,
  545. "_groupIndex": 0,
  546. "groupIndex": 0,
  547. "_id": ""
  548. },
  549. {
  550. "__type__": "cc.Sprite",
  551. "_name": "",
  552. "_objFlags": 0,
  553. "node": {
  554. "__id__": 11
  555. },
  556. "_enabled": true,
  557. "_materials": [
  558. {
  559. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  560. }
  561. ],
  562. "_srcBlendFactor": 770,
  563. "_dstBlendFactor": 771,
  564. "_spriteFrame": {
  565. "__uuid__": "bcc3bbc9-f3fe-4be6-8a52-9eb68ceba65a"
  566. },
  567. "_type": 0,
  568. "_sizeMode": 1,
  569. "_fillType": 0,
  570. "_fillCenter": {
  571. "__type__": "cc.Vec2",
  572. "x": 0,
  573. "y": 0
  574. },
  575. "_fillStart": 0,
  576. "_fillRange": 0,
  577. "_isTrimmedMode": true,
  578. "_atlas": null,
  579. "_id": ""
  580. },
  581. {
  582. "__type__": "cc.PrefabInfo",
  583. "root": {
  584. "__id__": 1
  585. },
  586. "asset": {
  587. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  588. },
  589. "fileId": "43Hj+PZKtDWK89z0/VH6zt",
  590. "sync": false
  591. },
  592. {
  593. "__type__": "cc.Node",
  594. "_name": "view_left",
  595. "_objFlags": 0,
  596. "_parent": {
  597. "__id__": 7
  598. },
  599. "_children": [
  600. {
  601. "__id__": 15
  602. }
  603. ],
  604. "_active": true,
  605. "_components": [
  606. {
  607. "__id__": 24
  608. }
  609. ],
  610. "_prefab": {
  611. "__id__": 25
  612. },
  613. "_opacity": 255,
  614. "_color": {
  615. "__type__": "cc.Color",
  616. "r": 255,
  617. "g": 255,
  618. "b": 255,
  619. "a": 255
  620. },
  621. "_contentSize": {
  622. "__type__": "cc.Size",
  623. "width": 269,
  624. "height": 573
  625. },
  626. "_anchorPoint": {
  627. "__type__": "cc.Vec2",
  628. "x": 0.5,
  629. "y": 1
  630. },
  631. "_trs": {
  632. "__type__": "TypedArray",
  633. "ctor": "Float64Array",
  634. "array": [
  635. -465,
  636. 228,
  637. 0,
  638. 0,
  639. 0,
  640. 0,
  641. 1,
  642. 1,
  643. 1,
  644. 1
  645. ]
  646. },
  647. "_eulerAngles": {
  648. "__type__": "cc.Vec3",
  649. "x": 0,
  650. "y": 0,
  651. "z": 0
  652. },
  653. "_skewX": 0,
  654. "_skewY": 0,
  655. "_is3DNode": false,
  656. "_groupIndex": 0,
  657. "groupIndex": 0,
  658. "_id": ""
  659. },
  660. {
  661. "__type__": "cc.Node",
  662. "_name": "view",
  663. "_objFlags": 0,
  664. "_parent": {
  665. "__id__": 14
  666. },
  667. "_children": [
  668. {
  669. "__id__": 16
  670. },
  671. {
  672. "__id__": 19
  673. }
  674. ],
  675. "_active": true,
  676. "_components": [
  677. {
  678. "__id__": 22
  679. }
  680. ],
  681. "_prefab": {
  682. "__id__": 23
  683. },
  684. "_opacity": 255,
  685. "_color": {
  686. "__type__": "cc.Color",
  687. "r": 255,
  688. "g": 255,
  689. "b": 255,
  690. "a": 255
  691. },
  692. "_contentSize": {
  693. "__type__": "cc.Size",
  694. "width": 269,
  695. "height": 573
  696. },
  697. "_anchorPoint": {
  698. "__type__": "cc.Vec2",
  699. "x": 0.5,
  700. "y": 1
  701. },
  702. "_trs": {
  703. "__type__": "TypedArray",
  704. "ctor": "Float64Array",
  705. "array": [
  706. 0,
  707. 0,
  708. 0,
  709. 0,
  710. 0,
  711. 0,
  712. 1,
  713. 1,
  714. 1,
  715. 1
  716. ]
  717. },
  718. "_eulerAngles": {
  719. "__type__": "cc.Vec3",
  720. "x": 0,
  721. "y": 0,
  722. "z": 0
  723. },
  724. "_skewX": 0,
  725. "_skewY": 0,
  726. "_is3DNode": false,
  727. "_groupIndex": 0,
  728. "groupIndex": 0,
  729. "_id": ""
  730. },
  731. {
  732. "__type__": "cc.Node",
  733. "_name": "sprite_choiceMask",
  734. "_objFlags": 0,
  735. "_parent": {
  736. "__id__": 15
  737. },
  738. "_children": [],
  739. "_active": true,
  740. "_components": [
  741. {
  742. "__id__": 17
  743. }
  744. ],
  745. "_prefab": {
  746. "__id__": 18
  747. },
  748. "_opacity": 255,
  749. "_color": {
  750. "__type__": "cc.Color",
  751. "r": 255,
  752. "g": 255,
  753. "b": 255,
  754. "a": 255
  755. },
  756. "_contentSize": {
  757. "__type__": "cc.Size",
  758. "width": 263,
  759. "height": 105
  760. },
  761. "_anchorPoint": {
  762. "__type__": "cc.Vec2",
  763. "x": 0.5,
  764. "y": 0.5
  765. },
  766. "_trs": {
  767. "__type__": "TypedArray",
  768. "ctor": "Float64Array",
  769. "array": [
  770. 0,
  771. -52.5,
  772. 0,
  773. 0,
  774. 0,
  775. 0,
  776. 1,
  777. 1,
  778. 1,
  779. 1
  780. ]
  781. },
  782. "_eulerAngles": {
  783. "__type__": "cc.Vec3",
  784. "x": 0,
  785. "y": 0,
  786. "z": 0
  787. },
  788. "_skewX": 0,
  789. "_skewY": 0,
  790. "_is3DNode": false,
  791. "_groupIndex": 0,
  792. "groupIndex": 0,
  793. "_id": ""
  794. },
  795. {
  796. "__type__": "cc.Sprite",
  797. "_name": "",
  798. "_objFlags": 0,
  799. "node": {
  800. "__id__": 16
  801. },
  802. "_enabled": true,
  803. "_materials": [
  804. {
  805. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  806. }
  807. ],
  808. "_srcBlendFactor": 770,
  809. "_dstBlendFactor": 771,
  810. "_spriteFrame": {
  811. "__uuid__": "bcc3bbc9-f3fe-4be6-8a52-9eb68ceba65a"
  812. },
  813. "_type": 0,
  814. "_sizeMode": 1,
  815. "_fillType": 0,
  816. "_fillCenter": {
  817. "__type__": "cc.Vec2",
  818. "x": 0,
  819. "y": 0
  820. },
  821. "_fillStart": 0,
  822. "_fillRange": 0,
  823. "_isTrimmedMode": true,
  824. "_atlas": null,
  825. "_id": ""
  826. },
  827. {
  828. "__type__": "cc.PrefabInfo",
  829. "root": {
  830. "__id__": 1
  831. },
  832. "asset": {
  833. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  834. },
  835. "fileId": "87jaXNOjBKgoRpl7sJnCLD",
  836. "sync": false
  837. },
  838. {
  839. "__type__": "cc.Node",
  840. "_name": "content",
  841. "_objFlags": 0,
  842. "_parent": {
  843. "__id__": 15
  844. },
  845. "_children": [],
  846. "_active": true,
  847. "_components": [
  848. {
  849. "__id__": 20
  850. }
  851. ],
  852. "_prefab": {
  853. "__id__": 21
  854. },
  855. "_opacity": 255,
  856. "_color": {
  857. "__type__": "cc.Color",
  858. "r": 255,
  859. "g": 255,
  860. "b": 255,
  861. "a": 255
  862. },
  863. "_contentSize": {
  864. "__type__": "cc.Size",
  865. "width": 269,
  866. "height": 105
  867. },
  868. "_anchorPoint": {
  869. "__type__": "cc.Vec2",
  870. "x": 0.5,
  871. "y": 1
  872. },
  873. "_trs": {
  874. "__type__": "TypedArray",
  875. "ctor": "Float64Array",
  876. "array": [
  877. 0,
  878. 0,
  879. 0,
  880. 0,
  881. 0,
  882. 0,
  883. 1,
  884. 1,
  885. 1,
  886. 1
  887. ]
  888. },
  889. "_eulerAngles": {
  890. "__type__": "cc.Vec3",
  891. "x": 0,
  892. "y": 0,
  893. "z": 0
  894. },
  895. "_skewX": 0,
  896. "_skewY": 0,
  897. "_is3DNode": false,
  898. "_groupIndex": 0,
  899. "groupIndex": 0,
  900. "_id": ""
  901. },
  902. {
  903. "__type__": "cc.Layout",
  904. "_name": "",
  905. "_objFlags": 0,
  906. "node": {
  907. "__id__": 19
  908. },
  909. "_enabled": true,
  910. "_layoutSize": {
  911. "__type__": "cc.Size",
  912. "width": 269,
  913. "height": 105
  914. },
  915. "_resize": 1,
  916. "_N$layoutType": 2,
  917. "_N$cellSize": {
  918. "__type__": "cc.Size",
  919. "width": 40,
  920. "height": 40
  921. },
  922. "_N$startAxis": 0,
  923. "_N$paddingLeft": 0,
  924. "_N$paddingRight": 0,
  925. "_N$paddingTop": 0,
  926. "_N$paddingBottom": 0,
  927. "_N$spacingX": 0,
  928. "_N$spacingY": 0,
  929. "_N$verticalDirection": 1,
  930. "_N$horizontalDirection": 0,
  931. "_N$affectedByScale": false,
  932. "_id": ""
  933. },
  934. {
  935. "__type__": "cc.PrefabInfo",
  936. "root": {
  937. "__id__": 1
  938. },
  939. "asset": {
  940. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  941. },
  942. "fileId": "dcKiuUzQtJVodjktmqAEYg",
  943. "sync": false
  944. },
  945. {
  946. "__type__": "cc.Mask",
  947. "_name": "",
  948. "_objFlags": 0,
  949. "node": {
  950. "__id__": 15
  951. },
  952. "_enabled": true,
  953. "_materials": [
  954. {
  955. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  956. }
  957. ],
  958. "_spriteFrame": null,
  959. "_type": 0,
  960. "_segments": 64,
  961. "_N$alphaThreshold": 0,
  962. "_N$inverted": false,
  963. "_id": ""
  964. },
  965. {
  966. "__type__": "cc.PrefabInfo",
  967. "root": {
  968. "__id__": 1
  969. },
  970. "asset": {
  971. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  972. },
  973. "fileId": "e6+YIz45xEi7Zj5BSsdkdz",
  974. "sync": false
  975. },
  976. {
  977. "__type__": "cc.ScrollView",
  978. "_name": "",
  979. "_objFlags": 0,
  980. "node": {
  981. "__id__": 14
  982. },
  983. "_enabled": true,
  984. "horizontal": false,
  985. "vertical": true,
  986. "inertia": true,
  987. "brake": 0.75,
  988. "elastic": true,
  989. "bounceDuration": 0.23,
  990. "scrollEvents": [],
  991. "cancelInnerEvents": true,
  992. "_N$content": {
  993. "__id__": 19
  994. },
  995. "content": {
  996. "__id__": 19
  997. },
  998. "_N$horizontalScrollBar": null,
  999. "_N$verticalScrollBar": null,
  1000. "_id": ""
  1001. },
  1002. {
  1003. "__type__": "cc.PrefabInfo",
  1004. "root": {
  1005. "__id__": 1
  1006. },
  1007. "asset": {
  1008. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  1009. },
  1010. "fileId": "44DRtQqiFEIoIIn34Q3E9Y",
  1011. "sync": false
  1012. },
  1013. {
  1014. "__type__": "cc.Node",
  1015. "_name": "view_right",
  1016. "_objFlags": 0,
  1017. "_parent": {
  1018. "__id__": 7
  1019. },
  1020. "_children": [
  1021. {
  1022. "__id__": 27
  1023. }
  1024. ],
  1025. "_active": true,
  1026. "_components": [
  1027. {
  1028. "__id__": 50
  1029. }
  1030. ],
  1031. "_prefab": {
  1032. "__id__": 51
  1033. },
  1034. "_opacity": 255,
  1035. "_color": {
  1036. "__type__": "cc.Color",
  1037. "r": 255,
  1038. "g": 255,
  1039. "b": 255,
  1040. "a": 255
  1041. },
  1042. "_contentSize": {
  1043. "__type__": "cc.Size",
  1044. "width": 937,
  1045. "height": 573
  1046. },
  1047. "_anchorPoint": {
  1048. "__type__": "cc.Vec2",
  1049. "x": 0.5,
  1050. "y": 1
  1051. },
  1052. "_trs": {
  1053. "__type__": "TypedArray",
  1054. "ctor": "Float64Array",
  1055. "array": [
  1056. 140,
  1057. 230,
  1058. 0,
  1059. 0,
  1060. 0,
  1061. 0,
  1062. 1,
  1063. 1,
  1064. 1,
  1065. 1
  1066. ]
  1067. },
  1068. "_eulerAngles": {
  1069. "__type__": "cc.Vec3",
  1070. "x": 0,
  1071. "y": 0,
  1072. "z": 0
  1073. },
  1074. "_skewX": 0,
  1075. "_skewY": 0,
  1076. "_is3DNode": false,
  1077. "_groupIndex": 0,
  1078. "groupIndex": 0,
  1079. "_id": ""
  1080. },
  1081. {
  1082. "__type__": "cc.Node",
  1083. "_name": "view",
  1084. "_objFlags": 0,
  1085. "_parent": {
  1086. "__id__": 26
  1087. },
  1088. "_children": [
  1089. {
  1090. "__id__": 28
  1091. },
  1092. {
  1093. "__id__": 41
  1094. }
  1095. ],
  1096. "_active": true,
  1097. "_components": [
  1098. {
  1099. "__id__": 48
  1100. }
  1101. ],
  1102. "_prefab": {
  1103. "__id__": 49
  1104. },
  1105. "_opacity": 255,
  1106. "_color": {
  1107. "__type__": "cc.Color",
  1108. "r": 255,
  1109. "g": 255,
  1110. "b": 255,
  1111. "a": 255
  1112. },
  1113. "_contentSize": {
  1114. "__type__": "cc.Size",
  1115. "width": 937,
  1116. "height": 573
  1117. },
  1118. "_anchorPoint": {
  1119. "__type__": "cc.Vec2",
  1120. "x": 0.5,
  1121. "y": 1
  1122. },
  1123. "_trs": {
  1124. "__type__": "TypedArray",
  1125. "ctor": "Float64Array",
  1126. "array": [
  1127. 0,
  1128. 0,
  1129. 0,
  1130. 0,
  1131. 0,
  1132. 0,
  1133. 1,
  1134. 1,
  1135. 1,
  1136. 1
  1137. ]
  1138. },
  1139. "_eulerAngles": {
  1140. "__type__": "cc.Vec3",
  1141. "x": 0,
  1142. "y": 0,
  1143. "z": 0
  1144. },
  1145. "_skewX": 0,
  1146. "_skewY": 0,
  1147. "_is3DNode": false,
  1148. "_groupIndex": 0,
  1149. "groupIndex": 0,
  1150. "_id": ""
  1151. },
  1152. {
  1153. "__type__": "cc.Node",
  1154. "_name": "content_string",
  1155. "_objFlags": 0,
  1156. "_parent": {
  1157. "__id__": 27
  1158. },
  1159. "_children": [
  1160. {
  1161. "__id__": 29
  1162. },
  1163. {
  1164. "__id__": 31
  1165. },
  1166. {
  1167. "__id__": 34
  1168. },
  1169. {
  1170. "__id__": 36
  1171. }
  1172. ],
  1173. "_active": false,
  1174. "_components": [
  1175. {
  1176. "__id__": 39
  1177. }
  1178. ],
  1179. "_prefab": {
  1180. "__id__": 40
  1181. },
  1182. "_opacity": 255,
  1183. "_color": {
  1184. "__type__": "cc.Color",
  1185. "r": 255,
  1186. "g": 255,
  1187. "b": 255,
  1188. "a": 255
  1189. },
  1190. "_contentSize": {
  1191. "__type__": "cc.Size",
  1192. "width": 937,
  1193. "height": 155.27999999999997
  1194. },
  1195. "_anchorPoint": {
  1196. "__type__": "cc.Vec2",
  1197. "x": 0.5,
  1198. "y": 1
  1199. },
  1200. "_trs": {
  1201. "__type__": "TypedArray",
  1202. "ctor": "Float64Array",
  1203. "array": [
  1204. 0,
  1205. 0,
  1206. 0,
  1207. 0,
  1208. 0,
  1209. 0,
  1210. 1,
  1211. 1,
  1212. 1,
  1213. 1
  1214. ]
  1215. },
  1216. "_eulerAngles": {
  1217. "__type__": "cc.Vec3",
  1218. "x": 0,
  1219. "y": 0,
  1220. "z": 0
  1221. },
  1222. "_skewX": 0,
  1223. "_skewY": 0,
  1224. "_is3DNode": false,
  1225. "_groupIndex": 0,
  1226. "groupIndex": 0,
  1227. "_id": ""
  1228. },
  1229. {
  1230. "__type__": "cc.Node",
  1231. "_name": "block",
  1232. "_objFlags": 0,
  1233. "_parent": {
  1234. "__id__": 28
  1235. },
  1236. "_children": [],
  1237. "_active": true,
  1238. "_components": [],
  1239. "_prefab": {
  1240. "__id__": 30
  1241. },
  1242. "_opacity": 255,
  1243. "_color": {
  1244. "__type__": "cc.Color",
  1245. "r": 255,
  1246. "g": 255,
  1247. "b": 255,
  1248. "a": 255
  1249. },
  1250. "_contentSize": {
  1251. "__type__": "cc.Size",
  1252. "width": 0,
  1253. "height": 20
  1254. },
  1255. "_anchorPoint": {
  1256. "__type__": "cc.Vec2",
  1257. "x": 0.5,
  1258. "y": 0.5
  1259. },
  1260. "_trs": {
  1261. "__type__": "TypedArray",
  1262. "ctor": "Float64Array",
  1263. "array": [
  1264. 0,
  1265. -10,
  1266. 0,
  1267. 0,
  1268. 0,
  1269. 0,
  1270. 1,
  1271. 1,
  1272. 1,
  1273. 1
  1274. ]
  1275. },
  1276. "_eulerAngles": {
  1277. "__type__": "cc.Vec3",
  1278. "x": 0,
  1279. "y": 0,
  1280. "z": 0
  1281. },
  1282. "_skewX": 0,
  1283. "_skewY": 0,
  1284. "_is3DNode": false,
  1285. "_groupIndex": 0,
  1286. "groupIndex": 0,
  1287. "_id": ""
  1288. },
  1289. {
  1290. "__type__": "cc.PrefabInfo",
  1291. "root": {
  1292. "__id__": 1
  1293. },
  1294. "asset": {
  1295. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  1296. },
  1297. "fileId": "5cwzBbnUZPWqixXrtHil3F",
  1298. "sync": false
  1299. },
  1300. {
  1301. "__type__": "cc.Node",
  1302. "_name": "label_title",
  1303. "_objFlags": 0,
  1304. "_parent": {
  1305. "__id__": 28
  1306. },
  1307. "_children": [],
  1308. "_active": true,
  1309. "_components": [
  1310. {
  1311. "__id__": 32
  1312. }
  1313. ],
  1314. "_prefab": {
  1315. "__id__": 33
  1316. },
  1317. "_opacity": 255,
  1318. "_color": {
  1319. "__type__": "cc.Color",
  1320. "r": 255,
  1321. "g": 255,
  1322. "b": 255,
  1323. "a": 255
  1324. },
  1325. "_contentSize": {
  1326. "__type__": "cc.Size",
  1327. "width": 0,
  1328. "height": 60.48
  1329. },
  1330. "_anchorPoint": {
  1331. "__type__": "cc.Vec2",
  1332. "x": 0.5,
  1333. "y": 0.5
  1334. },
  1335. "_trs": {
  1336. "__type__": "TypedArray",
  1337. "ctor": "Float64Array",
  1338. "array": [
  1339. 0,
  1340. -50.239999999999995,
  1341. 0,
  1342. 0,
  1343. 0,
  1344. 0,
  1345. 1,
  1346. 1,
  1347. 1,
  1348. 1
  1349. ]
  1350. },
  1351. "_eulerAngles": {
  1352. "__type__": "cc.Vec3",
  1353. "x": 0,
  1354. "y": 0,
  1355. "z": 0
  1356. },
  1357. "_skewX": 0,
  1358. "_skewY": 0,
  1359. "_is3DNode": false,
  1360. "_groupIndex": 0,
  1361. "groupIndex": 0,
  1362. "_id": ""
  1363. },
  1364. {
  1365. "__type__": "cc.Label",
  1366. "_name": "",
  1367. "_objFlags": 0,
  1368. "node": {
  1369. "__id__": 31
  1370. },
  1371. "_enabled": true,
  1372. "_materials": [
  1373. {
  1374. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1375. }
  1376. ],
  1377. "_srcBlendFactor": 770,
  1378. "_dstBlendFactor": 771,
  1379. "_useOriginalSize": false,
  1380. "_string": "",
  1381. "_N$string": "",
  1382. "_fontSize": 48,
  1383. "_lineHeight": 48,
  1384. "_enableWrapText": true,
  1385. "_N$file": null,
  1386. "_isSystemFontUsed": true,
  1387. "_spacingX": 0,
  1388. "_batchAsBitmap": false,
  1389. "_styleFlags": 1,
  1390. "_underlineHeight": 0,
  1391. "_N$horizontalAlign": 1,
  1392. "_N$verticalAlign": 2,
  1393. "_N$fontFamily": "Arial",
  1394. "_N$overflow": 0,
  1395. "_N$cacheMode": 0,
  1396. "_id": ""
  1397. },
  1398. {
  1399. "__type__": "cc.PrefabInfo",
  1400. "root": {
  1401. "__id__": 1
  1402. },
  1403. "asset": {
  1404. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  1405. },
  1406. "fileId": "a4Amvtq2tPjolFZx0LKfe7",
  1407. "sync": false
  1408. },
  1409. {
  1410. "__type__": "cc.Node",
  1411. "_name": "block",
  1412. "_objFlags": 0,
  1413. "_parent": {
  1414. "__id__": 28
  1415. },
  1416. "_children": [],
  1417. "_active": true,
  1418. "_components": [],
  1419. "_prefab": {
  1420. "__id__": 35
  1421. },
  1422. "_opacity": 255,
  1423. "_color": {
  1424. "__type__": "cc.Color",
  1425. "r": 255,
  1426. "g": 255,
  1427. "b": 255,
  1428. "a": 255
  1429. },
  1430. "_contentSize": {
  1431. "__type__": "cc.Size",
  1432. "width": 0,
  1433. "height": 37
  1434. },
  1435. "_anchorPoint": {
  1436. "__type__": "cc.Vec2",
  1437. "x": 0.5,
  1438. "y": 0.5
  1439. },
  1440. "_trs": {
  1441. "__type__": "TypedArray",
  1442. "ctor": "Float64Array",
  1443. "array": [
  1444. 0,
  1445. -98.97999999999999,
  1446. 0,
  1447. 0,
  1448. 0,
  1449. 0,
  1450. 1,
  1451. 1,
  1452. 1,
  1453. 1
  1454. ]
  1455. },
  1456. "_eulerAngles": {
  1457. "__type__": "cc.Vec3",
  1458. "x": 0,
  1459. "y": 0,
  1460. "z": 0
  1461. },
  1462. "_skewX": 0,
  1463. "_skewY": 0,
  1464. "_is3DNode": false,
  1465. "_groupIndex": 0,
  1466. "groupIndex": 0,
  1467. "_id": ""
  1468. },
  1469. {
  1470. "__type__": "cc.PrefabInfo",
  1471. "root": {
  1472. "__id__": 1
  1473. },
  1474. "asset": {
  1475. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  1476. },
  1477. "fileId": "45hwQzXv5AlKP7Q4tsACuK",
  1478. "sync": false
  1479. },
  1480. {
  1481. "__type__": "cc.Node",
  1482. "_name": "label_string",
  1483. "_objFlags": 0,
  1484. "_parent": {
  1485. "__id__": 28
  1486. },
  1487. "_children": [],
  1488. "_active": true,
  1489. "_components": [
  1490. {
  1491. "__id__": 37
  1492. }
  1493. ],
  1494. "_prefab": {
  1495. "__id__": 38
  1496. },
  1497. "_opacity": 255,
  1498. "_color": {
  1499. "__type__": "cc.Color",
  1500. "r": 255,
  1501. "g": 255,
  1502. "b": 255,
  1503. "a": 255
  1504. },
  1505. "_contentSize": {
  1506. "__type__": "cc.Size",
  1507. "width": 880,
  1508. "height": 37.8
  1509. },
  1510. "_anchorPoint": {
  1511. "__type__": "cc.Vec2",
  1512. "x": 0.5,
  1513. "y": 1
  1514. },
  1515. "_trs": {
  1516. "__type__": "TypedArray",
  1517. "ctor": "Float64Array",
  1518. "array": [
  1519. 0,
  1520. -117.47999999999999,
  1521. 0,
  1522. 0,
  1523. 0,
  1524. 0,
  1525. 1,
  1526. 1,
  1527. 1,
  1528. 1
  1529. ]
  1530. },
  1531. "_eulerAngles": {
  1532. "__type__": "cc.Vec3",
  1533. "x": 0,
  1534. "y": 0,
  1535. "z": 0
  1536. },
  1537. "_skewX": 0,
  1538. "_skewY": 0,
  1539. "_is3DNode": false,
  1540. "_groupIndex": 0,
  1541. "groupIndex": 0,
  1542. "_id": ""
  1543. },
  1544. {
  1545. "__type__": "cc.Label",
  1546. "_name": "",
  1547. "_objFlags": 0,
  1548. "node": {
  1549. "__id__": 36
  1550. },
  1551. "_enabled": true,
  1552. "_materials": [
  1553. {
  1554. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1555. }
  1556. ],
  1557. "_srcBlendFactor": 770,
  1558. "_dstBlendFactor": 771,
  1559. "_useOriginalSize": true,
  1560. "_string": "",
  1561. "_N$string": "",
  1562. "_fontSize": 30,
  1563. "_lineHeight": 30,
  1564. "_enableWrapText": true,
  1565. "_N$file": null,
  1566. "_isSystemFontUsed": true,
  1567. "_spacingX": 0,
  1568. "_batchAsBitmap": false,
  1569. "_styleFlags": 0,
  1570. "_underlineHeight": 0,
  1571. "_N$horizontalAlign": 0,
  1572. "_N$verticalAlign": 0,
  1573. "_N$fontFamily": "Arial",
  1574. "_N$overflow": 3,
  1575. "_N$cacheMode": 0,
  1576. "_id": ""
  1577. },
  1578. {
  1579. "__type__": "cc.PrefabInfo",
  1580. "root": {
  1581. "__id__": 1
  1582. },
  1583. "asset": {
  1584. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  1585. },
  1586. "fileId": "b9/oBaZTxJ04II2rnitSw8",
  1587. "sync": false
  1588. },
  1589. {
  1590. "__type__": "cc.Layout",
  1591. "_name": "",
  1592. "_objFlags": 0,
  1593. "node": {
  1594. "__id__": 28
  1595. },
  1596. "_enabled": true,
  1597. "_layoutSize": {
  1598. "__type__": "cc.Size",
  1599. "width": 937,
  1600. "height": 155.27999999999997
  1601. },
  1602. "_resize": 1,
  1603. "_N$layoutType": 2,
  1604. "_N$cellSize": {
  1605. "__type__": "cc.Size",
  1606. "width": 40,
  1607. "height": 40
  1608. },
  1609. "_N$startAxis": 0,
  1610. "_N$paddingLeft": 0,
  1611. "_N$paddingRight": 0,
  1612. "_N$paddingTop": 0,
  1613. "_N$paddingBottom": 0,
  1614. "_N$spacingX": 0,
  1615. "_N$spacingY": 0,
  1616. "_N$verticalDirection": 1,
  1617. "_N$horizontalDirection": 0,
  1618. "_N$affectedByScale": false,
  1619. "_id": ""
  1620. },
  1621. {
  1622. "__type__": "cc.PrefabInfo",
  1623. "root": {
  1624. "__id__": 1
  1625. },
  1626. "asset": {
  1627. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  1628. },
  1629. "fileId": "85zJgXBxNAUb5CM8Wj1XkE",
  1630. "sync": false
  1631. },
  1632. {
  1633. "__type__": "cc.Node",
  1634. "_name": "content_img",
  1635. "_objFlags": 0,
  1636. "_parent": {
  1637. "__id__": 27
  1638. },
  1639. "_children": [
  1640. {
  1641. "__id__": 42
  1642. }
  1643. ],
  1644. "_active": true,
  1645. "_components": [
  1646. {
  1647. "__id__": 46
  1648. }
  1649. ],
  1650. "_prefab": {
  1651. "__id__": 47
  1652. },
  1653. "_opacity": 255,
  1654. "_color": {
  1655. "__type__": "cc.Color",
  1656. "r": 255,
  1657. "g": 255,
  1658. "b": 255,
  1659. "a": 255
  1660. },
  1661. "_contentSize": {
  1662. "__type__": "cc.Size",
  1663. "width": 937,
  1664. "height": 568
  1665. },
  1666. "_anchorPoint": {
  1667. "__type__": "cc.Vec2",
  1668. "x": 0.5,
  1669. "y": 1
  1670. },
  1671. "_trs": {
  1672. "__type__": "TypedArray",
  1673. "ctor": "Float64Array",
  1674. "array": [
  1675. 0,
  1676. 0,
  1677. 0,
  1678. 0,
  1679. 0,
  1680. 0,
  1681. 1,
  1682. 1,
  1683. 1,
  1684. 1
  1685. ]
  1686. },
  1687. "_eulerAngles": {
  1688. "__type__": "cc.Vec3",
  1689. "x": 0,
  1690. "y": 0,
  1691. "z": 0
  1692. },
  1693. "_skewX": 0,
  1694. "_skewY": 0,
  1695. "_is3DNode": false,
  1696. "_groupIndex": 0,
  1697. "groupIndex": 0,
  1698. "_id": ""
  1699. },
  1700. {
  1701. "__type__": "cc.Node",
  1702. "_name": "sprite_img",
  1703. "_objFlags": 0,
  1704. "_parent": {
  1705. "__id__": 41
  1706. },
  1707. "_children": [],
  1708. "_active": true,
  1709. "_components": [
  1710. {
  1711. "__id__": 43
  1712. },
  1713. {
  1714. "__id__": 44
  1715. }
  1716. ],
  1717. "_prefab": {
  1718. "__id__": 45
  1719. },
  1720. "_opacity": 255,
  1721. "_color": {
  1722. "__type__": "cc.Color",
  1723. "r": 255,
  1724. "g": 255,
  1725. "b": 255,
  1726. "a": 255
  1727. },
  1728. "_contentSize": {
  1729. "__type__": "cc.Size",
  1730. "width": 928,
  1731. "height": 568
  1732. },
  1733. "_anchorPoint": {
  1734. "__type__": "cc.Vec2",
  1735. "x": 0.5,
  1736. "y": 0.5
  1737. },
  1738. "_trs": {
  1739. "__type__": "TypedArray",
  1740. "ctor": "Float64Array",
  1741. "array": [
  1742. 0,
  1743. -284,
  1744. 0,
  1745. 0,
  1746. 0,
  1747. 0,
  1748. 1,
  1749. 1,
  1750. 1,
  1751. 1
  1752. ]
  1753. },
  1754. "_eulerAngles": {
  1755. "__type__": "cc.Vec3",
  1756. "x": 0,
  1757. "y": 0,
  1758. "z": 0
  1759. },
  1760. "_skewX": 0,
  1761. "_skewY": 0,
  1762. "_is3DNode": false,
  1763. "_groupIndex": 0,
  1764. "groupIndex": 0,
  1765. "_id": ""
  1766. },
  1767. {
  1768. "__type__": "cc.Sprite",
  1769. "_name": "",
  1770. "_objFlags": 0,
  1771. "node": {
  1772. "__id__": 42
  1773. },
  1774. "_enabled": true,
  1775. "_materials": [
  1776. {
  1777. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1778. }
  1779. ],
  1780. "_srcBlendFactor": 770,
  1781. "_dstBlendFactor": 771,
  1782. "_spriteFrame": null,
  1783. "_type": 0,
  1784. "_sizeMode": 1,
  1785. "_fillType": 0,
  1786. "_fillCenter": {
  1787. "__type__": "cc.Vec2",
  1788. "x": 0,
  1789. "y": 0
  1790. },
  1791. "_fillStart": 0,
  1792. "_fillRange": 0,
  1793. "_isTrimmedMode": true,
  1794. "_atlas": null,
  1795. "_id": ""
  1796. },
  1797. {
  1798. "__type__": "cc.Button",
  1799. "_name": "",
  1800. "_objFlags": 0,
  1801. "node": {
  1802. "__id__": 42
  1803. },
  1804. "_enabled": true,
  1805. "_normalMaterial": null,
  1806. "_grayMaterial": null,
  1807. "duration": 0.1,
  1808. "zoomScale": 1.2,
  1809. "clickEvents": [],
  1810. "_N$interactable": true,
  1811. "_N$enableAutoGrayEffect": false,
  1812. "_N$transition": 0,
  1813. "transition": 0,
  1814. "_N$normalColor": {
  1815. "__type__": "cc.Color",
  1816. "r": 255,
  1817. "g": 255,
  1818. "b": 255,
  1819. "a": 255
  1820. },
  1821. "_N$pressedColor": {
  1822. "__type__": "cc.Color",
  1823. "r": 211,
  1824. "g": 211,
  1825. "b": 211,
  1826. "a": 255
  1827. },
  1828. "pressedColor": {
  1829. "__type__": "cc.Color",
  1830. "r": 211,
  1831. "g": 211,
  1832. "b": 211,
  1833. "a": 255
  1834. },
  1835. "_N$hoverColor": {
  1836. "__type__": "cc.Color",
  1837. "r": 255,
  1838. "g": 255,
  1839. "b": 255,
  1840. "a": 255
  1841. },
  1842. "hoverColor": {
  1843. "__type__": "cc.Color",
  1844. "r": 255,
  1845. "g": 255,
  1846. "b": 255,
  1847. "a": 255
  1848. },
  1849. "_N$disabledColor": {
  1850. "__type__": "cc.Color",
  1851. "r": 124,
  1852. "g": 124,
  1853. "b": 124,
  1854. "a": 255
  1855. },
  1856. "_N$normalSprite": null,
  1857. "_N$pressedSprite": null,
  1858. "pressedSprite": null,
  1859. "_N$hoverSprite": null,
  1860. "hoverSprite": null,
  1861. "_N$disabledSprite": null,
  1862. "_N$target": null,
  1863. "_id": ""
  1864. },
  1865. {
  1866. "__type__": "cc.PrefabInfo",
  1867. "root": {
  1868. "__id__": 1
  1869. },
  1870. "asset": {
  1871. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  1872. },
  1873. "fileId": "9ffpWleLtNka6X9qFtIf1d",
  1874. "sync": false
  1875. },
  1876. {
  1877. "__type__": "cc.Layout",
  1878. "_name": "",
  1879. "_objFlags": 0,
  1880. "node": {
  1881. "__id__": 41
  1882. },
  1883. "_enabled": true,
  1884. "_layoutSize": {
  1885. "__type__": "cc.Size",
  1886. "width": 937,
  1887. "height": 568
  1888. },
  1889. "_resize": 1,
  1890. "_N$layoutType": 2,
  1891. "_N$cellSize": {
  1892. "__type__": "cc.Size",
  1893. "width": 40,
  1894. "height": 40
  1895. },
  1896. "_N$startAxis": 0,
  1897. "_N$paddingLeft": 0,
  1898. "_N$paddingRight": 0,
  1899. "_N$paddingTop": 0,
  1900. "_N$paddingBottom": 0,
  1901. "_N$spacingX": 0,
  1902. "_N$spacingY": 0,
  1903. "_N$verticalDirection": 1,
  1904. "_N$horizontalDirection": 0,
  1905. "_N$affectedByScale": false,
  1906. "_id": ""
  1907. },
  1908. {
  1909. "__type__": "cc.PrefabInfo",
  1910. "root": {
  1911. "__id__": 1
  1912. },
  1913. "asset": {
  1914. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  1915. },
  1916. "fileId": "67D9neEwZJQZmWtSrBp/yb",
  1917. "sync": false
  1918. },
  1919. {
  1920. "__type__": "cc.Mask",
  1921. "_name": "",
  1922. "_objFlags": 0,
  1923. "node": {
  1924. "__id__": 27
  1925. },
  1926. "_enabled": true,
  1927. "_materials": [
  1928. {
  1929. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1930. }
  1931. ],
  1932. "_spriteFrame": null,
  1933. "_type": 0,
  1934. "_segments": 64,
  1935. "_N$alphaThreshold": 0,
  1936. "_N$inverted": false,
  1937. "_id": ""
  1938. },
  1939. {
  1940. "__type__": "cc.PrefabInfo",
  1941. "root": {
  1942. "__id__": 1
  1943. },
  1944. "asset": {
  1945. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  1946. },
  1947. "fileId": "09OIIroGBGB782mfFPbuzy",
  1948. "sync": false
  1949. },
  1950. {
  1951. "__type__": "cc.ScrollView",
  1952. "_name": "",
  1953. "_objFlags": 0,
  1954. "node": {
  1955. "__id__": 26
  1956. },
  1957. "_enabled": true,
  1958. "horizontal": false,
  1959. "vertical": true,
  1960. "inertia": true,
  1961. "brake": 0.75,
  1962. "elastic": true,
  1963. "bounceDuration": 0.23,
  1964. "scrollEvents": [],
  1965. "cancelInnerEvents": true,
  1966. "_N$content": {
  1967. "__id__": 28
  1968. },
  1969. "content": {
  1970. "__id__": 28
  1971. },
  1972. "_N$horizontalScrollBar": null,
  1973. "_N$verticalScrollBar": null,
  1974. "_id": ""
  1975. },
  1976. {
  1977. "__type__": "cc.PrefabInfo",
  1978. "root": {
  1979. "__id__": 1
  1980. },
  1981. "asset": {
  1982. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  1983. },
  1984. "fileId": "ae475P56FOpKXVkz9Nbhk4",
  1985. "sync": false
  1986. },
  1987. {
  1988. "__type__": "cc.Node",
  1989. "_name": "img_line",
  1990. "_objFlags": 0,
  1991. "_parent": {
  1992. "__id__": 7
  1993. },
  1994. "_children": [],
  1995. "_active": true,
  1996. "_components": [
  1997. {
  1998. "__id__": 53
  1999. }
  2000. ],
  2001. "_prefab": {
  2002. "__id__": 54
  2003. },
  2004. "_opacity": 255,
  2005. "_color": {
  2006. "__type__": "cc.Color",
  2007. "r": 255,
  2008. "g": 255,
  2009. "b": 255,
  2010. "a": 255
  2011. },
  2012. "_contentSize": {
  2013. "__type__": "cc.Size",
  2014. "width": 1311,
  2015. "height": 310.5
  2016. },
  2017. "_anchorPoint": {
  2018. "__type__": "cc.Vec2",
  2019. "x": 0.5,
  2020. "y": 0.5
  2021. },
  2022. "_trs": {
  2023. "__type__": "TypedArray",
  2024. "ctor": "Float64Array",
  2025. "array": [
  2026. 0,
  2027. 185,
  2028. 0,
  2029. 0,
  2030. 0,
  2031. 0,
  2032. 1,
  2033. 1,
  2034. 1,
  2035. 1
  2036. ]
  2037. },
  2038. "_eulerAngles": {
  2039. "__type__": "cc.Vec3",
  2040. "x": 0,
  2041. "y": 0,
  2042. "z": 0
  2043. },
  2044. "_skewX": 0,
  2045. "_skewY": 0,
  2046. "_is3DNode": false,
  2047. "_groupIndex": 0,
  2048. "groupIndex": 0,
  2049. "_id": ""
  2050. },
  2051. {
  2052. "__type__": "cc.Sprite",
  2053. "_name": "",
  2054. "_objFlags": 0,
  2055. "node": {
  2056. "__id__": 52
  2057. },
  2058. "_enabled": true,
  2059. "_materials": [
  2060. {
  2061. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2062. }
  2063. ],
  2064. "_srcBlendFactor": 770,
  2065. "_dstBlendFactor": 771,
  2066. "_spriteFrame": {
  2067. "__uuid__": "ca1683c2-e9b5-43d9-81da-a18c37938c48"
  2068. },
  2069. "_type": 0,
  2070. "_sizeMode": 0,
  2071. "_fillType": 0,
  2072. "_fillCenter": {
  2073. "__type__": "cc.Vec2",
  2074. "x": 0,
  2075. "y": 0
  2076. },
  2077. "_fillStart": 0,
  2078. "_fillRange": 0,
  2079. "_isTrimmedMode": true,
  2080. "_atlas": null,
  2081. "_id": ""
  2082. },
  2083. {
  2084. "__type__": "cc.PrefabInfo",
  2085. "root": {
  2086. "__id__": 1
  2087. },
  2088. "asset": {
  2089. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  2090. },
  2091. "fileId": "8e17JRrjFOlpxrSnw3bsAr",
  2092. "sync": false
  2093. },
  2094. {
  2095. "__type__": "cc.Node",
  2096. "_name": "btn_close",
  2097. "_objFlags": 0,
  2098. "_parent": {
  2099. "__id__": 7
  2100. },
  2101. "_children": [],
  2102. "_active": true,
  2103. "_components": [
  2104. {
  2105. "__id__": 56
  2106. },
  2107. {
  2108. "__id__": 57
  2109. }
  2110. ],
  2111. "_prefab": {
  2112. "__id__": 58
  2113. },
  2114. "_opacity": 255,
  2115. "_color": {
  2116. "__type__": "cc.Color",
  2117. "r": 255,
  2118. "g": 255,
  2119. "b": 255,
  2120. "a": 255
  2121. },
  2122. "_contentSize": {
  2123. "__type__": "cc.Size",
  2124. "width": 80,
  2125. "height": 80
  2126. },
  2127. "_anchorPoint": {
  2128. "__type__": "cc.Vec2",
  2129. "x": 0.5,
  2130. "y": 0.5
  2131. },
  2132. "_trs": {
  2133. "__type__": "TypedArray",
  2134. "ctor": "Float64Array",
  2135. "array": [
  2136. 564.038,
  2137. 263.057,
  2138. 0,
  2139. 0,
  2140. 0,
  2141. 0,
  2142. 1,
  2143. 1,
  2144. 1,
  2145. 1
  2146. ]
  2147. },
  2148. "_eulerAngles": {
  2149. "__type__": "cc.Vec3",
  2150. "x": 0,
  2151. "y": 0,
  2152. "z": 0
  2153. },
  2154. "_skewX": 0,
  2155. "_skewY": 0,
  2156. "_is3DNode": false,
  2157. "_groupIndex": 0,
  2158. "groupIndex": 0,
  2159. "_id": ""
  2160. },
  2161. {
  2162. "__type__": "cc.Sprite",
  2163. "_name": "",
  2164. "_objFlags": 0,
  2165. "node": {
  2166. "__id__": 55
  2167. },
  2168. "_enabled": true,
  2169. "_materials": [
  2170. {
  2171. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2172. }
  2173. ],
  2174. "_srcBlendFactor": 770,
  2175. "_dstBlendFactor": 771,
  2176. "_spriteFrame": {
  2177. "__uuid__": "ae46eea1-3aea-47c2-b76c-ddaa14714e7d"
  2178. },
  2179. "_type": 0,
  2180. "_sizeMode": 0,
  2181. "_fillType": 0,
  2182. "_fillCenter": {
  2183. "__type__": "cc.Vec2",
  2184. "x": 0,
  2185. "y": 0
  2186. },
  2187. "_fillStart": 0,
  2188. "_fillRange": 0,
  2189. "_isTrimmedMode": true,
  2190. "_atlas": null,
  2191. "_id": ""
  2192. },
  2193. {
  2194. "__type__": "cc.Button",
  2195. "_name": "",
  2196. "_objFlags": 0,
  2197. "node": {
  2198. "__id__": 55
  2199. },
  2200. "_enabled": true,
  2201. "_normalMaterial": null,
  2202. "_grayMaterial": null,
  2203. "duration": 0.1,
  2204. "zoomScale": 1.2,
  2205. "clickEvents": [],
  2206. "_N$interactable": true,
  2207. "_N$enableAutoGrayEffect": false,
  2208. "_N$transition": 0,
  2209. "transition": 0,
  2210. "_N$normalColor": {
  2211. "__type__": "cc.Color",
  2212. "r": 255,
  2213. "g": 255,
  2214. "b": 255,
  2215. "a": 255
  2216. },
  2217. "_N$pressedColor": {
  2218. "__type__": "cc.Color",
  2219. "r": 211,
  2220. "g": 211,
  2221. "b": 211,
  2222. "a": 255
  2223. },
  2224. "pressedColor": {
  2225. "__type__": "cc.Color",
  2226. "r": 211,
  2227. "g": 211,
  2228. "b": 211,
  2229. "a": 255
  2230. },
  2231. "_N$hoverColor": {
  2232. "__type__": "cc.Color",
  2233. "r": 255,
  2234. "g": 255,
  2235. "b": 255,
  2236. "a": 255
  2237. },
  2238. "hoverColor": {
  2239. "__type__": "cc.Color",
  2240. "r": 255,
  2241. "g": 255,
  2242. "b": 255,
  2243. "a": 255
  2244. },
  2245. "_N$disabledColor": {
  2246. "__type__": "cc.Color",
  2247. "r": 124,
  2248. "g": 124,
  2249. "b": 124,
  2250. "a": 255
  2251. },
  2252. "_N$normalSprite": null,
  2253. "_N$pressedSprite": null,
  2254. "pressedSprite": null,
  2255. "_N$hoverSprite": null,
  2256. "hoverSprite": null,
  2257. "_N$disabledSprite": null,
  2258. "_N$target": null,
  2259. "_id": ""
  2260. },
  2261. {
  2262. "__type__": "cc.PrefabInfo",
  2263. "root": {
  2264. "__id__": 1
  2265. },
  2266. "asset": {
  2267. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  2268. },
  2269. "fileId": "257CrmkQhGPaaZt0agm2ys",
  2270. "sync": false
  2271. },
  2272. {
  2273. "__type__": "cc.PrefabInfo",
  2274. "root": {
  2275. "__id__": 1
  2276. },
  2277. "asset": {
  2278. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  2279. },
  2280. "fileId": "c0PfwwF2dMAYse62MuPiKR",
  2281. "sync": false
  2282. },
  2283. {
  2284. "__type__": "cc.Animation",
  2285. "_name": "",
  2286. "_objFlags": 0,
  2287. "node": {
  2288. "__id__": 1
  2289. },
  2290. "_enabled": true,
  2291. "_defaultClip": null,
  2292. "_clips": [
  2293. null
  2294. ],
  2295. "playOnLoad": false,
  2296. "_id": ""
  2297. },
  2298. {
  2299. "__type__": "cc.Widget",
  2300. "_name": "",
  2301. "_objFlags": 0,
  2302. "node": {
  2303. "__id__": 1
  2304. },
  2305. "_enabled": true,
  2306. "alignMode": 0,
  2307. "_target": null,
  2308. "_alignFlags": 45,
  2309. "_left": 0,
  2310. "_right": 0,
  2311. "_top": 0,
  2312. "_bottom": 0,
  2313. "_verticalCenter": 0,
  2314. "_horizontalCenter": 0,
  2315. "_isAbsLeft": true,
  2316. "_isAbsRight": true,
  2317. "_isAbsTop": true,
  2318. "_isAbsBottom": true,
  2319. "_isAbsHorizontalCenter": true,
  2320. "_isAbsVerticalCenter": true,
  2321. "_originalWidth": 0,
  2322. "_originalHeight": 0,
  2323. "_id": ""
  2324. },
  2325. {
  2326. "__type__": "49ff5VGTERCQryXU1KLukRj",
  2327. "_name": "",
  2328. "_objFlags": 0,
  2329. "node": {
  2330. "__id__": 1
  2331. },
  2332. "_enabled": true,
  2333. "line": {
  2334. "__uuid__": "c5564118-12cb-4daf-9cdb-2a21fdcb7d3d"
  2335. },
  2336. "_id": ""
  2337. },
  2338. {
  2339. "__type__": "cc.PrefabInfo",
  2340. "root": {
  2341. "__id__": 1
  2342. },
  2343. "asset": {
  2344. "__uuid__": "ced57045-c518-49ca-a110-cb909646d0d0"
  2345. },
  2346. "fileId": "95SVkeVNJEj71hZCPuil8j",
  2347. "sync": false
  2348. }
  2349. ]