pauseUI.prefab 36 KB

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