GameExitDialog.prefab 35 KB

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