page_levelchoose.prefab 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "page_levelchoose",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "page_levelchoose",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 12
  26. }
  27. ],
  28. "_active": true,
  29. "_components": [
  30. {
  31. "__id__": 80
  32. },
  33. {
  34. "__id__": 82
  35. },
  36. {
  37. "__id__": 84
  38. }
  39. ],
  40. "_prefab": {
  41. "__id__": 86
  42. },
  43. "_lpos": {
  44. "__type__": "cc.Vec3",
  45. "x": 0,
  46. "y": 0,
  47. "z": 0
  48. },
  49. "_lrot": {
  50. "__type__": "cc.Quat",
  51. "x": 0,
  52. "y": 0,
  53. "z": 0,
  54. "w": 1
  55. },
  56. "_lscale": {
  57. "__type__": "cc.Vec3",
  58. "x": 1,
  59. "y": 1,
  60. "z": 1
  61. },
  62. "_mobility": 0,
  63. "_layer": 33554432,
  64. "_euler": {
  65. "__type__": "cc.Vec3",
  66. "x": 0,
  67. "y": 0,
  68. "z": 0
  69. },
  70. "_id": ""
  71. },
  72. {
  73. "__type__": "cc.Node",
  74. "_name": "bg",
  75. "_objFlags": 0,
  76. "__editorExtras__": {},
  77. "_parent": {
  78. "__id__": 1
  79. },
  80. "_children": [],
  81. "_active": true,
  82. "_components": [
  83. {
  84. "__id__": 3
  85. },
  86. {
  87. "__id__": 5
  88. },
  89. {
  90. "__id__": 7
  91. },
  92. {
  93. "__id__": 9
  94. }
  95. ],
  96. "_prefab": {
  97. "__id__": 11
  98. },
  99. "_lpos": {
  100. "__type__": "cc.Vec3",
  101. "x": 0,
  102. "y": 0,
  103. "z": 0
  104. },
  105. "_lrot": {
  106. "__type__": "cc.Quat",
  107. "x": 0,
  108. "y": 0,
  109. "z": 0,
  110. "w": 1
  111. },
  112. "_lscale": {
  113. "__type__": "cc.Vec3",
  114. "x": 1,
  115. "y": 1,
  116. "z": 1
  117. },
  118. "_mobility": 0,
  119. "_layer": 33554432,
  120. "_euler": {
  121. "__type__": "cc.Vec3",
  122. "x": 0,
  123. "y": 0,
  124. "z": 0
  125. },
  126. "_id": ""
  127. },
  128. {
  129. "__type__": "cc.UITransform",
  130. "_name": "",
  131. "_objFlags": 0,
  132. "__editorExtras__": {},
  133. "node": {
  134. "__id__": 2
  135. },
  136. "_enabled": true,
  137. "__prefab": {
  138. "__id__": 4
  139. },
  140. "_contentSize": {
  141. "__type__": "cc.Size",
  142. "width": 720,
  143. "height": 1280
  144. },
  145. "_anchorPoint": {
  146. "__type__": "cc.Vec2",
  147. "x": 0.5,
  148. "y": 0.5
  149. },
  150. "_id": ""
  151. },
  152. {
  153. "__type__": "cc.CompPrefabInfo",
  154. "fileId": "86X41TSVVGVJoY62HB3B/q"
  155. },
  156. {
  157. "__type__": "cc.Sprite",
  158. "_name": "",
  159. "_objFlags": 0,
  160. "__editorExtras__": {},
  161. "node": {
  162. "__id__": 2
  163. },
  164. "_enabled": true,
  165. "__prefab": {
  166. "__id__": 6
  167. },
  168. "_customMaterial": null,
  169. "_srcBlendFactor": 2,
  170. "_dstBlendFactor": 4,
  171. "_color": {
  172. "__type__": "cc.Color",
  173. "r": 255,
  174. "g": 255,
  175. "b": 255,
  176. "a": 255
  177. },
  178. "_spriteFrame": {
  179. "__uuid__": "7badf407-74a3-451b-8184-e202f57316bc@f9941",
  180. "__expectedType__": "cc.SpriteFrame"
  181. },
  182. "_type": 0,
  183. "_fillType": 0,
  184. "_sizeMode": 0,
  185. "_fillCenter": {
  186. "__type__": "cc.Vec2",
  187. "x": 0,
  188. "y": 0
  189. },
  190. "_fillStart": 0,
  191. "_fillRange": 0,
  192. "_isTrimmedMode": true,
  193. "_useGrayscale": false,
  194. "_atlas": null,
  195. "_id": ""
  196. },
  197. {
  198. "__type__": "cc.CompPrefabInfo",
  199. "fileId": "0cfMe1yI9DOZQzGOAREptN"
  200. },
  201. {
  202. "__type__": "cc.Widget",
  203. "_name": "",
  204. "_objFlags": 0,
  205. "__editorExtras__": {},
  206. "node": {
  207. "__id__": 2
  208. },
  209. "_enabled": true,
  210. "__prefab": {
  211. "__id__": 8
  212. },
  213. "_alignFlags": 45,
  214. "_target": null,
  215. "_left": 0,
  216. "_right": 0,
  217. "_top": 0,
  218. "_bottom": 0,
  219. "_horizontalCenter": 0,
  220. "_verticalCenter": 0,
  221. "_isAbsLeft": true,
  222. "_isAbsRight": true,
  223. "_isAbsTop": true,
  224. "_isAbsBottom": true,
  225. "_isAbsHorizontalCenter": true,
  226. "_isAbsVerticalCenter": true,
  227. "_originalWidth": 100,
  228. "_originalHeight": 100,
  229. "_alignMode": 2,
  230. "_lockFlags": 0,
  231. "_id": ""
  232. },
  233. {
  234. "__type__": "cc.CompPrefabInfo",
  235. "fileId": "3atWJDoYVAt5SJUnZDbxnA"
  236. },
  237. {
  238. "__type__": "cc.BlockInputEvents",
  239. "_name": "",
  240. "_objFlags": 0,
  241. "__editorExtras__": {},
  242. "node": {
  243. "__id__": 2
  244. },
  245. "_enabled": true,
  246. "__prefab": {
  247. "__id__": 10
  248. },
  249. "_id": ""
  250. },
  251. {
  252. "__type__": "cc.CompPrefabInfo",
  253. "fileId": "21ymANoC9AqZd4YoGzlhuH"
  254. },
  255. {
  256. "__type__": "cc.PrefabInfo",
  257. "root": {
  258. "__id__": 1
  259. },
  260. "asset": {
  261. "__id__": 0
  262. },
  263. "fileId": "26iaEJD39NCKLj5xNzzvPO",
  264. "instance": null,
  265. "targetOverrides": null,
  266. "nestedPrefabInstanceRoots": null
  267. },
  268. {
  269. "__type__": "cc.Node",
  270. "_name": "bg2",
  271. "_objFlags": 0,
  272. "__editorExtras__": {},
  273. "_parent": {
  274. "__id__": 1
  275. },
  276. "_children": [
  277. {
  278. "__id__": 13
  279. },
  280. {
  281. "__id__": 19
  282. },
  283. {
  284. "__id__": 28
  285. },
  286. {
  287. "__id__": 34
  288. },
  289. {
  290. "__id__": 57
  291. },
  292. {
  293. "__id__": 66
  294. }
  295. ],
  296. "_active": true,
  297. "_components": [
  298. {
  299. "__id__": 75
  300. },
  301. {
  302. "__id__": 77
  303. }
  304. ],
  305. "_prefab": {
  306. "__id__": 79
  307. },
  308. "_lpos": {
  309. "__type__": "cc.Vec3",
  310. "x": 0,
  311. "y": 0,
  312. "z": 0
  313. },
  314. "_lrot": {
  315. "__type__": "cc.Quat",
  316. "x": 0,
  317. "y": 0,
  318. "z": 0,
  319. "w": 1
  320. },
  321. "_lscale": {
  322. "__type__": "cc.Vec3",
  323. "x": 1,
  324. "y": 1,
  325. "z": 1
  326. },
  327. "_mobility": 0,
  328. "_layer": 33554432,
  329. "_euler": {
  330. "__type__": "cc.Vec3",
  331. "x": 0,
  332. "y": 0,
  333. "z": 0
  334. },
  335. "_id": ""
  336. },
  337. {
  338. "__type__": "cc.Node",
  339. "_name": "title",
  340. "_objFlags": 0,
  341. "__editorExtras__": {},
  342. "_parent": {
  343. "__id__": 12
  344. },
  345. "_children": [],
  346. "_active": true,
  347. "_components": [
  348. {
  349. "__id__": 14
  350. },
  351. {
  352. "__id__": 16
  353. }
  354. ],
  355. "_prefab": {
  356. "__id__": 18
  357. },
  358. "_lpos": {
  359. "__type__": "cc.Vec3",
  360. "x": 6.668,
  361. "y": 533.724,
  362. "z": 0
  363. },
  364. "_lrot": {
  365. "__type__": "cc.Quat",
  366. "x": 0,
  367. "y": 0,
  368. "z": 0,
  369. "w": 1
  370. },
  371. "_lscale": {
  372. "__type__": "cc.Vec3",
  373. "x": 1,
  374. "y": 1,
  375. "z": 1
  376. },
  377. "_mobility": 0,
  378. "_layer": 33554432,
  379. "_euler": {
  380. "__type__": "cc.Vec3",
  381. "x": 0,
  382. "y": 0,
  383. "z": 0
  384. },
  385. "_id": ""
  386. },
  387. {
  388. "__type__": "cc.UITransform",
  389. "_name": "",
  390. "_objFlags": 0,
  391. "__editorExtras__": {},
  392. "node": {
  393. "__id__": 13
  394. },
  395. "_enabled": true,
  396. "__prefab": {
  397. "__id__": 15
  398. },
  399. "_contentSize": {
  400. "__type__": "cc.Size",
  401. "width": 336,
  402. "height": 106
  403. },
  404. "_anchorPoint": {
  405. "__type__": "cc.Vec2",
  406. "x": 0.5,
  407. "y": 0.5
  408. },
  409. "_id": ""
  410. },
  411. {
  412. "__type__": "cc.CompPrefabInfo",
  413. "fileId": "0aH5U/CYJLNq14cNmENUZm"
  414. },
  415. {
  416. "__type__": "cc.Sprite",
  417. "_name": "",
  418. "_objFlags": 0,
  419. "__editorExtras__": {},
  420. "node": {
  421. "__id__": 13
  422. },
  423. "_enabled": true,
  424. "__prefab": {
  425. "__id__": 17
  426. },
  427. "_customMaterial": null,
  428. "_srcBlendFactor": 2,
  429. "_dstBlendFactor": 4,
  430. "_color": {
  431. "__type__": "cc.Color",
  432. "r": 255,
  433. "g": 255,
  434. "b": 255,
  435. "a": 255
  436. },
  437. "_spriteFrame": {
  438. "__uuid__": "333f0743-a49b-419d-a94c-882cef772ad4@f9941",
  439. "__expectedType__": "cc.SpriteFrame"
  440. },
  441. "_type": 0,
  442. "_fillType": 0,
  443. "_sizeMode": 1,
  444. "_fillCenter": {
  445. "__type__": "cc.Vec2",
  446. "x": 0,
  447. "y": 0
  448. },
  449. "_fillStart": 0,
  450. "_fillRange": 0,
  451. "_isTrimmedMode": true,
  452. "_useGrayscale": false,
  453. "_atlas": null,
  454. "_id": ""
  455. },
  456. {
  457. "__type__": "cc.CompPrefabInfo",
  458. "fileId": "2eDaHnKPRGvqgwtHU6TjXj"
  459. },
  460. {
  461. "__type__": "cc.PrefabInfo",
  462. "root": {
  463. "__id__": 1
  464. },
  465. "asset": {
  466. "__id__": 0
  467. },
  468. "fileId": "f2A/fVinZFyJ1OTKiPfL97",
  469. "instance": null,
  470. "targetOverrides": null,
  471. "nestedPrefabInstanceRoots": null
  472. },
  473. {
  474. "__type__": "cc.Node",
  475. "_name": "btn_exit",
  476. "_objFlags": 0,
  477. "__editorExtras__": {},
  478. "_parent": {
  479. "__id__": 12
  480. },
  481. "_children": [],
  482. "_active": true,
  483. "_components": [
  484. {
  485. "__id__": 20
  486. },
  487. {
  488. "__id__": 22
  489. },
  490. {
  491. "__id__": 24
  492. }
  493. ],
  494. "_prefab": {
  495. "__id__": 27
  496. },
  497. "_lpos": {
  498. "__type__": "cc.Vec3",
  499. "x": -267.819,
  500. "y": 535.54,
  501. "z": 0
  502. },
  503. "_lrot": {
  504. "__type__": "cc.Quat",
  505. "x": 0,
  506. "y": 0,
  507. "z": 0,
  508. "w": 1
  509. },
  510. "_lscale": {
  511. "__type__": "cc.Vec3",
  512. "x": 1,
  513. "y": 1,
  514. "z": 1
  515. },
  516. "_mobility": 0,
  517. "_layer": 33554432,
  518. "_euler": {
  519. "__type__": "cc.Vec3",
  520. "x": 0,
  521. "y": 0,
  522. "z": 0
  523. },
  524. "_id": ""
  525. },
  526. {
  527. "__type__": "cc.UITransform",
  528. "_name": "",
  529. "_objFlags": 0,
  530. "__editorExtras__": {},
  531. "node": {
  532. "__id__": 19
  533. },
  534. "_enabled": true,
  535. "__prefab": {
  536. "__id__": 21
  537. },
  538. "_contentSize": {
  539. "__type__": "cc.Size",
  540. "width": 95,
  541. "height": 95
  542. },
  543. "_anchorPoint": {
  544. "__type__": "cc.Vec2",
  545. "x": 0.5,
  546. "y": 0.5
  547. },
  548. "_id": ""
  549. },
  550. {
  551. "__type__": "cc.CompPrefabInfo",
  552. "fileId": "e6Q3+baRlM6q0ZSvlAvUL4"
  553. },
  554. {
  555. "__type__": "cc.Sprite",
  556. "_name": "",
  557. "_objFlags": 0,
  558. "__editorExtras__": {},
  559. "node": {
  560. "__id__": 19
  561. },
  562. "_enabled": true,
  563. "__prefab": {
  564. "__id__": 23
  565. },
  566. "_customMaterial": null,
  567. "_srcBlendFactor": 2,
  568. "_dstBlendFactor": 4,
  569. "_color": {
  570. "__type__": "cc.Color",
  571. "r": 255,
  572. "g": 255,
  573. "b": 255,
  574. "a": 255
  575. },
  576. "_spriteFrame": {
  577. "__uuid__": "790cffc9-4483-4e82-b24b-0f9879631912@f9941",
  578. "__expectedType__": "cc.SpriteFrame"
  579. },
  580. "_type": 0,
  581. "_fillType": 0,
  582. "_sizeMode": 1,
  583. "_fillCenter": {
  584. "__type__": "cc.Vec2",
  585. "x": 0,
  586. "y": 0
  587. },
  588. "_fillStart": 0,
  589. "_fillRange": 0,
  590. "_isTrimmedMode": true,
  591. "_useGrayscale": false,
  592. "_atlas": null,
  593. "_id": ""
  594. },
  595. {
  596. "__type__": "cc.CompPrefabInfo",
  597. "fileId": "92KASsOc1EPqjYLj04FIGn"
  598. },
  599. {
  600. "__type__": "cc.Button",
  601. "_name": "",
  602. "_objFlags": 0,
  603. "__editorExtras__": {},
  604. "node": {
  605. "__id__": 19
  606. },
  607. "_enabled": true,
  608. "__prefab": {
  609. "__id__": 25
  610. },
  611. "clickEvents": [
  612. {
  613. "__id__": 26
  614. }
  615. ],
  616. "_interactable": true,
  617. "_transition": 3,
  618. "_normalColor": {
  619. "__type__": "cc.Color",
  620. "r": 255,
  621. "g": 255,
  622. "b": 255,
  623. "a": 255
  624. },
  625. "_hoverColor": {
  626. "__type__": "cc.Color",
  627. "r": 211,
  628. "g": 211,
  629. "b": 211,
  630. "a": 255
  631. },
  632. "_pressedColor": {
  633. "__type__": "cc.Color",
  634. "r": 255,
  635. "g": 255,
  636. "b": 255,
  637. "a": 255
  638. },
  639. "_disabledColor": {
  640. "__type__": "cc.Color",
  641. "r": 124,
  642. "g": 124,
  643. "b": 124,
  644. "a": 255
  645. },
  646. "_normalSprite": null,
  647. "_hoverSprite": null,
  648. "_pressedSprite": null,
  649. "_disabledSprite": null,
  650. "_duration": 0.1,
  651. "_zoomScale": 1.2,
  652. "_target": null,
  653. "_id": ""
  654. },
  655. {
  656. "__type__": "cc.CompPrefabInfo",
  657. "fileId": "42Rbb3LANLFpPLoJ5Duw4V"
  658. },
  659. {
  660. "__type__": "cc.ClickEvent",
  661. "target": {
  662. "__id__": 1
  663. },
  664. "component": "",
  665. "_componentId": "14178W95RxJJaKnlxVz/Dei",
  666. "handler": "OnClickExit",
  667. "customEventData": ""
  668. },
  669. {
  670. "__type__": "cc.PrefabInfo",
  671. "root": {
  672. "__id__": 1
  673. },
  674. "asset": {
  675. "__id__": 0
  676. },
  677. "fileId": "20w/fMJ6RPa5Lrcl5gpu9n",
  678. "instance": null,
  679. "targetOverrides": null,
  680. "nestedPrefabInstanceRoots": null
  681. },
  682. {
  683. "__type__": "cc.Node",
  684. "_name": "txt_pagenum",
  685. "_objFlags": 0,
  686. "__editorExtras__": {},
  687. "_parent": {
  688. "__id__": 12
  689. },
  690. "_children": [],
  691. "_active": true,
  692. "_components": [
  693. {
  694. "__id__": 29
  695. },
  696. {
  697. "__id__": 31
  698. }
  699. ],
  700. "_prefab": {
  701. "__id__": 33
  702. },
  703. "_lpos": {
  704. "__type__": "cc.Vec3",
  705. "x": 0,
  706. "y": -543.427,
  707. "z": 0
  708. },
  709. "_lrot": {
  710. "__type__": "cc.Quat",
  711. "x": 0,
  712. "y": 0,
  713. "z": 0,
  714. "w": 1
  715. },
  716. "_lscale": {
  717. "__type__": "cc.Vec3",
  718. "x": 1,
  719. "y": 1,
  720. "z": 1
  721. },
  722. "_mobility": 0,
  723. "_layer": 33554432,
  724. "_euler": {
  725. "__type__": "cc.Vec3",
  726. "x": 0,
  727. "y": 0,
  728. "z": 0
  729. },
  730. "_id": ""
  731. },
  732. {
  733. "__type__": "cc.UITransform",
  734. "_name": "",
  735. "_objFlags": 0,
  736. "__editorExtras__": {},
  737. "node": {
  738. "__id__": 28
  739. },
  740. "_enabled": true,
  741. "__prefab": {
  742. "__id__": 30
  743. },
  744. "_contentSize": {
  745. "__type__": "cc.Size",
  746. "width": 52.8251953125,
  747. "height": 50.4
  748. },
  749. "_anchorPoint": {
  750. "__type__": "cc.Vec2",
  751. "x": 0.5,
  752. "y": 0.5
  753. },
  754. "_id": ""
  755. },
  756. {
  757. "__type__": "cc.CompPrefabInfo",
  758. "fileId": "83raIyDFZIGJ1gWO2lQJA1"
  759. },
  760. {
  761. "__type__": "cc.Label",
  762. "_name": "",
  763. "_objFlags": 0,
  764. "__editorExtras__": {},
  765. "node": {
  766. "__id__": 28
  767. },
  768. "_enabled": true,
  769. "__prefab": {
  770. "__id__": 32
  771. },
  772. "_customMaterial": null,
  773. "_srcBlendFactor": 2,
  774. "_dstBlendFactor": 4,
  775. "_color": {
  776. "__type__": "cc.Color",
  777. "r": 102,
  778. "g": 65,
  779. "b": 29,
  780. "a": 255
  781. },
  782. "_string": "1/3",
  783. "_horizontalAlign": 1,
  784. "_verticalAlign": 1,
  785. "_actualFontSize": 38,
  786. "_fontSize": 38,
  787. "_fontFamily": "Arial",
  788. "_lineHeight": 40,
  789. "_overflow": 0,
  790. "_enableWrapText": true,
  791. "_font": null,
  792. "_isSystemFontUsed": true,
  793. "_spacingX": 0,
  794. "_isItalic": false,
  795. "_isBold": true,
  796. "_isUnderline": false,
  797. "_underlineHeight": 2,
  798. "_cacheMode": 0,
  799. "_enableOutline": false,
  800. "_outlineColor": {
  801. "__type__": "cc.Color",
  802. "r": 0,
  803. "g": 0,
  804. "b": 0,
  805. "a": 255
  806. },
  807. "_outlineWidth": 2,
  808. "_enableShadow": false,
  809. "_shadowColor": {
  810. "__type__": "cc.Color",
  811. "r": 0,
  812. "g": 0,
  813. "b": 0,
  814. "a": 255
  815. },
  816. "_shadowOffset": {
  817. "__type__": "cc.Vec2",
  818. "x": 2,
  819. "y": 2
  820. },
  821. "_shadowBlur": 2,
  822. "_id": ""
  823. },
  824. {
  825. "__type__": "cc.CompPrefabInfo",
  826. "fileId": "94lmOKz0lCBIV/2m1OJscF"
  827. },
  828. {
  829. "__type__": "cc.PrefabInfo",
  830. "root": {
  831. "__id__": 1
  832. },
  833. "asset": {
  834. "__id__": 0
  835. },
  836. "fileId": "b7vrs/PxFHMLboqAWXH0PS",
  837. "instance": null,
  838. "targetOverrides": null,
  839. "nestedPrefabInstanceRoots": null
  840. },
  841. {
  842. "__type__": "cc.Node",
  843. "_name": "PageView",
  844. "_objFlags": 0,
  845. "__editorExtras__": {},
  846. "_parent": {
  847. "__id__": 12
  848. },
  849. "_children": [
  850. {
  851. "__id__": 35
  852. }
  853. ],
  854. "_active": true,
  855. "_components": [
  856. {
  857. "__id__": 49
  858. },
  859. {
  860. "__id__": 51
  861. },
  862. {
  863. "__id__": 53
  864. }
  865. ],
  866. "_prefab": {
  867. "__id__": 56
  868. },
  869. "_lpos": {
  870. "__type__": "cc.Vec3",
  871. "x": 0,
  872. "y": -58,
  873. "z": 0
  874. },
  875. "_lrot": {
  876. "__type__": "cc.Quat",
  877. "x": 0,
  878. "y": 0,
  879. "z": 0,
  880. "w": 1
  881. },
  882. "_lscale": {
  883. "__type__": "cc.Vec3",
  884. "x": 1,
  885. "y": 1,
  886. "z": 1
  887. },
  888. "_mobility": 0,
  889. "_layer": 33554432,
  890. "_euler": {
  891. "__type__": "cc.Vec3",
  892. "x": 0,
  893. "y": 0,
  894. "z": 0
  895. },
  896. "_id": ""
  897. },
  898. {
  899. "__type__": "cc.Node",
  900. "_name": "view",
  901. "_objFlags": 0,
  902. "__editorExtras__": {},
  903. "_parent": {
  904. "__id__": 34
  905. },
  906. "_children": [
  907. {
  908. "__id__": 36
  909. }
  910. ],
  911. "_active": true,
  912. "_components": [
  913. {
  914. "__id__": 42
  915. },
  916. {
  917. "__id__": 44
  918. },
  919. {
  920. "__id__": 46
  921. }
  922. ],
  923. "_prefab": {
  924. "__id__": 48
  925. },
  926. "_lpos": {
  927. "__type__": "cc.Vec3",
  928. "x": 0,
  929. "y": 0,
  930. "z": 0
  931. },
  932. "_lrot": {
  933. "__type__": "cc.Quat",
  934. "x": 0,
  935. "y": 0,
  936. "z": 0,
  937. "w": 1
  938. },
  939. "_lscale": {
  940. "__type__": "cc.Vec3",
  941. "x": 1,
  942. "y": 1,
  943. "z": 1
  944. },
  945. "_mobility": 0,
  946. "_layer": 33554432,
  947. "_euler": {
  948. "__type__": "cc.Vec3",
  949. "x": 0,
  950. "y": 0,
  951. "z": 0
  952. },
  953. "_id": ""
  954. },
  955. {
  956. "__type__": "cc.Node",
  957. "_name": "content",
  958. "_objFlags": 0,
  959. "__editorExtras__": {},
  960. "_parent": {
  961. "__id__": 35
  962. },
  963. "_children": [],
  964. "_active": true,
  965. "_components": [
  966. {
  967. "__id__": 37
  968. },
  969. {
  970. "__id__": 39
  971. }
  972. ],
  973. "_prefab": {
  974. "__id__": 41
  975. },
  976. "_lpos": {
  977. "__type__": "cc.Vec3",
  978. "x": -333,
  979. "y": 7.549516567451064e-15,
  980. "z": 0
  981. },
  982. "_lrot": {
  983. "__type__": "cc.Quat",
  984. "x": 0,
  985. "y": 0,
  986. "z": 0,
  987. "w": 1
  988. },
  989. "_lscale": {
  990. "__type__": "cc.Vec3",
  991. "x": 1,
  992. "y": 1,
  993. "z": 1
  994. },
  995. "_mobility": 0,
  996. "_layer": 33554432,
  997. "_euler": {
  998. "__type__": "cc.Vec3",
  999. "x": 0,
  1000. "y": 0,
  1001. "z": 0
  1002. },
  1003. "_id": ""
  1004. },
  1005. {
  1006. "__type__": "cc.UITransform",
  1007. "_name": "",
  1008. "_objFlags": 0,
  1009. "__editorExtras__": {},
  1010. "node": {
  1011. "__id__": 36
  1012. },
  1013. "_enabled": true,
  1014. "__prefab": {
  1015. "__id__": 38
  1016. },
  1017. "_contentSize": {
  1018. "__type__": "cc.Size",
  1019. "width": 0,
  1020. "height": 1000
  1021. },
  1022. "_anchorPoint": {
  1023. "__type__": "cc.Vec2",
  1024. "x": 0,
  1025. "y": 0.5
  1026. },
  1027. "_id": ""
  1028. },
  1029. {
  1030. "__type__": "cc.CompPrefabInfo",
  1031. "fileId": "9ayDcccnJKPp6o2SIEh+qN"
  1032. },
  1033. {
  1034. "__type__": "cc.Layout",
  1035. "_name": "",
  1036. "_objFlags": 0,
  1037. "__editorExtras__": {},
  1038. "node": {
  1039. "__id__": 36
  1040. },
  1041. "_enabled": true,
  1042. "__prefab": {
  1043. "__id__": 40
  1044. },
  1045. "_resizeMode": 1,
  1046. "_layoutType": 1,
  1047. "_cellSize": {
  1048. "__type__": "cc.Size",
  1049. "width": 40,
  1050. "height": 40
  1051. },
  1052. "_startAxis": 0,
  1053. "_paddingLeft": 0,
  1054. "_paddingRight": 0,
  1055. "_paddingTop": 0,
  1056. "_paddingBottom": 0,
  1057. "_spacingX": 0,
  1058. "_spacingY": 0,
  1059. "_verticalDirection": 1,
  1060. "_horizontalDirection": 0,
  1061. "_constraint": 0,
  1062. "_constraintNum": 2,
  1063. "_affectedByScale": false,
  1064. "_isAlign": true,
  1065. "_id": ""
  1066. },
  1067. {
  1068. "__type__": "cc.CompPrefabInfo",
  1069. "fileId": "21n5Jp881HfLUHD9RNKzwR"
  1070. },
  1071. {
  1072. "__type__": "cc.PrefabInfo",
  1073. "root": {
  1074. "__id__": 1
  1075. },
  1076. "asset": {
  1077. "__id__": 0
  1078. },
  1079. "fileId": "c8Xk5zmvpH9rW2aRWcweHu",
  1080. "instance": null,
  1081. "targetOverrides": null,
  1082. "nestedPrefabInstanceRoots": null
  1083. },
  1084. {
  1085. "__type__": "cc.UITransform",
  1086. "_name": "",
  1087. "_objFlags": 0,
  1088. "__editorExtras__": {},
  1089. "node": {
  1090. "__id__": 35
  1091. },
  1092. "_enabled": true,
  1093. "__prefab": {
  1094. "__id__": 43
  1095. },
  1096. "_contentSize": {
  1097. "__type__": "cc.Size",
  1098. "width": 666,
  1099. "height": 1000
  1100. },
  1101. "_anchorPoint": {
  1102. "__type__": "cc.Vec2",
  1103. "x": 0.5,
  1104. "y": 0.5
  1105. },
  1106. "_id": ""
  1107. },
  1108. {
  1109. "__type__": "cc.CompPrefabInfo",
  1110. "fileId": "ec3PoAgc5AQKypmpSS/qAF"
  1111. },
  1112. {
  1113. "__type__": "cc.Mask",
  1114. "_name": "",
  1115. "_objFlags": 0,
  1116. "__editorExtras__": {},
  1117. "node": {
  1118. "__id__": 35
  1119. },
  1120. "_enabled": true,
  1121. "__prefab": {
  1122. "__id__": 45
  1123. },
  1124. "_type": 0,
  1125. "_inverted": false,
  1126. "_segments": 64,
  1127. "_alphaThreshold": 0.1,
  1128. "_id": ""
  1129. },
  1130. {
  1131. "__type__": "cc.CompPrefabInfo",
  1132. "fileId": "1cJgvwHFRDXI3Dl4JhqBJR"
  1133. },
  1134. {
  1135. "__type__": "cc.Graphics",
  1136. "_name": "",
  1137. "_objFlags": 0,
  1138. "__editorExtras__": {},
  1139. "node": {
  1140. "__id__": 35
  1141. },
  1142. "_enabled": true,
  1143. "__prefab": {
  1144. "__id__": 47
  1145. },
  1146. "_customMaterial": null,
  1147. "_srcBlendFactor": 2,
  1148. "_dstBlendFactor": 4,
  1149. "_color": {
  1150. "__type__": "cc.Color",
  1151. "r": 255,
  1152. "g": 255,
  1153. "b": 255,
  1154. "a": 255
  1155. },
  1156. "_lineWidth": 1,
  1157. "_strokeColor": {
  1158. "__type__": "cc.Color",
  1159. "r": 0,
  1160. "g": 0,
  1161. "b": 0,
  1162. "a": 255
  1163. },
  1164. "_lineJoin": 2,
  1165. "_lineCap": 0,
  1166. "_fillColor": {
  1167. "__type__": "cc.Color",
  1168. "r": 255,
  1169. "g": 255,
  1170. "b": 255,
  1171. "a": 0
  1172. },
  1173. "_miterLimit": 10,
  1174. "_id": ""
  1175. },
  1176. {
  1177. "__type__": "cc.CompPrefabInfo",
  1178. "fileId": "ffUqz3145POZqBGJ5bQaRL"
  1179. },
  1180. {
  1181. "__type__": "cc.PrefabInfo",
  1182. "root": {
  1183. "__id__": 1
  1184. },
  1185. "asset": {
  1186. "__id__": 0
  1187. },
  1188. "fileId": "83fH3Eb6dBRqS4CdlsPEYd",
  1189. "instance": null,
  1190. "targetOverrides": null,
  1191. "nestedPrefabInstanceRoots": null
  1192. },
  1193. {
  1194. "__type__": "cc.UITransform",
  1195. "_name": "pageView-horizontal<UITransform>",
  1196. "_objFlags": 0,
  1197. "__editorExtras__": {},
  1198. "node": {
  1199. "__id__": 34
  1200. },
  1201. "_enabled": true,
  1202. "__prefab": {
  1203. "__id__": 50
  1204. },
  1205. "_contentSize": {
  1206. "__type__": "cc.Size",
  1207. "width": 666,
  1208. "height": 1000
  1209. },
  1210. "_anchorPoint": {
  1211. "__type__": "cc.Vec2",
  1212. "x": 0.5,
  1213. "y": 0.5
  1214. },
  1215. "_id": ""
  1216. },
  1217. {
  1218. "__type__": "cc.CompPrefabInfo",
  1219. "fileId": "afsdOVZi5AbJW65NE0+5SX"
  1220. },
  1221. {
  1222. "__type__": "cc.Sprite",
  1223. "_name": "pageView-horizontal<Sprite>",
  1224. "_objFlags": 0,
  1225. "__editorExtras__": {},
  1226. "node": {
  1227. "__id__": 34
  1228. },
  1229. "_enabled": false,
  1230. "__prefab": {
  1231. "__id__": 52
  1232. },
  1233. "_customMaterial": null,
  1234. "_srcBlendFactor": 2,
  1235. "_dstBlendFactor": 4,
  1236. "_color": {
  1237. "__type__": "cc.Color",
  1238. "r": 255,
  1239. "g": 255,
  1240. "b": 255,
  1241. "a": 255
  1242. },
  1243. "_spriteFrame": {
  1244. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  1245. "__expectedType__": "cc.SpriteFrame"
  1246. },
  1247. "_type": 1,
  1248. "_fillType": 0,
  1249. "_sizeMode": 0,
  1250. "_fillCenter": {
  1251. "__type__": "cc.Vec2",
  1252. "x": 0,
  1253. "y": 0
  1254. },
  1255. "_fillStart": 0,
  1256. "_fillRange": 0,
  1257. "_isTrimmedMode": true,
  1258. "_useGrayscale": false,
  1259. "_atlas": null,
  1260. "_id": ""
  1261. },
  1262. {
  1263. "__type__": "cc.CompPrefabInfo",
  1264. "fileId": "50eyagvgBD35YffLSFzS5W"
  1265. },
  1266. {
  1267. "__type__": "cc.PageView",
  1268. "_name": "pageView-horizontal<PageView>",
  1269. "_objFlags": 0,
  1270. "__editorExtras__": {},
  1271. "node": {
  1272. "__id__": 34
  1273. },
  1274. "_enabled": true,
  1275. "__prefab": {
  1276. "__id__": 54
  1277. },
  1278. "bounceDuration": 1,
  1279. "brake": 0.5,
  1280. "elastic": true,
  1281. "inertia": true,
  1282. "horizontal": false,
  1283. "vertical": true,
  1284. "cancelInnerEvents": true,
  1285. "scrollEvents": [],
  1286. "_content": {
  1287. "__id__": 36
  1288. },
  1289. "_horizontalScrollBar": null,
  1290. "_verticalScrollBar": null,
  1291. "autoPageTurningThreshold": 100,
  1292. "pageTurningSpeed": 0.3,
  1293. "pageEvents": [
  1294. {
  1295. "__id__": 55
  1296. }
  1297. ],
  1298. "_sizeMode": 0,
  1299. "_direction": 0,
  1300. "_scrollThreshold": 0.5,
  1301. "_pageTurningEventTiming": 0.1,
  1302. "_indicator": null,
  1303. "_id": ""
  1304. },
  1305. {
  1306. "__type__": "cc.CompPrefabInfo",
  1307. "fileId": "fbgCDRY2pB84sUDbVJ9tWb"
  1308. },
  1309. {
  1310. "__type__": "cc.ClickEvent",
  1311. "target": {
  1312. "__id__": 1
  1313. },
  1314. "component": "",
  1315. "_componentId": "14178W95RxJJaKnlxVz/Dei",
  1316. "handler": "OnPageViewValueChanged",
  1317. "customEventData": ""
  1318. },
  1319. {
  1320. "__type__": "cc.PrefabInfo",
  1321. "root": {
  1322. "__id__": 1
  1323. },
  1324. "asset": {
  1325. "__id__": 0
  1326. },
  1327. "fileId": "c4NlG7a4pDx58tmde/pTy/",
  1328. "instance": null,
  1329. "targetOverrides": null,
  1330. "nestedPrefabInstanceRoots": null
  1331. },
  1332. {
  1333. "__type__": "cc.Node",
  1334. "_name": "btn_left",
  1335. "_objFlags": 0,
  1336. "__editorExtras__": {},
  1337. "_parent": {
  1338. "__id__": 12
  1339. },
  1340. "_children": [],
  1341. "_active": true,
  1342. "_components": [
  1343. {
  1344. "__id__": 58
  1345. },
  1346. {
  1347. "__id__": 60
  1348. },
  1349. {
  1350. "__id__": 62
  1351. }
  1352. ],
  1353. "_prefab": {
  1354. "__id__": 65
  1355. },
  1356. "_lpos": {
  1357. "__type__": "cc.Vec3",
  1358. "x": -95.831,
  1359. "y": -541.661,
  1360. "z": 0
  1361. },
  1362. "_lrot": {
  1363. "__type__": "cc.Quat",
  1364. "x": 0,
  1365. "y": 0,
  1366. "z": 0,
  1367. "w": 1
  1368. },
  1369. "_lscale": {
  1370. "__type__": "cc.Vec3",
  1371. "x": -1,
  1372. "y": 1,
  1373. "z": 1
  1374. },
  1375. "_mobility": 0,
  1376. "_layer": 33554432,
  1377. "_euler": {
  1378. "__type__": "cc.Vec3",
  1379. "x": 0,
  1380. "y": 0,
  1381. "z": 0
  1382. },
  1383. "_id": ""
  1384. },
  1385. {
  1386. "__type__": "cc.UITransform",
  1387. "_name": "",
  1388. "_objFlags": 0,
  1389. "__editorExtras__": {},
  1390. "node": {
  1391. "__id__": 57
  1392. },
  1393. "_enabled": true,
  1394. "__prefab": {
  1395. "__id__": 59
  1396. },
  1397. "_contentSize": {
  1398. "__type__": "cc.Size",
  1399. "width": 33,
  1400. "height": 53
  1401. },
  1402. "_anchorPoint": {
  1403. "__type__": "cc.Vec2",
  1404. "x": 0.5,
  1405. "y": 0.5
  1406. },
  1407. "_id": ""
  1408. },
  1409. {
  1410. "__type__": "cc.CompPrefabInfo",
  1411. "fileId": "3871F7AP1BC7iqzou//T3G"
  1412. },
  1413. {
  1414. "__type__": "cc.Sprite",
  1415. "_name": "",
  1416. "_objFlags": 0,
  1417. "__editorExtras__": {},
  1418. "node": {
  1419. "__id__": 57
  1420. },
  1421. "_enabled": true,
  1422. "__prefab": {
  1423. "__id__": 61
  1424. },
  1425. "_customMaterial": null,
  1426. "_srcBlendFactor": 2,
  1427. "_dstBlendFactor": 4,
  1428. "_color": {
  1429. "__type__": "cc.Color",
  1430. "r": 255,
  1431. "g": 255,
  1432. "b": 255,
  1433. "a": 255
  1434. },
  1435. "_spriteFrame": {
  1436. "__uuid__": "db1cd2be-65eb-4a28-abc5-27b618f05355@f9941",
  1437. "__expectedType__": "cc.SpriteFrame"
  1438. },
  1439. "_type": 0,
  1440. "_fillType": 0,
  1441. "_sizeMode": 1,
  1442. "_fillCenter": {
  1443. "__type__": "cc.Vec2",
  1444. "x": 0,
  1445. "y": 0
  1446. },
  1447. "_fillStart": 0,
  1448. "_fillRange": 0,
  1449. "_isTrimmedMode": true,
  1450. "_useGrayscale": false,
  1451. "_atlas": null,
  1452. "_id": ""
  1453. },
  1454. {
  1455. "__type__": "cc.CompPrefabInfo",
  1456. "fileId": "dfUyVYoNNHmrxJ2KXvprKC"
  1457. },
  1458. {
  1459. "__type__": "cc.Button",
  1460. "_name": "",
  1461. "_objFlags": 0,
  1462. "__editorExtras__": {},
  1463. "node": {
  1464. "__id__": 57
  1465. },
  1466. "_enabled": true,
  1467. "__prefab": {
  1468. "__id__": 63
  1469. },
  1470. "clickEvents": [
  1471. {
  1472. "__id__": 64
  1473. }
  1474. ],
  1475. "_interactable": true,
  1476. "_transition": 3,
  1477. "_normalColor": {
  1478. "__type__": "cc.Color",
  1479. "r": 255,
  1480. "g": 255,
  1481. "b": 255,
  1482. "a": 255
  1483. },
  1484. "_hoverColor": {
  1485. "__type__": "cc.Color",
  1486. "r": 211,
  1487. "g": 211,
  1488. "b": 211,
  1489. "a": 255
  1490. },
  1491. "_pressedColor": {
  1492. "__type__": "cc.Color",
  1493. "r": 255,
  1494. "g": 255,
  1495. "b": 255,
  1496. "a": 255
  1497. },
  1498. "_disabledColor": {
  1499. "__type__": "cc.Color",
  1500. "r": 124,
  1501. "g": 124,
  1502. "b": 124,
  1503. "a": 255
  1504. },
  1505. "_normalSprite": null,
  1506. "_hoverSprite": null,
  1507. "_pressedSprite": null,
  1508. "_disabledSprite": null,
  1509. "_duration": 0.1,
  1510. "_zoomScale": 1.2,
  1511. "_target": null,
  1512. "_id": ""
  1513. },
  1514. {
  1515. "__type__": "cc.CompPrefabInfo",
  1516. "fileId": "9ezv3XDcZOpKFB2AlCwVlE"
  1517. },
  1518. {
  1519. "__type__": "cc.ClickEvent",
  1520. "target": {
  1521. "__id__": 1
  1522. },
  1523. "component": "",
  1524. "_componentId": "14178W95RxJJaKnlxVz/Dei",
  1525. "handler": "OnClickNext",
  1526. "customEventData": "-1"
  1527. },
  1528. {
  1529. "__type__": "cc.PrefabInfo",
  1530. "root": {
  1531. "__id__": 1
  1532. },
  1533. "asset": {
  1534. "__id__": 0
  1535. },
  1536. "fileId": "a3ByF4F0lKLIENO0vG/B9Q",
  1537. "instance": null,
  1538. "targetOverrides": null,
  1539. "nestedPrefabInstanceRoots": null
  1540. },
  1541. {
  1542. "__type__": "cc.Node",
  1543. "_name": "btn_right",
  1544. "_objFlags": 0,
  1545. "__editorExtras__": {},
  1546. "_parent": {
  1547. "__id__": 12
  1548. },
  1549. "_children": [],
  1550. "_active": true,
  1551. "_components": [
  1552. {
  1553. "__id__": 67
  1554. },
  1555. {
  1556. "__id__": 69
  1557. },
  1558. {
  1559. "__id__": 71
  1560. }
  1561. ],
  1562. "_prefab": {
  1563. "__id__": 74
  1564. },
  1565. "_lpos": {
  1566. "__type__": "cc.Vec3",
  1567. "x": 103.447,
  1568. "y": -541.661,
  1569. "z": 0
  1570. },
  1571. "_lrot": {
  1572. "__type__": "cc.Quat",
  1573. "x": 0,
  1574. "y": 0,
  1575. "z": 0,
  1576. "w": 1
  1577. },
  1578. "_lscale": {
  1579. "__type__": "cc.Vec3",
  1580. "x": 1,
  1581. "y": 1,
  1582. "z": 1
  1583. },
  1584. "_mobility": 0,
  1585. "_layer": 33554432,
  1586. "_euler": {
  1587. "__type__": "cc.Vec3",
  1588. "x": 0,
  1589. "y": 0,
  1590. "z": 0
  1591. },
  1592. "_id": ""
  1593. },
  1594. {
  1595. "__type__": "cc.UITransform",
  1596. "_name": "",
  1597. "_objFlags": 0,
  1598. "__editorExtras__": {},
  1599. "node": {
  1600. "__id__": 66
  1601. },
  1602. "_enabled": true,
  1603. "__prefab": {
  1604. "__id__": 68
  1605. },
  1606. "_contentSize": {
  1607. "__type__": "cc.Size",
  1608. "width": 33,
  1609. "height": 53
  1610. },
  1611. "_anchorPoint": {
  1612. "__type__": "cc.Vec2",
  1613. "x": 0.5,
  1614. "y": 0.5
  1615. },
  1616. "_id": ""
  1617. },
  1618. {
  1619. "__type__": "cc.CompPrefabInfo",
  1620. "fileId": "d7EMgu/ftG17yPBVWfAu/W"
  1621. },
  1622. {
  1623. "__type__": "cc.Sprite",
  1624. "_name": "",
  1625. "_objFlags": 0,
  1626. "__editorExtras__": {},
  1627. "node": {
  1628. "__id__": 66
  1629. },
  1630. "_enabled": true,
  1631. "__prefab": {
  1632. "__id__": 70
  1633. },
  1634. "_customMaterial": null,
  1635. "_srcBlendFactor": 2,
  1636. "_dstBlendFactor": 4,
  1637. "_color": {
  1638. "__type__": "cc.Color",
  1639. "r": 255,
  1640. "g": 255,
  1641. "b": 255,
  1642. "a": 255
  1643. },
  1644. "_spriteFrame": {
  1645. "__uuid__": "db1cd2be-65eb-4a28-abc5-27b618f05355@f9941",
  1646. "__expectedType__": "cc.SpriteFrame"
  1647. },
  1648. "_type": 0,
  1649. "_fillType": 0,
  1650. "_sizeMode": 1,
  1651. "_fillCenter": {
  1652. "__type__": "cc.Vec2",
  1653. "x": 0,
  1654. "y": 0
  1655. },
  1656. "_fillStart": 0,
  1657. "_fillRange": 0,
  1658. "_isTrimmedMode": true,
  1659. "_useGrayscale": false,
  1660. "_atlas": null,
  1661. "_id": ""
  1662. },
  1663. {
  1664. "__type__": "cc.CompPrefabInfo",
  1665. "fileId": "91fTP49zhMeY01ngZhxh0Z"
  1666. },
  1667. {
  1668. "__type__": "cc.Button",
  1669. "_name": "",
  1670. "_objFlags": 0,
  1671. "__editorExtras__": {},
  1672. "node": {
  1673. "__id__": 66
  1674. },
  1675. "_enabled": true,
  1676. "__prefab": {
  1677. "__id__": 72
  1678. },
  1679. "clickEvents": [
  1680. {
  1681. "__id__": 73
  1682. }
  1683. ],
  1684. "_interactable": true,
  1685. "_transition": 3,
  1686. "_normalColor": {
  1687. "__type__": "cc.Color",
  1688. "r": 255,
  1689. "g": 255,
  1690. "b": 255,
  1691. "a": 255
  1692. },
  1693. "_hoverColor": {
  1694. "__type__": "cc.Color",
  1695. "r": 211,
  1696. "g": 211,
  1697. "b": 211,
  1698. "a": 255
  1699. },
  1700. "_pressedColor": {
  1701. "__type__": "cc.Color",
  1702. "r": 255,
  1703. "g": 255,
  1704. "b": 255,
  1705. "a": 255
  1706. },
  1707. "_disabledColor": {
  1708. "__type__": "cc.Color",
  1709. "r": 124,
  1710. "g": 124,
  1711. "b": 124,
  1712. "a": 255
  1713. },
  1714. "_normalSprite": null,
  1715. "_hoverSprite": null,
  1716. "_pressedSprite": null,
  1717. "_disabledSprite": null,
  1718. "_duration": 0.1,
  1719. "_zoomScale": 1.2,
  1720. "_target": null,
  1721. "_id": ""
  1722. },
  1723. {
  1724. "__type__": "cc.CompPrefabInfo",
  1725. "fileId": "c6DCm84clDV7f4eChfpIdT"
  1726. },
  1727. {
  1728. "__type__": "cc.ClickEvent",
  1729. "target": {
  1730. "__id__": 1
  1731. },
  1732. "component": "",
  1733. "_componentId": "14178W95RxJJaKnlxVz/Dei",
  1734. "handler": "OnClickNext",
  1735. "customEventData": "1"
  1736. },
  1737. {
  1738. "__type__": "cc.PrefabInfo",
  1739. "root": {
  1740. "__id__": 1
  1741. },
  1742. "asset": {
  1743. "__id__": 0
  1744. },
  1745. "fileId": "36hpoGduNC4bZzAr+Kla9v",
  1746. "instance": null,
  1747. "targetOverrides": null,
  1748. "nestedPrefabInstanceRoots": null
  1749. },
  1750. {
  1751. "__type__": "cc.UITransform",
  1752. "_name": "",
  1753. "_objFlags": 0,
  1754. "__editorExtras__": {},
  1755. "node": {
  1756. "__id__": 12
  1757. },
  1758. "_enabled": true,
  1759. "__prefab": {
  1760. "__id__": 76
  1761. },
  1762. "_contentSize": {
  1763. "__type__": "cc.Size",
  1764. "width": 666,
  1765. "height": 1245
  1766. },
  1767. "_anchorPoint": {
  1768. "__type__": "cc.Vec2",
  1769. "x": 0.5,
  1770. "y": 0.5
  1771. },
  1772. "_id": ""
  1773. },
  1774. {
  1775. "__type__": "cc.CompPrefabInfo",
  1776. "fileId": "71eQYk5+JL8ZxOtxx0L9GH"
  1777. },
  1778. {
  1779. "__type__": "cc.Sprite",
  1780. "_name": "",
  1781. "_objFlags": 0,
  1782. "__editorExtras__": {},
  1783. "node": {
  1784. "__id__": 12
  1785. },
  1786. "_enabled": true,
  1787. "__prefab": {
  1788. "__id__": 78
  1789. },
  1790. "_customMaterial": null,
  1791. "_srcBlendFactor": 2,
  1792. "_dstBlendFactor": 4,
  1793. "_color": {
  1794. "__type__": "cc.Color",
  1795. "r": 255,
  1796. "g": 255,
  1797. "b": 255,
  1798. "a": 255
  1799. },
  1800. "_spriteFrame": {
  1801. "__uuid__": "c6740899-15ea-4273-9fd1-a4d81c57d392@f9941",
  1802. "__expectedType__": "cc.SpriteFrame"
  1803. },
  1804. "_type": 0,
  1805. "_fillType": 0,
  1806. "_sizeMode": 1,
  1807. "_fillCenter": {
  1808. "__type__": "cc.Vec2",
  1809. "x": 0,
  1810. "y": 0
  1811. },
  1812. "_fillStart": 0,
  1813. "_fillRange": 0,
  1814. "_isTrimmedMode": true,
  1815. "_useGrayscale": false,
  1816. "_atlas": null,
  1817. "_id": ""
  1818. },
  1819. {
  1820. "__type__": "cc.CompPrefabInfo",
  1821. "fileId": "52N5Q3fqNKgYltMvq0nxlW"
  1822. },
  1823. {
  1824. "__type__": "cc.PrefabInfo",
  1825. "root": {
  1826. "__id__": 1
  1827. },
  1828. "asset": {
  1829. "__id__": 0
  1830. },
  1831. "fileId": "1fJNimDYxLo5ylv6OE5n7Y",
  1832. "instance": null,
  1833. "targetOverrides": null,
  1834. "nestedPrefabInstanceRoots": null
  1835. },
  1836. {
  1837. "__type__": "cc.UITransform",
  1838. "_name": "",
  1839. "_objFlags": 0,
  1840. "__editorExtras__": {},
  1841. "node": {
  1842. "__id__": 1
  1843. },
  1844. "_enabled": true,
  1845. "__prefab": {
  1846. "__id__": 81
  1847. },
  1848. "_contentSize": {
  1849. "__type__": "cc.Size",
  1850. "width": 720,
  1851. "height": 1280
  1852. },
  1853. "_anchorPoint": {
  1854. "__type__": "cc.Vec2",
  1855. "x": 0.5,
  1856. "y": 0.5
  1857. },
  1858. "_id": ""
  1859. },
  1860. {
  1861. "__type__": "cc.CompPrefabInfo",
  1862. "fileId": "10Ha9kC91KEYy/zNDMlk5D"
  1863. },
  1864. {
  1865. "__type__": "cc.Widget",
  1866. "_name": "",
  1867. "_objFlags": 0,
  1868. "__editorExtras__": {},
  1869. "node": {
  1870. "__id__": 1
  1871. },
  1872. "_enabled": true,
  1873. "__prefab": {
  1874. "__id__": 83
  1875. },
  1876. "_alignFlags": 45,
  1877. "_target": null,
  1878. "_left": 0,
  1879. "_right": 0,
  1880. "_top": 0,
  1881. "_bottom": 0,
  1882. "_horizontalCenter": 0,
  1883. "_verticalCenter": 0,
  1884. "_isAbsLeft": true,
  1885. "_isAbsRight": true,
  1886. "_isAbsTop": true,
  1887. "_isAbsBottom": true,
  1888. "_isAbsHorizontalCenter": true,
  1889. "_isAbsVerticalCenter": true,
  1890. "_originalWidth": 100,
  1891. "_originalHeight": 100,
  1892. "_alignMode": 2,
  1893. "_lockFlags": 0,
  1894. "_id": ""
  1895. },
  1896. {
  1897. "__type__": "cc.CompPrefabInfo",
  1898. "fileId": "90JBvZ8vJOiLanefEhReP1"
  1899. },
  1900. {
  1901. "__type__": "14178W95RxJJaKnlxVz/Dei",
  1902. "_name": "",
  1903. "_objFlags": 0,
  1904. "__editorExtras__": {},
  1905. "node": {
  1906. "__id__": 1
  1907. },
  1908. "_enabled": true,
  1909. "__prefab": {
  1910. "__id__": 85
  1911. },
  1912. "pageview_chooselevel": {
  1913. "__id__": 53
  1914. },
  1915. "txt_pagenum": {
  1916. "__id__": 31
  1917. },
  1918. "item_page": {
  1919. "__uuid__": "a41f05ee-be88-4c74-8d46-62d4c3d08baf",
  1920. "__expectedType__": "cc.Prefab"
  1921. },
  1922. "item_level": {
  1923. "__uuid__": "26fd6d65-6ae3-45ad-a521-bcddfbc0a18f",
  1924. "__expectedType__": "cc.Prefab"
  1925. },
  1926. "_id": ""
  1927. },
  1928. {
  1929. "__type__": "cc.CompPrefabInfo",
  1930. "fileId": "88hLhNGRdCi4SQhsDnhNMR"
  1931. },
  1932. {
  1933. "__type__": "cc.PrefabInfo",
  1934. "root": {
  1935. "__id__": 1
  1936. },
  1937. "asset": {
  1938. "__id__": 0
  1939. },
  1940. "fileId": "eeiJvaG8NCRIjjPe5mKQWF",
  1941. "instance": null,
  1942. "targetOverrides": null
  1943. }
  1944. ]