pauseUI.prefab 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "pauseUI",
  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": "pauseUI",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 10
  26. }
  27. ],
  28. "_active": true,
  29. "_components": [
  30. {
  31. "__id__": 80
  32. },
  33. {
  34. "__id__": 82
  35. },
  36. {
  37. "__id__": 84
  38. },
  39. {
  40. "__id__": 86
  41. }
  42. ],
  43. "_prefab": {
  44. "__id__": 88
  45. },
  46. "_lpos": {
  47. "__type__": "cc.Vec3",
  48. "x": 0,
  49. "y": 0,
  50. "z": 0
  51. },
  52. "_lrot": {
  53. "__type__": "cc.Quat",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0,
  57. "w": 1
  58. },
  59. "_lscale": {
  60. "__type__": "cc.Vec3",
  61. "x": 1,
  62. "y": 1,
  63. "z": 1
  64. },
  65. "_mobility": 0,
  66. "_layer": 33554432,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "bg",
  78. "_objFlags": 0,
  79. "__editorExtras__": {},
  80. "_parent": {
  81. "__id__": 1
  82. },
  83. "_children": [],
  84. "_active": true,
  85. "_components": [
  86. {
  87. "__id__": 3
  88. },
  89. {
  90. "__id__": 5
  91. },
  92. {
  93. "__id__": 7
  94. }
  95. ],
  96. "_prefab": {
  97. "__id__": 9
  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": 1600
  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": "6cEoGTun5NkqSiJS3sNv9t"
  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": 0,
  174. "g": 0,
  175. "b": 0,
  176. "a": 171
  177. },
  178. "_spriteFrame": {
  179. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@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": false,
  193. "_useGrayscale": false,
  194. "_atlas": null,
  195. "_id": ""
  196. },
  197. {
  198. "__type__": "cc.CompPrefabInfo",
  199. "fileId": "a8bOP2HtRMormCcyd4LoZ0"
  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": 1,
  230. "_lockFlags": 0,
  231. "_id": ""
  232. },
  233. {
  234. "__type__": "cc.CompPrefabInfo",
  235. "fileId": "24tjbHYi9Nn7ud5V1wlCka"
  236. },
  237. {
  238. "__type__": "cc.PrefabInfo",
  239. "root": {
  240. "__id__": 1
  241. },
  242. "asset": {
  243. "__id__": 0
  244. },
  245. "fileId": "ecqq0cSfVBXoAj+DU0lrNl",
  246. "instance": null,
  247. "targetOverrides": null,
  248. "nestedPrefabInstanceRoots": null
  249. },
  250. {
  251. "__type__": "cc.Node",
  252. "_name": "UI",
  253. "_objFlags": 0,
  254. "__editorExtras__": {},
  255. "_parent": {
  256. "__id__": 1
  257. },
  258. "_children": [
  259. {
  260. "__id__": 11
  261. },
  262. {
  263. "__id__": 21
  264. },
  265. {
  266. "__id__": 35
  267. }
  268. ],
  269. "_active": true,
  270. "_components": [
  271. {
  272. "__id__": 73
  273. },
  274. {
  275. "__id__": 75
  276. },
  277. {
  278. "__id__": 77
  279. }
  280. ],
  281. "_prefab": {
  282. "__id__": 79
  283. },
  284. "_lpos": {
  285. "__type__": "cc.Vec3",
  286. "x": 0,
  287. "y": 0,
  288. "z": 0
  289. },
  290. "_lrot": {
  291. "__type__": "cc.Quat",
  292. "x": 0,
  293. "y": 0,
  294. "z": 0,
  295. "w": 1
  296. },
  297. "_lscale": {
  298. "__type__": "cc.Vec3",
  299. "x": 1,
  300. "y": 1,
  301. "z": 1
  302. },
  303. "_mobility": 0,
  304. "_layer": 33554432,
  305. "_euler": {
  306. "__type__": "cc.Vec3",
  307. "x": 0,
  308. "y": 0,
  309. "z": 0
  310. },
  311. "_id": ""
  312. },
  313. {
  314. "__type__": "cc.Node",
  315. "_name": "close_btn",
  316. "_objFlags": 0,
  317. "__editorExtras__": {},
  318. "_parent": {
  319. "__id__": 10
  320. },
  321. "_children": [],
  322. "_active": false,
  323. "_components": [
  324. {
  325. "__id__": 12
  326. },
  327. {
  328. "__id__": 14
  329. },
  330. {
  331. "__id__": 16
  332. },
  333. {
  334. "__id__": 18
  335. }
  336. ],
  337. "_prefab": {
  338. "__id__": 20
  339. },
  340. "_lpos": {
  341. "__type__": "cc.Vec3",
  342. "x": 260.8399999999999,
  343. "y": 288.4169999999998,
  344. "z": 0
  345. },
  346. "_lrot": {
  347. "__type__": "cc.Quat",
  348. "x": 0,
  349. "y": 0,
  350. "z": 0,
  351. "w": 1
  352. },
  353. "_lscale": {
  354. "__type__": "cc.Vec3",
  355. "x": 1,
  356. "y": 1,
  357. "z": 1
  358. },
  359. "_mobility": 0,
  360. "_layer": 33554432,
  361. "_euler": {
  362. "__type__": "cc.Vec3",
  363. "x": 0,
  364. "y": 0,
  365. "z": 0
  366. },
  367. "_id": ""
  368. },
  369. {
  370. "__type__": "cc.UITransform",
  371. "_name": "",
  372. "_objFlags": 0,
  373. "__editorExtras__": {},
  374. "node": {
  375. "__id__": 11
  376. },
  377. "_enabled": true,
  378. "__prefab": {
  379. "__id__": 13
  380. },
  381. "_contentSize": {
  382. "__type__": "cc.Size",
  383. "width": 84,
  384. "height": 85
  385. },
  386. "_anchorPoint": {
  387. "__type__": "cc.Vec2",
  388. "x": 0.5,
  389. "y": 0.5
  390. },
  391. "_id": ""
  392. },
  393. {
  394. "__type__": "cc.CompPrefabInfo",
  395. "fileId": "fe4kKGW7xPbqMXRJk51684"
  396. },
  397. {
  398. "__type__": "cc.Sprite",
  399. "_name": "",
  400. "_objFlags": 0,
  401. "__editorExtras__": {},
  402. "node": {
  403. "__id__": 11
  404. },
  405. "_enabled": true,
  406. "__prefab": {
  407. "__id__": 15
  408. },
  409. "_customMaterial": null,
  410. "_srcBlendFactor": 2,
  411. "_dstBlendFactor": 4,
  412. "_color": {
  413. "__type__": "cc.Color",
  414. "r": 255,
  415. "g": 255,
  416. "b": 255,
  417. "a": 255
  418. },
  419. "_spriteFrame": {
  420. "__uuid__": "96e84e26-deaf-4e47-acd3-5867385b14d7@f9941",
  421. "__expectedType__": "cc.SpriteFrame"
  422. },
  423. "_type": 0,
  424. "_fillType": 0,
  425. "_sizeMode": 1,
  426. "_fillCenter": {
  427. "__type__": "cc.Vec2",
  428. "x": 0,
  429. "y": 0
  430. },
  431. "_fillStart": 0,
  432. "_fillRange": 0,
  433. "_isTrimmedMode": true,
  434. "_useGrayscale": false,
  435. "_atlas": null,
  436. "_id": ""
  437. },
  438. {
  439. "__type__": "cc.CompPrefabInfo",
  440. "fileId": "45mKWdQHpMgp7eR3mO7QMe"
  441. },
  442. {
  443. "__type__": "cc.Widget",
  444. "_name": "",
  445. "_objFlags": 0,
  446. "__editorExtras__": {},
  447. "node": {
  448. "__id__": 11
  449. },
  450. "_enabled": true,
  451. "__prefab": {
  452. "__id__": 17
  453. },
  454. "_alignFlags": 33,
  455. "_target": null,
  456. "_left": 512.8399999999999,
  457. "_right": -8.839999999999918,
  458. "_top": -27.916999999999803,
  459. "_bottom": 0,
  460. "_horizontalCenter": 0,
  461. "_verticalCenter": 0,
  462. "_isAbsLeft": true,
  463. "_isAbsRight": true,
  464. "_isAbsTop": true,
  465. "_isAbsBottom": true,
  466. "_isAbsHorizontalCenter": true,
  467. "_isAbsVerticalCenter": true,
  468. "_originalWidth": 0,
  469. "_originalHeight": 0,
  470. "_alignMode": 2,
  471. "_lockFlags": 0,
  472. "_id": ""
  473. },
  474. {
  475. "__type__": "cc.CompPrefabInfo",
  476. "fileId": "32ADTr1XRACaJPhUU1/dWR"
  477. },
  478. {
  479. "__type__": "cc.Button",
  480. "_name": "",
  481. "_objFlags": 0,
  482. "__editorExtras__": {},
  483. "node": {
  484. "__id__": 11
  485. },
  486. "_enabled": true,
  487. "__prefab": {
  488. "__id__": 19
  489. },
  490. "clickEvents": [],
  491. "_interactable": true,
  492. "_transition": 3,
  493. "_normalColor": {
  494. "__type__": "cc.Color",
  495. "r": 214,
  496. "g": 214,
  497. "b": 214,
  498. "a": 255
  499. },
  500. "_hoverColor": {
  501. "__type__": "cc.Color",
  502. "r": 211,
  503. "g": 211,
  504. "b": 211,
  505. "a": 255
  506. },
  507. "_pressedColor": {
  508. "__type__": "cc.Color",
  509. "r": 255,
  510. "g": 255,
  511. "b": 255,
  512. "a": 255
  513. },
  514. "_disabledColor": {
  515. "__type__": "cc.Color",
  516. "r": 124,
  517. "g": 124,
  518. "b": 124,
  519. "a": 255
  520. },
  521. "_normalSprite": null,
  522. "_hoverSprite": null,
  523. "_pressedSprite": null,
  524. "_disabledSprite": null,
  525. "_duration": 0.1,
  526. "_zoomScale": 1.01,
  527. "_target": {
  528. "__id__": 11
  529. },
  530. "_id": ""
  531. },
  532. {
  533. "__type__": "cc.CompPrefabInfo",
  534. "fileId": "b5K4U439tKhocNqkvMsOiZ"
  535. },
  536. {
  537. "__type__": "cc.PrefabInfo",
  538. "root": {
  539. "__id__": 1
  540. },
  541. "asset": {
  542. "__id__": 0
  543. },
  544. "fileId": "48NyrlN/9LS6G8nvhFrCFW",
  545. "instance": null,
  546. "targetOverrides": null,
  547. "nestedPrefabInstanceRoots": null
  548. },
  549. {
  550. "__type__": "cc.Node",
  551. "_name": "des_bg",
  552. "_objFlags": 0,
  553. "__editorExtras__": {},
  554. "_parent": {
  555. "__id__": 10
  556. },
  557. "_children": [
  558. {
  559. "__id__": 22
  560. }
  561. ],
  562. "_active": true,
  563. "_components": [
  564. {
  565. "__id__": 30
  566. },
  567. {
  568. "__id__": 32
  569. }
  570. ],
  571. "_prefab": {
  572. "__id__": 34
  573. },
  574. "_lpos": {
  575. "__type__": "cc.Vec3",
  576. "x": 0,
  577. "y": 160.555,
  578. "z": 0
  579. },
  580. "_lrot": {
  581. "__type__": "cc.Quat",
  582. "x": 0,
  583. "y": 0,
  584. "z": 0,
  585. "w": 1
  586. },
  587. "_lscale": {
  588. "__type__": "cc.Vec3",
  589. "x": 1,
  590. "y": 1,
  591. "z": 1
  592. },
  593. "_mobility": 0,
  594. "_layer": 33554432,
  595. "_euler": {
  596. "__type__": "cc.Vec3",
  597. "x": 0,
  598. "y": 0,
  599. "z": 0
  600. },
  601. "_id": ""
  602. },
  603. {
  604. "__type__": "cc.Node",
  605. "_name": "task_des_lable",
  606. "_objFlags": 0,
  607. "__editorExtras__": {},
  608. "_parent": {
  609. "__id__": 21
  610. },
  611. "_children": [],
  612. "_active": true,
  613. "_components": [
  614. {
  615. "__id__": 23
  616. },
  617. {
  618. "__id__": 25
  619. },
  620. {
  621. "__id__": 27
  622. }
  623. ],
  624. "_prefab": {
  625. "__id__": 29
  626. },
  627. "_lpos": {
  628. "__type__": "cc.Vec3",
  629. "x": 2.842170943040401e-14,
  630. "y": -3.552713678800501e-15,
  631. "z": 0
  632. },
  633. "_lrot": {
  634. "__type__": "cc.Quat",
  635. "x": 0,
  636. "y": 0,
  637. "z": 0,
  638. "w": 1
  639. },
  640. "_lscale": {
  641. "__type__": "cc.Vec3",
  642. "x": 1,
  643. "y": 1,
  644. "z": 1
  645. },
  646. "_mobility": 0,
  647. "_layer": 33554432,
  648. "_euler": {
  649. "__type__": "cc.Vec3",
  650. "x": 0,
  651. "y": 0,
  652. "z": 0
  653. },
  654. "_id": ""
  655. },
  656. {
  657. "__type__": "cc.UITransform",
  658. "_name": "",
  659. "_objFlags": 0,
  660. "__editorExtras__": {},
  661. "node": {
  662. "__id__": 22
  663. },
  664. "_enabled": true,
  665. "__prefab": {
  666. "__id__": 24
  667. },
  668. "_contentSize": {
  669. "__type__": "cc.Size",
  670. "width": 421.68,
  671. "height": 38.2032
  672. },
  673. "_anchorPoint": {
  674. "__type__": "cc.Vec2",
  675. "x": 0.5,
  676. "y": 0.5
  677. },
  678. "_id": ""
  679. },
  680. {
  681. "__type__": "cc.CompPrefabInfo",
  682. "fileId": "ectGid4+hJvqrJkMBGUW63"
  683. },
  684. {
  685. "__type__": "cc.Label",
  686. "_name": "",
  687. "_objFlags": 0,
  688. "__editorExtras__": {},
  689. "node": {
  690. "__id__": 22
  691. },
  692. "_enabled": true,
  693. "__prefab": {
  694. "__id__": 26
  695. },
  696. "_customMaterial": null,
  697. "_srcBlendFactor": 2,
  698. "_dstBlendFactor": 4,
  699. "_color": {
  700. "__type__": "cc.Color",
  701. "r": 255,
  702. "g": 255,
  703. "b": 255,
  704. "a": 255
  705. },
  706. "_string": "The game has been paused",
  707. "_horizontalAlign": 1,
  708. "_verticalAlign": 1,
  709. "_actualFontSize": 30.32,
  710. "_fontSize": 30.32,
  711. "_fontFamily": "Arial",
  712. "_lineHeight": 30.32,
  713. "_overflow": 3,
  714. "_enableWrapText": true,
  715. "_font": {
  716. "__uuid__": "d2eec8aa-eb87-4069-97d1-cdefce1fe602",
  717. "__expectedType__": "cc.TTFFont"
  718. },
  719. "_isSystemFontUsed": false,
  720. "_spacingX": 0,
  721. "_isItalic": false,
  722. "_isBold": false,
  723. "_isUnderline": false,
  724. "_underlineHeight": 2,
  725. "_cacheMode": 0,
  726. "_enableOutline": false,
  727. "_outlineColor": {
  728. "__type__": "cc.Color",
  729. "r": 24,
  730. "g": 53,
  731. "b": 112,
  732. "a": 255
  733. },
  734. "_outlineWidth": 4,
  735. "_enableShadow": false,
  736. "_shadowColor": {
  737. "__type__": "cc.Color",
  738. "r": 0,
  739. "g": 0,
  740. "b": 0,
  741. "a": 255
  742. },
  743. "_shadowOffset": {
  744. "__type__": "cc.Vec2",
  745. "x": 2,
  746. "y": 2
  747. },
  748. "_shadowBlur": 2,
  749. "_id": ""
  750. },
  751. {
  752. "__type__": "cc.CompPrefabInfo",
  753. "fileId": "48WwDrEyFBr5P4FaC9Rh75"
  754. },
  755. {
  756. "__type__": "cc.Widget",
  757. "_name": "",
  758. "_objFlags": 0,
  759. "__editorExtras__": {},
  760. "node": {
  761. "__id__": 22
  762. },
  763. "_enabled": true,
  764. "__prefab": {
  765. "__id__": 28
  766. },
  767. "_alignFlags": 41,
  768. "_target": null,
  769. "_left": 27.160000000000018,
  770. "_right": 27.159999999999982,
  771. "_top": 40.8984,
  772. "_bottom": 0,
  773. "_horizontalCenter": 0,
  774. "_verticalCenter": 0,
  775. "_isAbsLeft": true,
  776. "_isAbsRight": true,
  777. "_isAbsTop": true,
  778. "_isAbsBottom": true,
  779. "_isAbsHorizontalCenter": true,
  780. "_isAbsVerticalCenter": true,
  781. "_originalWidth": 426.276611328125,
  782. "_originalHeight": 0,
  783. "_alignMode": 2,
  784. "_lockFlags": 0,
  785. "_id": ""
  786. },
  787. {
  788. "__type__": "cc.CompPrefabInfo",
  789. "fileId": "b17rVnEIBPJbxCYLwIl75L"
  790. },
  791. {
  792. "__type__": "cc.PrefabInfo",
  793. "root": {
  794. "__id__": 1
  795. },
  796. "asset": {
  797. "__id__": 0
  798. },
  799. "fileId": "a03gmo/VJHU50AUWl2cdvX",
  800. "instance": null,
  801. "targetOverrides": null,
  802. "nestedPrefabInstanceRoots": null
  803. },
  804. {
  805. "__type__": "cc.UITransform",
  806. "_name": "",
  807. "_objFlags": 0,
  808. "__editorExtras__": {},
  809. "node": {
  810. "__id__": 21
  811. },
  812. "_enabled": true,
  813. "__prefab": {
  814. "__id__": 31
  815. },
  816. "_contentSize": {
  817. "__type__": "cc.Size",
  818. "width": 476,
  819. "height": 120
  820. },
  821. "_anchorPoint": {
  822. "__type__": "cc.Vec2",
  823. "x": 0.5,
  824. "y": 0.5
  825. },
  826. "_id": ""
  827. },
  828. {
  829. "__type__": "cc.CompPrefabInfo",
  830. "fileId": "614cAR9xhO95DD0y2rvBOO"
  831. },
  832. {
  833. "__type__": "cc.Sprite",
  834. "_name": "",
  835. "_objFlags": 0,
  836. "__editorExtras__": {},
  837. "node": {
  838. "__id__": 21
  839. },
  840. "_enabled": true,
  841. "__prefab": {
  842. "__id__": 33
  843. },
  844. "_customMaterial": null,
  845. "_srcBlendFactor": 2,
  846. "_dstBlendFactor": 4,
  847. "_color": {
  848. "__type__": "cc.Color",
  849. "r": 255,
  850. "g": 255,
  851. "b": 255,
  852. "a": 255
  853. },
  854. "_spriteFrame": {
  855. "__uuid__": "44cabf90-d936-4127-888d-920486df4b72@f9941",
  856. "__expectedType__": "cc.SpriteFrame"
  857. },
  858. "_type": 0,
  859. "_fillType": 0,
  860. "_sizeMode": 0,
  861. "_fillCenter": {
  862. "__type__": "cc.Vec2",
  863. "x": 0,
  864. "y": 0
  865. },
  866. "_fillStart": 0,
  867. "_fillRange": 0,
  868. "_isTrimmedMode": true,
  869. "_useGrayscale": false,
  870. "_atlas": null,
  871. "_id": ""
  872. },
  873. {
  874. "__type__": "cc.CompPrefabInfo",
  875. "fileId": "e3LDfgLQNIUbs69PWdm/k/"
  876. },
  877. {
  878. "__type__": "cc.PrefabInfo",
  879. "root": {
  880. "__id__": 1
  881. },
  882. "asset": {
  883. "__id__": 0
  884. },
  885. "fileId": "81Ch7jOWhMb5VMoHIsWJXK",
  886. "instance": null,
  887. "targetOverrides": null,
  888. "nestedPrefabInstanceRoots": null
  889. },
  890. {
  891. "__type__": "cc.Node",
  892. "_name": "btns",
  893. "_objFlags": 0,
  894. "__editorExtras__": {},
  895. "_parent": {
  896. "__id__": 10
  897. },
  898. "_children": [
  899. {
  900. "__id__": 36
  901. },
  902. {
  903. "__id__": 52
  904. }
  905. ],
  906. "_active": true,
  907. "_components": [
  908. {
  909. "__id__": 68
  910. },
  911. {
  912. "__id__": 70
  913. }
  914. ],
  915. "_prefab": {
  916. "__id__": 72
  917. },
  918. "_lpos": {
  919. "__type__": "cc.Vec3",
  920. "x": 0,
  921. "y": -70.726,
  922. "z": 0
  923. },
  924. "_lrot": {
  925. "__type__": "cc.Quat",
  926. "x": 0,
  927. "y": 0,
  928. "z": 0,
  929. "w": 1
  930. },
  931. "_lscale": {
  932. "__type__": "cc.Vec3",
  933. "x": 1,
  934. "y": 1,
  935. "z": 1
  936. },
  937. "_mobility": 0,
  938. "_layer": 33554432,
  939. "_euler": {
  940. "__type__": "cc.Vec3",
  941. "x": 0,
  942. "y": 0,
  943. "z": 0
  944. },
  945. "_id": ""
  946. },
  947. {
  948. "__type__": "cc.Node",
  949. "_name": "back_main_btn",
  950. "_objFlags": 0,
  951. "__editorExtras__": {},
  952. "_parent": {
  953. "__id__": 35
  954. },
  955. "_children": [
  956. {
  957. "__id__": 37
  958. }
  959. ],
  960. "_active": true,
  961. "_components": [
  962. {
  963. "__id__": 43
  964. },
  965. {
  966. "__id__": 45
  967. },
  968. {
  969. "__id__": 47
  970. },
  971. {
  972. "__id__": 49
  973. }
  974. ],
  975. "_prefab": {
  976. "__id__": 51
  977. },
  978. "_lpos": {
  979. "__type__": "cc.Vec3",
  980. "x": 0,
  981. "y": 55,
  982. "z": 0
  983. },
  984. "_lrot": {
  985. "__type__": "cc.Quat",
  986. "x": 0,
  987. "y": 0,
  988. "z": 0,
  989. "w": 1
  990. },
  991. "_lscale": {
  992. "__type__": "cc.Vec3",
  993. "x": 1,
  994. "y": 1,
  995. "z": 1
  996. },
  997. "_mobility": 0,
  998. "_layer": 33554432,
  999. "_euler": {
  1000. "__type__": "cc.Vec3",
  1001. "x": 0,
  1002. "y": 0,
  1003. "z": 0
  1004. },
  1005. "_id": ""
  1006. },
  1007. {
  1008. "__type__": "cc.Node",
  1009. "_name": "price_lable",
  1010. "_objFlags": 0,
  1011. "__editorExtras__": {},
  1012. "_parent": {
  1013. "__id__": 36
  1014. },
  1015. "_children": [],
  1016. "_active": true,
  1017. "_components": [
  1018. {
  1019. "__id__": 38
  1020. },
  1021. {
  1022. "__id__": 40
  1023. }
  1024. ],
  1025. "_prefab": {
  1026. "__id__": 42
  1027. },
  1028. "_lpos": {
  1029. "__type__": "cc.Vec3",
  1030. "x": -160.39556884765625,
  1031. "y": 0,
  1032. "z": 0
  1033. },
  1034. "_lrot": {
  1035. "__type__": "cc.Quat",
  1036. "x": 0,
  1037. "y": 0,
  1038. "z": 0,
  1039. "w": 1
  1040. },
  1041. "_lscale": {
  1042. "__type__": "cc.Vec3",
  1043. "x": 1,
  1044. "y": 1,
  1045. "z": 1
  1046. },
  1047. "_mobility": 0,
  1048. "_layer": 33554432,
  1049. "_euler": {
  1050. "__type__": "cc.Vec3",
  1051. "x": 0,
  1052. "y": 0,
  1053. "z": 0
  1054. },
  1055. "_id": ""
  1056. },
  1057. {
  1058. "__type__": "cc.UITransform",
  1059. "_name": "",
  1060. "_objFlags": 0,
  1061. "__editorExtras__": {},
  1062. "node": {
  1063. "__id__": 37
  1064. },
  1065. "_enabled": true,
  1066. "__prefab": {
  1067. "__id__": 39
  1068. },
  1069. "_contentSize": {
  1070. "__type__": "cc.Size",
  1071. "width": 320.7911376953125,
  1072. "height": 49.4322
  1073. },
  1074. "_anchorPoint": {
  1075. "__type__": "cc.Vec2",
  1076. "x": 0,
  1077. "y": 0.5
  1078. },
  1079. "_id": ""
  1080. },
  1081. {
  1082. "__type__": "cc.CompPrefabInfo",
  1083. "fileId": "85Jq7xykFFIZpEc6603Pvq"
  1084. },
  1085. {
  1086. "__type__": "cc.Label",
  1087. "_name": "",
  1088. "_objFlags": 0,
  1089. "__editorExtras__": {},
  1090. "node": {
  1091. "__id__": 37
  1092. },
  1093. "_enabled": true,
  1094. "__prefab": {
  1095. "__id__": 41
  1096. },
  1097. "_customMaterial": null,
  1098. "_srcBlendFactor": 2,
  1099. "_dstBlendFactor": 4,
  1100. "_color": {
  1101. "__type__": "cc.Color",
  1102. "r": 255,
  1103. "g": 255,
  1104. "b": 255,
  1105. "a": 255
  1106. },
  1107. "_string": "Back to Main Menu",
  1108. "_horizontalAlign": 1,
  1109. "_verticalAlign": 1,
  1110. "_actualFontSize": 34.47,
  1111. "_fontSize": 34.47,
  1112. "_fontFamily": "Arial",
  1113. "_lineHeight": 34.47,
  1114. "_overflow": 0,
  1115. "_enableWrapText": true,
  1116. "_font": {
  1117. "__uuid__": "d2eec8aa-eb87-4069-97d1-cdefce1fe602",
  1118. "__expectedType__": "cc.TTFFont"
  1119. },
  1120. "_isSystemFontUsed": false,
  1121. "_spacingX": 0,
  1122. "_isItalic": false,
  1123. "_isBold": false,
  1124. "_isUnderline": false,
  1125. "_underlineHeight": 2,
  1126. "_cacheMode": 0,
  1127. "_enableOutline": true,
  1128. "_outlineColor": {
  1129. "__type__": "cc.Color",
  1130. "r": 64,
  1131. "g": 27,
  1132. "b": 5,
  1133. "a": 255
  1134. },
  1135. "_outlineWidth": 3,
  1136. "_enableShadow": false,
  1137. "_shadowColor": {
  1138. "__type__": "cc.Color",
  1139. "r": 0,
  1140. "g": 0,
  1141. "b": 0,
  1142. "a": 255
  1143. },
  1144. "_shadowOffset": {
  1145. "__type__": "cc.Vec2",
  1146. "x": 2,
  1147. "y": 2
  1148. },
  1149. "_shadowBlur": 2,
  1150. "_id": ""
  1151. },
  1152. {
  1153. "__type__": "cc.CompPrefabInfo",
  1154. "fileId": "36TCHtNMFBtJh6xHeJSKWE"
  1155. },
  1156. {
  1157. "__type__": "cc.PrefabInfo",
  1158. "root": {
  1159. "__id__": 1
  1160. },
  1161. "asset": {
  1162. "__id__": 0
  1163. },
  1164. "fileId": "848FEI4R1IsLQUp7qoHp8E",
  1165. "instance": null,
  1166. "targetOverrides": null,
  1167. "nestedPrefabInstanceRoots": null
  1168. },
  1169. {
  1170. "__type__": "cc.UITransform",
  1171. "_name": "",
  1172. "_objFlags": 0,
  1173. "__editorExtras__": {},
  1174. "node": {
  1175. "__id__": 36
  1176. },
  1177. "_enabled": true,
  1178. "__prefab": {
  1179. "__id__": 44
  1180. },
  1181. "_contentSize": {
  1182. "__type__": "cc.Size",
  1183. "width": 360.7911376953125,
  1184. "height": 80
  1185. },
  1186. "_anchorPoint": {
  1187. "__type__": "cc.Vec2",
  1188. "x": 0.5,
  1189. "y": 0.5
  1190. },
  1191. "_id": ""
  1192. },
  1193. {
  1194. "__type__": "cc.CompPrefabInfo",
  1195. "fileId": "51CpFrIeNJcImsN2WVWJ/M"
  1196. },
  1197. {
  1198. "__type__": "cc.Sprite",
  1199. "_name": "",
  1200. "_objFlags": 0,
  1201. "__editorExtras__": {},
  1202. "node": {
  1203. "__id__": 36
  1204. },
  1205. "_enabled": true,
  1206. "__prefab": {
  1207. "__id__": 46
  1208. },
  1209. "_customMaterial": null,
  1210. "_srcBlendFactor": 2,
  1211. "_dstBlendFactor": 4,
  1212. "_color": {
  1213. "__type__": "cc.Color",
  1214. "r": 255,
  1215. "g": 255,
  1216. "b": 255,
  1217. "a": 255
  1218. },
  1219. "_spriteFrame": {
  1220. "__uuid__": "8802f9a4-ab5f-4791-8937-e536ac686eb1@f9941",
  1221. "__expectedType__": "cc.SpriteFrame"
  1222. },
  1223. "_type": 1,
  1224. "_fillType": 0,
  1225. "_sizeMode": 0,
  1226. "_fillCenter": {
  1227. "__type__": "cc.Vec2",
  1228. "x": 0,
  1229. "y": 0
  1230. },
  1231. "_fillStart": 0,
  1232. "_fillRange": 0,
  1233. "_isTrimmedMode": true,
  1234. "_useGrayscale": false,
  1235. "_atlas": null,
  1236. "_id": ""
  1237. },
  1238. {
  1239. "__type__": "cc.CompPrefabInfo",
  1240. "fileId": "3cvCcM33RH0YCMx0LyxBhK"
  1241. },
  1242. {
  1243. "__type__": "cc.Button",
  1244. "_name": "",
  1245. "_objFlags": 0,
  1246. "__editorExtras__": {},
  1247. "node": {
  1248. "__id__": 36
  1249. },
  1250. "_enabled": true,
  1251. "__prefab": {
  1252. "__id__": 48
  1253. },
  1254. "clickEvents": [],
  1255. "_interactable": true,
  1256. "_transition": 3,
  1257. "_normalColor": {
  1258. "__type__": "cc.Color",
  1259. "r": 255,
  1260. "g": 255,
  1261. "b": 255,
  1262. "a": 255
  1263. },
  1264. "_hoverColor": {
  1265. "__type__": "cc.Color",
  1266. "r": 211,
  1267. "g": 211,
  1268. "b": 211,
  1269. "a": 255
  1270. },
  1271. "_pressedColor": {
  1272. "__type__": "cc.Color",
  1273. "r": 255,
  1274. "g": 255,
  1275. "b": 255,
  1276. "a": 255
  1277. },
  1278. "_disabledColor": {
  1279. "__type__": "cc.Color",
  1280. "r": 124,
  1281. "g": 124,
  1282. "b": 124,
  1283. "a": 255
  1284. },
  1285. "_normalSprite": null,
  1286. "_hoverSprite": null,
  1287. "_pressedSprite": null,
  1288. "_disabledSprite": null,
  1289. "_duration": 0.1,
  1290. "_zoomScale": 1.02,
  1291. "_target": null,
  1292. "_id": ""
  1293. },
  1294. {
  1295. "__type__": "cc.CompPrefabInfo",
  1296. "fileId": "2auaKHqGNKl4B66ibiStk4"
  1297. },
  1298. {
  1299. "__type__": "cc.Layout",
  1300. "_name": "",
  1301. "_objFlags": 0,
  1302. "__editorExtras__": {},
  1303. "node": {
  1304. "__id__": 36
  1305. },
  1306. "_enabled": true,
  1307. "__prefab": {
  1308. "__id__": 50
  1309. },
  1310. "_resizeMode": 1,
  1311. "_layoutType": 1,
  1312. "_cellSize": {
  1313. "__type__": "cc.Size",
  1314. "width": 40,
  1315. "height": 40
  1316. },
  1317. "_startAxis": 0,
  1318. "_paddingLeft": 20,
  1319. "_paddingRight": 20,
  1320. "_paddingTop": 0,
  1321. "_paddingBottom": 0,
  1322. "_spacingX": 0,
  1323. "_spacingY": 0,
  1324. "_verticalDirection": 1,
  1325. "_horizontalDirection": 0,
  1326. "_constraint": 0,
  1327. "_constraintNum": 2,
  1328. "_affectedByScale": true,
  1329. "_isAlign": true,
  1330. "_id": ""
  1331. },
  1332. {
  1333. "__type__": "cc.CompPrefabInfo",
  1334. "fileId": "8580uQnY1JAahC7kmhM9Bk"
  1335. },
  1336. {
  1337. "__type__": "cc.PrefabInfo",
  1338. "root": {
  1339. "__id__": 1
  1340. },
  1341. "asset": {
  1342. "__id__": 0
  1343. },
  1344. "fileId": "a97z1eyuJJqJKDA+6KazS9",
  1345. "instance": null,
  1346. "targetOverrides": null,
  1347. "nestedPrefabInstanceRoots": null
  1348. },
  1349. {
  1350. "__type__": "cc.Node",
  1351. "_name": "continue_btn",
  1352. "_objFlags": 0,
  1353. "__editorExtras__": {},
  1354. "_parent": {
  1355. "__id__": 35
  1356. },
  1357. "_children": [
  1358. {
  1359. "__id__": 53
  1360. }
  1361. ],
  1362. "_active": true,
  1363. "_components": [
  1364. {
  1365. "__id__": 59
  1366. },
  1367. {
  1368. "__id__": 61
  1369. },
  1370. {
  1371. "__id__": 63
  1372. },
  1373. {
  1374. "__id__": 65
  1375. }
  1376. ],
  1377. "_prefab": {
  1378. "__id__": 67
  1379. },
  1380. "_lpos": {
  1381. "__type__": "cc.Vec3",
  1382. "x": 0,
  1383. "y": -55,
  1384. "z": 0
  1385. },
  1386. "_lrot": {
  1387. "__type__": "cc.Quat",
  1388. "x": 0,
  1389. "y": 0,
  1390. "z": 0,
  1391. "w": 1
  1392. },
  1393. "_lscale": {
  1394. "__type__": "cc.Vec3",
  1395. "x": 1,
  1396. "y": 1,
  1397. "z": 1
  1398. },
  1399. "_mobility": 0,
  1400. "_layer": 33554432,
  1401. "_euler": {
  1402. "__type__": "cc.Vec3",
  1403. "x": 0,
  1404. "y": 0,
  1405. "z": 0
  1406. },
  1407. "_id": ""
  1408. },
  1409. {
  1410. "__type__": "cc.Node",
  1411. "_name": "price_lable",
  1412. "_objFlags": 0,
  1413. "__editorExtras__": {},
  1414. "_parent": {
  1415. "__id__": 52
  1416. },
  1417. "_children": [],
  1418. "_active": true,
  1419. "_components": [
  1420. {
  1421. "__id__": 54
  1422. },
  1423. {
  1424. "__id__": 56
  1425. }
  1426. ],
  1427. "_prefab": {
  1428. "__id__": 58
  1429. },
  1430. "_lpos": {
  1431. "__type__": "cc.Vec3",
  1432. "x": -134.7113800048828,
  1433. "y": 0,
  1434. "z": 0
  1435. },
  1436. "_lrot": {
  1437. "__type__": "cc.Quat",
  1438. "x": 0,
  1439. "y": 0,
  1440. "z": 0,
  1441. "w": 1
  1442. },
  1443. "_lscale": {
  1444. "__type__": "cc.Vec3",
  1445. "x": 1,
  1446. "y": 1,
  1447. "z": 1
  1448. },
  1449. "_mobility": 0,
  1450. "_layer": 33554432,
  1451. "_euler": {
  1452. "__type__": "cc.Vec3",
  1453. "x": 0,
  1454. "y": 0,
  1455. "z": 0
  1456. },
  1457. "_id": ""
  1458. },
  1459. {
  1460. "__type__": "cc.UITransform",
  1461. "_name": "",
  1462. "_objFlags": 0,
  1463. "__editorExtras__": {},
  1464. "node": {
  1465. "__id__": 53
  1466. },
  1467. "_enabled": true,
  1468. "__prefab": {
  1469. "__id__": 55
  1470. },
  1471. "_contentSize": {
  1472. "__type__": "cc.Size",
  1473. "width": 269.4227600097656,
  1474. "height": 49.4322
  1475. },
  1476. "_anchorPoint": {
  1477. "__type__": "cc.Vec2",
  1478. "x": 0,
  1479. "y": 0.5
  1480. },
  1481. "_id": ""
  1482. },
  1483. {
  1484. "__type__": "cc.CompPrefabInfo",
  1485. "fileId": "42tqorKPNKOocWxFVjCkmZ"
  1486. },
  1487. {
  1488. "__type__": "cc.Label",
  1489. "_name": "",
  1490. "_objFlags": 0,
  1491. "__editorExtras__": {},
  1492. "node": {
  1493. "__id__": 53
  1494. },
  1495. "_enabled": true,
  1496. "__prefab": {
  1497. "__id__": 57
  1498. },
  1499. "_customMaterial": null,
  1500. "_srcBlendFactor": 2,
  1501. "_dstBlendFactor": 4,
  1502. "_color": {
  1503. "__type__": "cc.Color",
  1504. "r": 255,
  1505. "g": 255,
  1506. "b": 255,
  1507. "a": 255
  1508. },
  1509. "_string": "Continue Game",
  1510. "_horizontalAlign": 1,
  1511. "_verticalAlign": 1,
  1512. "_actualFontSize": 34.47,
  1513. "_fontSize": 34.47,
  1514. "_fontFamily": "Arial",
  1515. "_lineHeight": 34.47,
  1516. "_overflow": 0,
  1517. "_enableWrapText": true,
  1518. "_font": {
  1519. "__uuid__": "d2eec8aa-eb87-4069-97d1-cdefce1fe602",
  1520. "__expectedType__": "cc.TTFFont"
  1521. },
  1522. "_isSystemFontUsed": false,
  1523. "_spacingX": 0,
  1524. "_isItalic": false,
  1525. "_isBold": false,
  1526. "_isUnderline": false,
  1527. "_underlineHeight": 2,
  1528. "_cacheMode": 0,
  1529. "_enableOutline": true,
  1530. "_outlineColor": {
  1531. "__type__": "cc.Color",
  1532. "r": 64,
  1533. "g": 27,
  1534. "b": 5,
  1535. "a": 255
  1536. },
  1537. "_outlineWidth": 3,
  1538. "_enableShadow": false,
  1539. "_shadowColor": {
  1540. "__type__": "cc.Color",
  1541. "r": 0,
  1542. "g": 0,
  1543. "b": 0,
  1544. "a": 255
  1545. },
  1546. "_shadowOffset": {
  1547. "__type__": "cc.Vec2",
  1548. "x": 2,
  1549. "y": 2
  1550. },
  1551. "_shadowBlur": 2,
  1552. "_id": ""
  1553. },
  1554. {
  1555. "__type__": "cc.CompPrefabInfo",
  1556. "fileId": "a1ldWeSMxMTYDpnRhktSF2"
  1557. },
  1558. {
  1559. "__type__": "cc.PrefabInfo",
  1560. "root": {
  1561. "__id__": 1
  1562. },
  1563. "asset": {
  1564. "__id__": 0
  1565. },
  1566. "fileId": "6fEmB6oDVC5IXd2dbHZVCM",
  1567. "instance": null,
  1568. "targetOverrides": null,
  1569. "nestedPrefabInstanceRoots": null
  1570. },
  1571. {
  1572. "__type__": "cc.UITransform",
  1573. "_name": "",
  1574. "_objFlags": 0,
  1575. "__editorExtras__": {},
  1576. "node": {
  1577. "__id__": 52
  1578. },
  1579. "_enabled": true,
  1580. "__prefab": {
  1581. "__id__": 60
  1582. },
  1583. "_contentSize": {
  1584. "__type__": "cc.Size",
  1585. "width": 359.4227600097656,
  1586. "height": 80
  1587. },
  1588. "_anchorPoint": {
  1589. "__type__": "cc.Vec2",
  1590. "x": 0.5,
  1591. "y": 0.5
  1592. },
  1593. "_id": ""
  1594. },
  1595. {
  1596. "__type__": "cc.CompPrefabInfo",
  1597. "fileId": "4535RCghdC1KOoVsSgBZoJ"
  1598. },
  1599. {
  1600. "__type__": "cc.Sprite",
  1601. "_name": "",
  1602. "_objFlags": 0,
  1603. "__editorExtras__": {},
  1604. "node": {
  1605. "__id__": 52
  1606. },
  1607. "_enabled": true,
  1608. "__prefab": {
  1609. "__id__": 62
  1610. },
  1611. "_customMaterial": null,
  1612. "_srcBlendFactor": 2,
  1613. "_dstBlendFactor": 4,
  1614. "_color": {
  1615. "__type__": "cc.Color",
  1616. "r": 255,
  1617. "g": 255,
  1618. "b": 255,
  1619. "a": 255
  1620. },
  1621. "_spriteFrame": {
  1622. "__uuid__": "8802f9a4-ab5f-4791-8937-e536ac686eb1@f9941",
  1623. "__expectedType__": "cc.SpriteFrame"
  1624. },
  1625. "_type": 1,
  1626. "_fillType": 0,
  1627. "_sizeMode": 0,
  1628. "_fillCenter": {
  1629. "__type__": "cc.Vec2",
  1630. "x": 0,
  1631. "y": 0
  1632. },
  1633. "_fillStart": 0,
  1634. "_fillRange": 0,
  1635. "_isTrimmedMode": true,
  1636. "_useGrayscale": false,
  1637. "_atlas": null,
  1638. "_id": ""
  1639. },
  1640. {
  1641. "__type__": "cc.CompPrefabInfo",
  1642. "fileId": "bfYZ3INyFJK7REClavGXVZ"
  1643. },
  1644. {
  1645. "__type__": "cc.Button",
  1646. "_name": "",
  1647. "_objFlags": 0,
  1648. "__editorExtras__": {},
  1649. "node": {
  1650. "__id__": 52
  1651. },
  1652. "_enabled": true,
  1653. "__prefab": {
  1654. "__id__": 64
  1655. },
  1656. "clickEvents": [],
  1657. "_interactable": true,
  1658. "_transition": 3,
  1659. "_normalColor": {
  1660. "__type__": "cc.Color",
  1661. "r": 255,
  1662. "g": 255,
  1663. "b": 255,
  1664. "a": 255
  1665. },
  1666. "_hoverColor": {
  1667. "__type__": "cc.Color",
  1668. "r": 211,
  1669. "g": 211,
  1670. "b": 211,
  1671. "a": 255
  1672. },
  1673. "_pressedColor": {
  1674. "__type__": "cc.Color",
  1675. "r": 255,
  1676. "g": 255,
  1677. "b": 255,
  1678. "a": 255
  1679. },
  1680. "_disabledColor": {
  1681. "__type__": "cc.Color",
  1682. "r": 124,
  1683. "g": 124,
  1684. "b": 124,
  1685. "a": 255
  1686. },
  1687. "_normalSprite": null,
  1688. "_hoverSprite": null,
  1689. "_pressedSprite": null,
  1690. "_disabledSprite": null,
  1691. "_duration": 0.1,
  1692. "_zoomScale": 1.02,
  1693. "_target": null,
  1694. "_id": ""
  1695. },
  1696. {
  1697. "__type__": "cc.CompPrefabInfo",
  1698. "fileId": "88W785FJNOdo82wEc3+R9s"
  1699. },
  1700. {
  1701. "__type__": "cc.Layout",
  1702. "_name": "",
  1703. "_objFlags": 0,
  1704. "__editorExtras__": {},
  1705. "node": {
  1706. "__id__": 52
  1707. },
  1708. "_enabled": true,
  1709. "__prefab": {
  1710. "__id__": 66
  1711. },
  1712. "_resizeMode": 1,
  1713. "_layoutType": 1,
  1714. "_cellSize": {
  1715. "__type__": "cc.Size",
  1716. "width": 40,
  1717. "height": 40
  1718. },
  1719. "_startAxis": 0,
  1720. "_paddingLeft": 45,
  1721. "_paddingRight": 45,
  1722. "_paddingTop": 0,
  1723. "_paddingBottom": 0,
  1724. "_spacingX": 0,
  1725. "_spacingY": 0,
  1726. "_verticalDirection": 1,
  1727. "_horizontalDirection": 0,
  1728. "_constraint": 0,
  1729. "_constraintNum": 2,
  1730. "_affectedByScale": true,
  1731. "_isAlign": true,
  1732. "_id": ""
  1733. },
  1734. {
  1735. "__type__": "cc.CompPrefabInfo",
  1736. "fileId": "92ngN2ouJNqrvq4Wk83m+Q"
  1737. },
  1738. {
  1739. "__type__": "cc.PrefabInfo",
  1740. "root": {
  1741. "__id__": 1
  1742. },
  1743. "asset": {
  1744. "__id__": 0
  1745. },
  1746. "fileId": "52EG8APVlNFJVLYRjFZ/xx",
  1747. "instance": null,
  1748. "targetOverrides": null,
  1749. "nestedPrefabInstanceRoots": null
  1750. },
  1751. {
  1752. "__type__": "cc.UITransform",
  1753. "_name": "",
  1754. "_objFlags": 0,
  1755. "__editorExtras__": {},
  1756. "node": {
  1757. "__id__": 35
  1758. },
  1759. "_enabled": true,
  1760. "__prefab": {
  1761. "__id__": 69
  1762. },
  1763. "_contentSize": {
  1764. "__type__": "cc.Size",
  1765. "width": 360.791138,
  1766. "height": 190
  1767. },
  1768. "_anchorPoint": {
  1769. "__type__": "cc.Vec2",
  1770. "x": 0.5,
  1771. "y": 0.5
  1772. },
  1773. "_id": ""
  1774. },
  1775. {
  1776. "__type__": "cc.CompPrefabInfo",
  1777. "fileId": "8d2LeoXStOeqwIPdbY6EUA"
  1778. },
  1779. {
  1780. "__type__": "cc.Layout",
  1781. "_name": "",
  1782. "_objFlags": 0,
  1783. "__editorExtras__": {},
  1784. "node": {
  1785. "__id__": 35
  1786. },
  1787. "_enabled": true,
  1788. "__prefab": {
  1789. "__id__": 71
  1790. },
  1791. "_resizeMode": 1,
  1792. "_layoutType": 2,
  1793. "_cellSize": {
  1794. "__type__": "cc.Size",
  1795. "width": 40,
  1796. "height": 40
  1797. },
  1798. "_startAxis": 0,
  1799. "_paddingLeft": 0,
  1800. "_paddingRight": 0,
  1801. "_paddingTop": 0,
  1802. "_paddingBottom": 0,
  1803. "_spacingX": 0,
  1804. "_spacingY": 30,
  1805. "_verticalDirection": 1,
  1806. "_horizontalDirection": 0,
  1807. "_constraint": 0,
  1808. "_constraintNum": 2,
  1809. "_affectedByScale": false,
  1810. "_isAlign": true,
  1811. "_id": ""
  1812. },
  1813. {
  1814. "__type__": "cc.CompPrefabInfo",
  1815. "fileId": "ddNWwCMGtPIISksVjwdr6/"
  1816. },
  1817. {
  1818. "__type__": "cc.PrefabInfo",
  1819. "root": {
  1820. "__id__": 1
  1821. },
  1822. "asset": {
  1823. "__id__": 0
  1824. },
  1825. "fileId": "a4OAL90BdHg4PTVq91NIKk",
  1826. "instance": null,
  1827. "targetOverrides": null,
  1828. "nestedPrefabInstanceRoots": null
  1829. },
  1830. {
  1831. "__type__": "cc.UITransform",
  1832. "_name": "",
  1833. "_objFlags": 0,
  1834. "__editorExtras__": {},
  1835. "node": {
  1836. "__id__": 10
  1837. },
  1838. "_enabled": true,
  1839. "__prefab": {
  1840. "__id__": 74
  1841. },
  1842. "_contentSize": {
  1843. "__type__": "cc.Size",
  1844. "width": 588,
  1845. "height": 606
  1846. },
  1847. "_anchorPoint": {
  1848. "__type__": "cc.Vec2",
  1849. "x": 0.5,
  1850. "y": 0.5
  1851. },
  1852. "_id": ""
  1853. },
  1854. {
  1855. "__type__": "cc.CompPrefabInfo",
  1856. "fileId": "7amZSjImxJ6rUw610U8PVE"
  1857. },
  1858. {
  1859. "__type__": "cc.Widget",
  1860. "_name": "",
  1861. "_objFlags": 0,
  1862. "__editorExtras__": {},
  1863. "node": {
  1864. "__id__": 10
  1865. },
  1866. "_enabled": true,
  1867. "__prefab": {
  1868. "__id__": 76
  1869. },
  1870. "_alignFlags": 45,
  1871. "_target": null,
  1872. "_left": 66,
  1873. "_right": 66,
  1874. "_top": 497,
  1875. "_bottom": 497,
  1876. "_horizontalCenter": 0,
  1877. "_verticalCenter": 0,
  1878. "_isAbsLeft": true,
  1879. "_isAbsRight": true,
  1880. "_isAbsTop": true,
  1881. "_isAbsBottom": true,
  1882. "_isAbsHorizontalCenter": true,
  1883. "_isAbsVerticalCenter": true,
  1884. "_originalWidth": 489,
  1885. "_originalHeight": 601,
  1886. "_alignMode": 2,
  1887. "_lockFlags": 0,
  1888. "_id": ""
  1889. },
  1890. {
  1891. "__type__": "cc.CompPrefabInfo",
  1892. "fileId": "9055hoqMRDj52MABHi7tQL"
  1893. },
  1894. {
  1895. "__type__": "cc.Sprite",
  1896. "_name": "",
  1897. "_objFlags": 0,
  1898. "__editorExtras__": {},
  1899. "node": {
  1900. "__id__": 10
  1901. },
  1902. "_enabled": true,
  1903. "__prefab": {
  1904. "__id__": 78
  1905. },
  1906. "_customMaterial": null,
  1907. "_srcBlendFactor": 2,
  1908. "_dstBlendFactor": 4,
  1909. "_color": {
  1910. "__type__": "cc.Color",
  1911. "r": 255,
  1912. "g": 255,
  1913. "b": 255,
  1914. "a": 255
  1915. },
  1916. "_spriteFrame": {
  1917. "__uuid__": "6c4a95be-2543-4c13-8105-0b9426ad0a8f@f9941",
  1918. "__expectedType__": "cc.SpriteFrame"
  1919. },
  1920. "_type": 0,
  1921. "_fillType": 0,
  1922. "_sizeMode": 0,
  1923. "_fillCenter": {
  1924. "__type__": "cc.Vec2",
  1925. "x": 0,
  1926. "y": 0
  1927. },
  1928. "_fillStart": 0,
  1929. "_fillRange": 0,
  1930. "_isTrimmedMode": true,
  1931. "_useGrayscale": false,
  1932. "_atlas": null,
  1933. "_id": ""
  1934. },
  1935. {
  1936. "__type__": "cc.CompPrefabInfo",
  1937. "fileId": "afLOzv0WtM5o//rnnsNkrS"
  1938. },
  1939. {
  1940. "__type__": "cc.PrefabInfo",
  1941. "root": {
  1942. "__id__": 1
  1943. },
  1944. "asset": {
  1945. "__id__": 0
  1946. },
  1947. "fileId": "12sdeePUtP4Ypk+9LrVnaB",
  1948. "instance": null,
  1949. "targetOverrides": null,
  1950. "nestedPrefabInstanceRoots": null
  1951. },
  1952. {
  1953. "__type__": "cc.UITransform",
  1954. "_name": "",
  1955. "_objFlags": 0,
  1956. "__editorExtras__": {},
  1957. "node": {
  1958. "__id__": 1
  1959. },
  1960. "_enabled": true,
  1961. "__prefab": {
  1962. "__id__": 81
  1963. },
  1964. "_contentSize": {
  1965. "__type__": "cc.Size",
  1966. "width": 720,
  1967. "height": 1600
  1968. },
  1969. "_anchorPoint": {
  1970. "__type__": "cc.Vec2",
  1971. "x": 0.5,
  1972. "y": 0.5
  1973. },
  1974. "_id": ""
  1975. },
  1976. {
  1977. "__type__": "cc.CompPrefabInfo",
  1978. "fileId": "e5AHx618JExqSYZ7DOIWzS"
  1979. },
  1980. {
  1981. "__type__": "cc.Widget",
  1982. "_name": "",
  1983. "_objFlags": 0,
  1984. "__editorExtras__": {},
  1985. "node": {
  1986. "__id__": 1
  1987. },
  1988. "_enabled": true,
  1989. "__prefab": {
  1990. "__id__": 83
  1991. },
  1992. "_alignFlags": 45,
  1993. "_target": null,
  1994. "_left": 0,
  1995. "_right": 0,
  1996. "_top": 0,
  1997. "_bottom": 0,
  1998. "_horizontalCenter": 0,
  1999. "_verticalCenter": 0,
  2000. "_isAbsLeft": true,
  2001. "_isAbsRight": true,
  2002. "_isAbsTop": true,
  2003. "_isAbsBottom": true,
  2004. "_isAbsHorizontalCenter": true,
  2005. "_isAbsVerticalCenter": true,
  2006. "_originalWidth": 100,
  2007. "_originalHeight": 100,
  2008. "_alignMode": 1,
  2009. "_lockFlags": 0,
  2010. "_id": ""
  2011. },
  2012. {
  2013. "__type__": "cc.CompPrefabInfo",
  2014. "fileId": "a4dKtDcPlKuabzeHsQgEXK"
  2015. },
  2016. {
  2017. "__type__": "cc.BlockInputEvents",
  2018. "_name": "",
  2019. "_objFlags": 0,
  2020. "__editorExtras__": {},
  2021. "node": {
  2022. "__id__": 1
  2023. },
  2024. "_enabled": true,
  2025. "__prefab": {
  2026. "__id__": 85
  2027. },
  2028. "_id": ""
  2029. },
  2030. {
  2031. "__type__": "cc.CompPrefabInfo",
  2032. "fileId": "d6pMg+kS9KepKN2QffIpJR"
  2033. },
  2034. {
  2035. "__type__": "e8219vIPUdJ9rtMj9UeInkN",
  2036. "_name": "",
  2037. "_objFlags": 0,
  2038. "__editorExtras__": {},
  2039. "node": {
  2040. "__id__": 1
  2041. },
  2042. "_enabled": true,
  2043. "__prefab": {
  2044. "__id__": 87
  2045. },
  2046. "_id": ""
  2047. },
  2048. {
  2049. "__type__": "cc.CompPrefabInfo",
  2050. "fileId": "2azDBCaNpE24N/j6DEZybG"
  2051. },
  2052. {
  2053. "__type__": "cc.PrefabInfo",
  2054. "root": {
  2055. "__id__": 1
  2056. },
  2057. "asset": {
  2058. "__id__": 0
  2059. },
  2060. "fileId": "06MVkym15A64rDZlBAEthm",
  2061. "instance": null,
  2062. "targetOverrides": null
  2063. }
  2064. ]