PopupDaochuUI.prefab 34 KB

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