ModOpenUI.prefab 31 KB

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