GrantPanel.prefab 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517
  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": "GrantPanel",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. }
  26. ],
  27. "_active": true,
  28. "_level": 1,
  29. "_components": [
  30. {
  31. "__id__": 73
  32. }
  33. ],
  34. "_prefab": {
  35. "__id__": 74
  36. },
  37. "_opacity": 255,
  38. "_color": {
  39. "__type__": "cc.Color",
  40. "r": 255,
  41. "g": 255,
  42. "b": 255,
  43. "a": 255
  44. },
  45. "_contentSize": {
  46. "__type__": "cc.Size",
  47. "width": 0,
  48. "height": 0
  49. },
  50. "_anchorPoint": {
  51. "__type__": "cc.Vec2",
  52. "x": 0.5,
  53. "y": 0.5
  54. },
  55. "_position": {
  56. "__type__": "cc.Vec3",
  57. "x": 0,
  58. "y": 0,
  59. "z": 0
  60. },
  61. "_scale": {
  62. "__type__": "cc.Vec3",
  63. "x": 1,
  64. "y": 1,
  65. "z": 1
  66. },
  67. "_eulerAngles": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_skewX": 0,
  74. "_skewY": 0,
  75. "_is3DNode": false,
  76. "groupIndex": 0,
  77. "_id": ""
  78. },
  79. {
  80. "__type__": "cc.Node",
  81. "_name": "Mask",
  82. "_objFlags": 0,
  83. "_parent": {
  84. "__id__": 1
  85. },
  86. "_children": [],
  87. "_active": true,
  88. "_level": 2,
  89. "_components": [
  90. {
  91. "__id__": 3
  92. },
  93. {
  94. "__id__": 4
  95. }
  96. ],
  97. "_prefab": {
  98. "__id__": 5
  99. },
  100. "_opacity": 62,
  101. "_color": {
  102. "__type__": "cc.Color",
  103. "r": 68,
  104. "g": 66,
  105. "b": 66,
  106. "a": 255
  107. },
  108. "_contentSize": {
  109. "__type__": "cc.Size",
  110. "width": 1000,
  111. "height": 2000
  112. },
  113. "_anchorPoint": {
  114. "__type__": "cc.Vec2",
  115. "x": 0.5,
  116. "y": 0.5
  117. },
  118. "_position": {
  119. "__type__": "cc.Vec3",
  120. "x": 0,
  121. "y": 0,
  122. "z": 0
  123. },
  124. "_scale": {
  125. "__type__": "cc.Vec3",
  126. "x": 1.331,
  127. "y": 1.331,
  128. "z": 1.331
  129. },
  130. "_eulerAngles": {
  131. "__type__": "cc.Vec3",
  132. "x": 0,
  133. "y": 0,
  134. "z": 0
  135. },
  136. "_skewX": 0,
  137. "_skewY": 0,
  138. "_is3DNode": false,
  139. "groupIndex": 0,
  140. "_id": ""
  141. },
  142. {
  143. "__type__": "cc.Sprite",
  144. "_name": "",
  145. "_objFlags": 0,
  146. "node": {
  147. "__id__": 2
  148. },
  149. "_enabled": true,
  150. "_materials": [
  151. {
  152. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  153. }
  154. ],
  155. "_srcBlendFactor": 770,
  156. "_dstBlendFactor": 771,
  157. "_spriteFrame": {
  158. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  159. },
  160. "_type": 0,
  161. "_sizeMode": 0,
  162. "_fillType": 0,
  163. "_fillCenter": {
  164. "__type__": "cc.Vec2",
  165. "x": 0,
  166. "y": 0
  167. },
  168. "_fillStart": 0,
  169. "_fillRange": 0,
  170. "_isTrimmedMode": true,
  171. "_atlas": null,
  172. "_id": ""
  173. },
  174. {
  175. "__type__": "cc.BlockInputEvents",
  176. "_name": "",
  177. "_objFlags": 0,
  178. "node": {
  179. "__id__": 2
  180. },
  181. "_enabled": true,
  182. "_id": ""
  183. },
  184. {
  185. "__type__": "cc.PrefabInfo",
  186. "root": {
  187. "__id__": 1
  188. },
  189. "asset": {
  190. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  191. },
  192. "fileId": "99GEuLW6xJWJlrDddBwNV8",
  193. "sync": false
  194. },
  195. {
  196. "__type__": "cc.Node",
  197. "_name": "BG",
  198. "_objFlags": 0,
  199. "_parent": {
  200. "__id__": 1
  201. },
  202. "_children": [
  203. {
  204. "__id__": 7
  205. },
  206. {
  207. "__id__": 10
  208. },
  209. {
  210. "__id__": 21
  211. },
  212. {
  213. "__id__": 40
  214. },
  215. {
  216. "__id__": 61
  217. }
  218. ],
  219. "_active": true,
  220. "_level": 6,
  221. "_components": [
  222. {
  223. "__id__": 71
  224. }
  225. ],
  226. "_prefab": {
  227. "__id__": 72
  228. },
  229. "_opacity": 255,
  230. "_color": {
  231. "__type__": "cc.Color",
  232. "r": 255,
  233. "g": 255,
  234. "b": 255,
  235. "a": 255
  236. },
  237. "_contentSize": {
  238. "__type__": "cc.Size",
  239. "width": 594,
  240. "height": 538
  241. },
  242. "_anchorPoint": {
  243. "__type__": "cc.Vec2",
  244. "x": 0.5,
  245. "y": 0.5
  246. },
  247. "_position": {
  248. "__type__": "cc.Vec3",
  249. "x": 0,
  250. "y": 0,
  251. "z": 0
  252. },
  253. "_scale": {
  254. "__type__": "cc.Vec3",
  255. "x": 1,
  256. "y": 1,
  257. "z": 1
  258. },
  259. "_eulerAngles": {
  260. "__type__": "cc.Vec3",
  261. "x": 0,
  262. "y": 0,
  263. "z": 0
  264. },
  265. "_skewX": 0,
  266. "_skewY": 0,
  267. "_is3DNode": false,
  268. "groupIndex": 0,
  269. "_id": ""
  270. },
  271. {
  272. "__type__": "cc.Node",
  273. "_name": "TitleSprite",
  274. "_objFlags": 0,
  275. "_parent": {
  276. "__id__": 6
  277. },
  278. "_children": [],
  279. "_active": true,
  280. "_level": 7,
  281. "_components": [
  282. {
  283. "__id__": 8
  284. }
  285. ],
  286. "_prefab": {
  287. "__id__": 9
  288. },
  289. "_opacity": 255,
  290. "_color": {
  291. "__type__": "cc.Color",
  292. "r": 255,
  293. "g": 255,
  294. "b": 255,
  295. "a": 255
  296. },
  297. "_contentSize": {
  298. "__type__": "cc.Size",
  299. "width": 255,
  300. "height": 105
  301. },
  302. "_anchorPoint": {
  303. "__type__": "cc.Vec2",
  304. "x": 0.5,
  305. "y": 0.5
  306. },
  307. "_position": {
  308. "__type__": "cc.Vec3",
  309. "x": 10.564,
  310. "y": 190.146,
  311. "z": 0
  312. },
  313. "_scale": {
  314. "__type__": "cc.Vec3",
  315. "x": 1,
  316. "y": 1,
  317. "z": 1
  318. },
  319. "_eulerAngles": {
  320. "__type__": "cc.Vec3",
  321. "x": 0,
  322. "y": 0,
  323. "z": 0
  324. },
  325. "_skewX": 0,
  326. "_skewY": 0,
  327. "_is3DNode": false,
  328. "groupIndex": 0,
  329. "_id": ""
  330. },
  331. {
  332. "__type__": "cc.Sprite",
  333. "_name": "",
  334. "_objFlags": 0,
  335. "node": {
  336. "__id__": 7
  337. },
  338. "_enabled": true,
  339. "_materials": [
  340. {
  341. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  342. }
  343. ],
  344. "_srcBlendFactor": 770,
  345. "_dstBlendFactor": 771,
  346. "_spriteFrame": {
  347. "__uuid__": "2317ca51-d5e9-4438-8301-6b72bcb5556e"
  348. },
  349. "_type": 0,
  350. "_sizeMode": 1,
  351. "_fillType": 0,
  352. "_fillCenter": {
  353. "__type__": "cc.Vec2",
  354. "x": 0,
  355. "y": 0
  356. },
  357. "_fillStart": 0,
  358. "_fillRange": 0,
  359. "_isTrimmedMode": true,
  360. "_atlas": null,
  361. "_id": ""
  362. },
  363. {
  364. "__type__": "cc.PrefabInfo",
  365. "root": {
  366. "__id__": 1
  367. },
  368. "asset": {
  369. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  370. },
  371. "fileId": "bdcZy6nolJnJSOHjo2IC5O",
  372. "sync": false
  373. },
  374. {
  375. "__type__": "cc.Node",
  376. "_name": "CloseButton",
  377. "_objFlags": 0,
  378. "_parent": {
  379. "__id__": 6
  380. },
  381. "_children": [
  382. {
  383. "__id__": 11
  384. }
  385. ],
  386. "_active": true,
  387. "_level": 7,
  388. "_components": [
  389. {
  390. "__id__": 18
  391. }
  392. ],
  393. "_prefab": {
  394. "__id__": 20
  395. },
  396. "_opacity": 255,
  397. "_color": {
  398. "__type__": "cc.Color",
  399. "r": 255,
  400. "g": 255,
  401. "b": 255,
  402. "a": 255
  403. },
  404. "_contentSize": {
  405. "__type__": "cc.Size",
  406. "width": 93,
  407. "height": 93
  408. },
  409. "_anchorPoint": {
  410. "__type__": "cc.Vec2",
  411. "x": 0.5,
  412. "y": 0.5
  413. },
  414. "_position": {
  415. "__type__": "cc.Vec3",
  416. "x": 245.605,
  417. "y": 227.119,
  418. "z": 0
  419. },
  420. "_scale": {
  421. "__type__": "cc.Vec3",
  422. "x": 1,
  423. "y": 1,
  424. "z": 1
  425. },
  426. "_eulerAngles": {
  427. "__type__": "cc.Vec3",
  428. "x": 0,
  429. "y": 0,
  430. "z": 0
  431. },
  432. "_skewX": 0,
  433. "_skewY": 0,
  434. "_is3DNode": false,
  435. "groupIndex": 0,
  436. "_id": ""
  437. },
  438. {
  439. "__type__": "cc.Node",
  440. "_name": "Background",
  441. "_objFlags": 0,
  442. "_parent": {
  443. "__id__": 10
  444. },
  445. "_children": [
  446. {
  447. "__id__": 12
  448. }
  449. ],
  450. "_active": true,
  451. "_level": 2,
  452. "_components": [
  453. {
  454. "__id__": 15
  455. },
  456. {
  457. "__id__": 16
  458. }
  459. ],
  460. "_prefab": {
  461. "__id__": 17
  462. },
  463. "_opacity": 255,
  464. "_color": {
  465. "__type__": "cc.Color",
  466. "r": 255,
  467. "g": 255,
  468. "b": 255,
  469. "a": 255
  470. },
  471. "_contentSize": {
  472. "__type__": "cc.Size",
  473. "width": 93,
  474. "height": 93
  475. },
  476. "_anchorPoint": {
  477. "__type__": "cc.Vec2",
  478. "x": 0.5,
  479. "y": 0.5
  480. },
  481. "_position": {
  482. "__type__": "cc.Vec3",
  483. "x": 0,
  484. "y": 0,
  485. "z": 0
  486. },
  487. "_scale": {
  488. "__type__": "cc.Vec3",
  489. "x": 1,
  490. "y": 1,
  491. "z": 1
  492. },
  493. "_eulerAngles": {
  494. "__type__": "cc.Vec3",
  495. "x": 0,
  496. "y": 0,
  497. "z": 0
  498. },
  499. "_skewX": 0,
  500. "_skewY": 0,
  501. "_is3DNode": false,
  502. "groupIndex": 0,
  503. "_id": ""
  504. },
  505. {
  506. "__type__": "cc.Node",
  507. "_name": "Label",
  508. "_objFlags": 0,
  509. "_parent": {
  510. "__id__": 11
  511. },
  512. "_children": [],
  513. "_active": true,
  514. "_level": 3,
  515. "_components": [
  516. {
  517. "__id__": 13
  518. }
  519. ],
  520. "_prefab": {
  521. "__id__": 14
  522. },
  523. "_opacity": 255,
  524. "_color": {
  525. "__type__": "cc.Color",
  526. "r": 0,
  527. "g": 0,
  528. "b": 0,
  529. "a": 255
  530. },
  531. "_contentSize": {
  532. "__type__": "cc.Size",
  533. "width": 100,
  534. "height": 40
  535. },
  536. "_anchorPoint": {
  537. "__type__": "cc.Vec2",
  538. "x": 0.5,
  539. "y": 0.5
  540. },
  541. "_position": {
  542. "__type__": "cc.Vec3",
  543. "x": 0,
  544. "y": 0,
  545. "z": 0
  546. },
  547. "_scale": {
  548. "__type__": "cc.Vec3",
  549. "x": 1,
  550. "y": 1,
  551. "z": 1
  552. },
  553. "_eulerAngles": {
  554. "__type__": "cc.Vec3",
  555. "x": 0,
  556. "y": 0,
  557. "z": 0
  558. },
  559. "_skewX": 0,
  560. "_skewY": 0,
  561. "_is3DNode": false,
  562. "groupIndex": 0,
  563. "_id": ""
  564. },
  565. {
  566. "__type__": "cc.Label",
  567. "_name": "",
  568. "_objFlags": 0,
  569. "node": {
  570. "__id__": 12
  571. },
  572. "_enabled": true,
  573. "_materials": [
  574. {
  575. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  576. }
  577. ],
  578. "_useOriginalSize": false,
  579. "_string": "",
  580. "_N$string": "",
  581. "_fontSize": 20,
  582. "_lineHeight": 40,
  583. "_enableWrapText": false,
  584. "_N$file": null,
  585. "_isSystemFontUsed": true,
  586. "_spacingX": 0,
  587. "_batchAsBitmap": false,
  588. "_N$horizontalAlign": 1,
  589. "_N$verticalAlign": 1,
  590. "_N$fontFamily": "Arial",
  591. "_N$overflow": 1,
  592. "_N$cacheMode": 0,
  593. "_id": ""
  594. },
  595. {
  596. "__type__": "cc.PrefabInfo",
  597. "root": {
  598. "__id__": 1
  599. },
  600. "asset": {
  601. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  602. },
  603. "fileId": "e33FfISeBBR7FD4AGs1TVh",
  604. "sync": false
  605. },
  606. {
  607. "__type__": "cc.Sprite",
  608. "_name": "",
  609. "_objFlags": 0,
  610. "node": {
  611. "__id__": 11
  612. },
  613. "_enabled": true,
  614. "_materials": [
  615. {
  616. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  617. }
  618. ],
  619. "_srcBlendFactor": 770,
  620. "_dstBlendFactor": 771,
  621. "_spriteFrame": {
  622. "__uuid__": "60d0ea3b-b0a3-4544-84f0-48914bceb893"
  623. },
  624. "_type": 1,
  625. "_sizeMode": 0,
  626. "_fillType": 0,
  627. "_fillCenter": {
  628. "__type__": "cc.Vec2",
  629. "x": 0,
  630. "y": 0
  631. },
  632. "_fillStart": 0,
  633. "_fillRange": 0,
  634. "_isTrimmedMode": true,
  635. "_atlas": null,
  636. "_id": ""
  637. },
  638. {
  639. "__type__": "cc.Widget",
  640. "_name": "",
  641. "_objFlags": 0,
  642. "node": {
  643. "__id__": 11
  644. },
  645. "_enabled": true,
  646. "alignMode": 0,
  647. "_target": null,
  648. "_alignFlags": 45,
  649. "_left": 0,
  650. "_right": 0,
  651. "_top": 0,
  652. "_bottom": 0,
  653. "_verticalCenter": 0,
  654. "_horizontalCenter": 0,
  655. "_isAbsLeft": true,
  656. "_isAbsRight": true,
  657. "_isAbsTop": true,
  658. "_isAbsBottom": true,
  659. "_isAbsHorizontalCenter": true,
  660. "_isAbsVerticalCenter": true,
  661. "_originalWidth": 100,
  662. "_originalHeight": 40,
  663. "_id": ""
  664. },
  665. {
  666. "__type__": "cc.PrefabInfo",
  667. "root": {
  668. "__id__": 1
  669. },
  670. "asset": {
  671. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  672. },
  673. "fileId": "2aqjS0dDBKipWM9yKhorl0",
  674. "sync": false
  675. },
  676. {
  677. "__type__": "cc.Button",
  678. "_name": "",
  679. "_objFlags": 0,
  680. "node": {
  681. "__id__": 10
  682. },
  683. "_enabled": true,
  684. "duration": 0.1,
  685. "zoomScale": 1.2,
  686. "clickEvents": [
  687. {
  688. "__id__": 19
  689. }
  690. ],
  691. "_N$interactable": true,
  692. "_N$enableAutoGrayEffect": false,
  693. "_N$transition": 2,
  694. "transition": 2,
  695. "_N$normalColor": {
  696. "__type__": "cc.Color",
  697. "r": 230,
  698. "g": 230,
  699. "b": 230,
  700. "a": 255
  701. },
  702. "_N$pressedColor": {
  703. "__type__": "cc.Color",
  704. "r": 200,
  705. "g": 200,
  706. "b": 200,
  707. "a": 255
  708. },
  709. "pressedColor": {
  710. "__type__": "cc.Color",
  711. "r": 200,
  712. "g": 200,
  713. "b": 200,
  714. "a": 255
  715. },
  716. "_N$hoverColor": {
  717. "__type__": "cc.Color",
  718. "r": 255,
  719. "g": 255,
  720. "b": 255,
  721. "a": 255
  722. },
  723. "hoverColor": {
  724. "__type__": "cc.Color",
  725. "r": 255,
  726. "g": 255,
  727. "b": 255,
  728. "a": 255
  729. },
  730. "_N$disabledColor": {
  731. "__type__": "cc.Color",
  732. "r": 120,
  733. "g": 120,
  734. "b": 120,
  735. "a": 200
  736. },
  737. "_N$normalSprite": {
  738. "__uuid__": "60d0ea3b-b0a3-4544-84f0-48914bceb893"
  739. },
  740. "_N$pressedSprite": {
  741. "__uuid__": "eeb40e15-1216-4eda-8e33-7e1474c1ffbe"
  742. },
  743. "pressedSprite": {
  744. "__uuid__": "eeb40e15-1216-4eda-8e33-7e1474c1ffbe"
  745. },
  746. "_N$hoverSprite": {
  747. "__uuid__": "60d0ea3b-b0a3-4544-84f0-48914bceb893"
  748. },
  749. "hoverSprite": {
  750. "__uuid__": "60d0ea3b-b0a3-4544-84f0-48914bceb893"
  751. },
  752. "_N$disabledSprite": {
  753. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  754. },
  755. "_N$target": {
  756. "__id__": 11
  757. },
  758. "_id": ""
  759. },
  760. {
  761. "__type__": "cc.ClickEvent",
  762. "target": {
  763. "__id__": 1
  764. },
  765. "component": "",
  766. "_componentId": "60508qxsq5Ki5juXuLI5EVW",
  767. "handler": "onclose",
  768. "customEventData": ""
  769. },
  770. {
  771. "__type__": "cc.PrefabInfo",
  772. "root": {
  773. "__id__": 1
  774. },
  775. "asset": {
  776. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  777. },
  778. "fileId": "27eIzW13BGi5RzzmX4gIFo",
  779. "sync": false
  780. },
  781. {
  782. "__type__": "cc.Node",
  783. "_name": "BG1_sprite_splash",
  784. "_objFlags": 0,
  785. "_parent": {
  786. "__id__": 6
  787. },
  788. "_children": [
  789. {
  790. "__id__": 22
  791. },
  792. {
  793. "__id__": 30
  794. }
  795. ],
  796. "_active": true,
  797. "_level": 7,
  798. "_components": [
  799. {
  800. "__id__": 38
  801. }
  802. ],
  803. "_prefab": {
  804. "__id__": 39
  805. },
  806. "_opacity": 255,
  807. "_color": {
  808. "__type__": "cc.Color",
  809. "r": 228,
  810. "g": 244,
  811. "b": 249,
  812. "a": 255
  813. },
  814. "_contentSize": {
  815. "__type__": "cc.Size",
  816. "width": 450,
  817. "height": 150
  818. },
  819. "_anchorPoint": {
  820. "__type__": "cc.Vec2",
  821. "x": 0.5,
  822. "y": 0.5
  823. },
  824. "_position": {
  825. "__type__": "cc.Vec3",
  826. "x": 0,
  827. "y": 60.741,
  828. "z": 0
  829. },
  830. "_scale": {
  831. "__type__": "cc.Vec3",
  832. "x": 1,
  833. "y": 1,
  834. "z": 1
  835. },
  836. "_eulerAngles": {
  837. "__type__": "cc.Vec3",
  838. "x": 0,
  839. "y": 0,
  840. "z": 0
  841. },
  842. "_skewX": 0,
  843. "_skewY": 0,
  844. "_is3DNode": false,
  845. "groupIndex": 0,
  846. "_id": ""
  847. },
  848. {
  849. "__type__": "cc.Node",
  850. "_name": "NameLabel",
  851. "_objFlags": 0,
  852. "_parent": {
  853. "__id__": 21
  854. },
  855. "_children": [
  856. {
  857. "__id__": 23
  858. }
  859. ],
  860. "_active": true,
  861. "_level": 8,
  862. "_components": [
  863. {
  864. "__id__": 27
  865. },
  866. {
  867. "__id__": 28
  868. }
  869. ],
  870. "_prefab": {
  871. "__id__": 29
  872. },
  873. "_opacity": 255,
  874. "_color": {
  875. "__type__": "cc.Color",
  876. "r": 42,
  877. "g": 155,
  878. "b": 200,
  879. "a": 255
  880. },
  881. "_contentSize": {
  882. "__type__": "cc.Size",
  883. "width": 152,
  884. "height": 39.8
  885. },
  886. "_anchorPoint": {
  887. "__type__": "cc.Vec2",
  888. "x": 0.5,
  889. "y": 0.5
  890. },
  891. "_position": {
  892. "__type__": "cc.Vec3",
  893. "x": -132.046,
  894. "y": 34.332,
  895. "z": 0
  896. },
  897. "_scale": {
  898. "__type__": "cc.Vec3",
  899. "x": 1,
  900. "y": 1,
  901. "z": 1
  902. },
  903. "_eulerAngles": {
  904. "__type__": "cc.Vec3",
  905. "x": 0,
  906. "y": 0,
  907. "z": 0
  908. },
  909. "_skewX": 0,
  910. "_skewY": 0,
  911. "_is3DNode": false,
  912. "groupIndex": 0,
  913. "_id": ""
  914. },
  915. {
  916. "__type__": "cc.Node",
  917. "_name": "label",
  918. "_objFlags": 0,
  919. "_parent": {
  920. "__id__": 22
  921. },
  922. "_children": [],
  923. "_active": true,
  924. "_level": 9,
  925. "_components": [
  926. {
  927. "__id__": 24
  928. },
  929. {
  930. "__id__": 25
  931. }
  932. ],
  933. "_prefab": {
  934. "__id__": 26
  935. },
  936. "_opacity": 255,
  937. "_color": {
  938. "__type__": "cc.Color",
  939. "r": 255,
  940. "g": 137,
  941. "b": 165,
  942. "a": 255
  943. },
  944. "_contentSize": {
  945. "__type__": "cc.Size",
  946. "width": 82,
  947. "height": 52.4
  948. },
  949. "_anchorPoint": {
  950. "__type__": "cc.Vec2",
  951. "x": 0.5,
  952. "y": 0.5
  953. },
  954. "_position": {
  955. "__type__": "cc.Vec3",
  956. "x": 137.328,
  957. "y": 0,
  958. "z": 0
  959. },
  960. "_scale": {
  961. "__type__": "cc.Vec3",
  962. "x": 1,
  963. "y": 1,
  964. "z": 1
  965. },
  966. "_eulerAngles": {
  967. "__type__": "cc.Vec3",
  968. "x": 0,
  969. "y": 0,
  970. "z": 0
  971. },
  972. "_skewX": 0,
  973. "_skewY": 0,
  974. "_is3DNode": false,
  975. "groupIndex": 0,
  976. "_id": ""
  977. },
  978. {
  979. "__type__": "cc.Label",
  980. "_name": "",
  981. "_objFlags": 0,
  982. "node": {
  983. "__id__": 23
  984. },
  985. "_enabled": true,
  986. "_materials": [
  987. {
  988. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  989. }
  990. ],
  991. "_useOriginalSize": false,
  992. "_string": "白菜",
  993. "_N$string": "白菜",
  994. "_fontSize": 40,
  995. "_lineHeight": 40,
  996. "_enableWrapText": true,
  997. "_N$file": null,
  998. "_isSystemFontUsed": true,
  999. "_spacingX": 0,
  1000. "_batchAsBitmap": false,
  1001. "_N$horizontalAlign": 0,
  1002. "_N$verticalAlign": 1,
  1003. "_N$fontFamily": "Arial",
  1004. "_N$overflow": 0,
  1005. "_N$cacheMode": 0,
  1006. "_id": ""
  1007. },
  1008. {
  1009. "__type__": "cc.LabelOutline",
  1010. "_name": "",
  1011. "_objFlags": 0,
  1012. "node": {
  1013. "__id__": 23
  1014. },
  1015. "_enabled": true,
  1016. "_color": {
  1017. "__type__": "cc.Color",
  1018. "r": 255,
  1019. "g": 137,
  1020. "b": 165,
  1021. "a": 255
  1022. },
  1023. "_width": 1,
  1024. "_id": ""
  1025. },
  1026. {
  1027. "__type__": "cc.PrefabInfo",
  1028. "root": {
  1029. "__id__": 1
  1030. },
  1031. "asset": {
  1032. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1033. },
  1034. "fileId": "fchZnh+e9MEba8h6L8oLfK",
  1035. "sync": false
  1036. },
  1037. {
  1038. "__type__": "cc.Label",
  1039. "_name": "",
  1040. "_objFlags": 0,
  1041. "node": {
  1042. "__id__": 22
  1043. },
  1044. "_enabled": true,
  1045. "_materials": [
  1046. {
  1047. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1048. }
  1049. ],
  1050. "_useOriginalSize": false,
  1051. "_string": "果实名称:",
  1052. "_N$string": "果实名称:",
  1053. "_fontSize": 30,
  1054. "_lineHeight": 30,
  1055. "_enableWrapText": true,
  1056. "_N$file": null,
  1057. "_isSystemFontUsed": true,
  1058. "_spacingX": 0,
  1059. "_batchAsBitmap": false,
  1060. "_N$horizontalAlign": 1,
  1061. "_N$verticalAlign": 1,
  1062. "_N$fontFamily": "Arial",
  1063. "_N$overflow": 0,
  1064. "_N$cacheMode": 0,
  1065. "_id": ""
  1066. },
  1067. {
  1068. "__type__": "cc.LabelOutline",
  1069. "_name": "",
  1070. "_objFlags": 0,
  1071. "node": {
  1072. "__id__": 22
  1073. },
  1074. "_enabled": true,
  1075. "_color": {
  1076. "__type__": "cc.Color",
  1077. "r": 42,
  1078. "g": 155,
  1079. "b": 200,
  1080. "a": 255
  1081. },
  1082. "_width": 1,
  1083. "_id": ""
  1084. },
  1085. {
  1086. "__type__": "cc.PrefabInfo",
  1087. "root": {
  1088. "__id__": 1
  1089. },
  1090. "asset": {
  1091. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1092. },
  1093. "fileId": "b9l+XYmoxLqZ5YtVEWrPry",
  1094. "sync": false
  1095. },
  1096. {
  1097. "__type__": "cc.Node",
  1098. "_name": "NumLabel",
  1099. "_objFlags": 0,
  1100. "_parent": {
  1101. "__id__": 21
  1102. },
  1103. "_children": [
  1104. {
  1105. "__id__": 31
  1106. }
  1107. ],
  1108. "_active": true,
  1109. "_level": 8,
  1110. "_components": [
  1111. {
  1112. "__id__": 35
  1113. },
  1114. {
  1115. "__id__": 36
  1116. }
  1117. ],
  1118. "_prefab": {
  1119. "__id__": 37
  1120. },
  1121. "_opacity": 255,
  1122. "_color": {
  1123. "__type__": "cc.Color",
  1124. "r": 42,
  1125. "g": 155,
  1126. "b": 200,
  1127. "a": 255
  1128. },
  1129. "_contentSize": {
  1130. "__type__": "cc.Size",
  1131. "width": 122,
  1132. "height": 39.8
  1133. },
  1134. "_anchorPoint": {
  1135. "__type__": "cc.Vec2",
  1136. "x": 0.5,
  1137. "y": 0.5
  1138. },
  1139. "_position": {
  1140. "__type__": "cc.Vec3",
  1141. "x": -132.046,
  1142. "y": -23.144,
  1143. "z": 0
  1144. },
  1145. "_scale": {
  1146. "__type__": "cc.Vec3",
  1147. "x": 1,
  1148. "y": 1,
  1149. "z": 1
  1150. },
  1151. "_eulerAngles": {
  1152. "__type__": "cc.Vec3",
  1153. "x": 0,
  1154. "y": 0,
  1155. "z": 0
  1156. },
  1157. "_skewX": 0,
  1158. "_skewY": 0,
  1159. "_is3DNode": false,
  1160. "groupIndex": 0,
  1161. "_id": ""
  1162. },
  1163. {
  1164. "__type__": "cc.Node",
  1165. "_name": "label",
  1166. "_objFlags": 0,
  1167. "_parent": {
  1168. "__id__": 30
  1169. },
  1170. "_children": [],
  1171. "_active": true,
  1172. "_level": 9,
  1173. "_components": [
  1174. {
  1175. "__id__": 32
  1176. },
  1177. {
  1178. "__id__": 33
  1179. }
  1180. ],
  1181. "_prefab": {
  1182. "__id__": 34
  1183. },
  1184. "_opacity": 255,
  1185. "_color": {
  1186. "__type__": "cc.Color",
  1187. "r": 255,
  1188. "g": 137,
  1189. "b": 165,
  1190. "a": 255
  1191. },
  1192. "_contentSize": {
  1193. "__type__": "cc.Size",
  1194. "width": 68.74,
  1195. "height": 52.4
  1196. },
  1197. "_anchorPoint": {
  1198. "__type__": "cc.Vec2",
  1199. "x": 0.5,
  1200. "y": 0.5
  1201. },
  1202. "_position": {
  1203. "__type__": "cc.Vec3",
  1204. "x": 137.328,
  1205. "y": 0,
  1206. "z": 0
  1207. },
  1208. "_scale": {
  1209. "__type__": "cc.Vec3",
  1210. "x": 1,
  1211. "y": 1,
  1212. "z": 1
  1213. },
  1214. "_eulerAngles": {
  1215. "__type__": "cc.Vec3",
  1216. "x": 0,
  1217. "y": 0,
  1218. "z": 0
  1219. },
  1220. "_skewX": 0,
  1221. "_skewY": 0,
  1222. "_is3DNode": false,
  1223. "groupIndex": 0,
  1224. "_id": ""
  1225. },
  1226. {
  1227. "__type__": "cc.Label",
  1228. "_name": "",
  1229. "_objFlags": 0,
  1230. "node": {
  1231. "__id__": 31
  1232. },
  1233. "_enabled": true,
  1234. "_materials": [
  1235. {
  1236. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1237. }
  1238. ],
  1239. "_useOriginalSize": false,
  1240. "_string": "100",
  1241. "_N$string": "100",
  1242. "_fontSize": 40,
  1243. "_lineHeight": 40,
  1244. "_enableWrapText": true,
  1245. "_N$file": null,
  1246. "_isSystemFontUsed": true,
  1247. "_spacingX": 0,
  1248. "_batchAsBitmap": false,
  1249. "_N$horizontalAlign": 0,
  1250. "_N$verticalAlign": 1,
  1251. "_N$fontFamily": "Arial",
  1252. "_N$overflow": 0,
  1253. "_N$cacheMode": 0,
  1254. "_id": ""
  1255. },
  1256. {
  1257. "__type__": "cc.LabelOutline",
  1258. "_name": "",
  1259. "_objFlags": 0,
  1260. "node": {
  1261. "__id__": 31
  1262. },
  1263. "_enabled": true,
  1264. "_color": {
  1265. "__type__": "cc.Color",
  1266. "r": 255,
  1267. "g": 137,
  1268. "b": 165,
  1269. "a": 255
  1270. },
  1271. "_width": 1,
  1272. "_id": ""
  1273. },
  1274. {
  1275. "__type__": "cc.PrefabInfo",
  1276. "root": {
  1277. "__id__": 1
  1278. },
  1279. "asset": {
  1280. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1281. },
  1282. "fileId": "c7y4oF23xC8ZA1ZXAUUvrn",
  1283. "sync": false
  1284. },
  1285. {
  1286. "__type__": "cc.Label",
  1287. "_name": "",
  1288. "_objFlags": 0,
  1289. "node": {
  1290. "__id__": 30
  1291. },
  1292. "_enabled": true,
  1293. "_materials": [
  1294. {
  1295. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1296. }
  1297. ],
  1298. "_useOriginalSize": false,
  1299. "_string": "总数量:",
  1300. "_N$string": "总数量:",
  1301. "_fontSize": 30,
  1302. "_lineHeight": 30,
  1303. "_enableWrapText": true,
  1304. "_N$file": null,
  1305. "_isSystemFontUsed": true,
  1306. "_spacingX": 0,
  1307. "_batchAsBitmap": false,
  1308. "_N$horizontalAlign": 1,
  1309. "_N$verticalAlign": 1,
  1310. "_N$fontFamily": "Arial",
  1311. "_N$overflow": 0,
  1312. "_N$cacheMode": 0,
  1313. "_id": ""
  1314. },
  1315. {
  1316. "__type__": "cc.LabelOutline",
  1317. "_name": "",
  1318. "_objFlags": 0,
  1319. "node": {
  1320. "__id__": 30
  1321. },
  1322. "_enabled": true,
  1323. "_color": {
  1324. "__type__": "cc.Color",
  1325. "r": 42,
  1326. "g": 155,
  1327. "b": 200,
  1328. "a": 255
  1329. },
  1330. "_width": 1,
  1331. "_id": ""
  1332. },
  1333. {
  1334. "__type__": "cc.PrefabInfo",
  1335. "root": {
  1336. "__id__": 1
  1337. },
  1338. "asset": {
  1339. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1340. },
  1341. "fileId": "eeV3SO7DxHqoHZq2xBYJv8",
  1342. "sync": false
  1343. },
  1344. {
  1345. "__type__": "cc.Sprite",
  1346. "_name": "",
  1347. "_objFlags": 0,
  1348. "node": {
  1349. "__id__": 21
  1350. },
  1351. "_enabled": true,
  1352. "_materials": [
  1353. {
  1354. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1355. }
  1356. ],
  1357. "_srcBlendFactor": 770,
  1358. "_dstBlendFactor": 771,
  1359. "_spriteFrame": {
  1360. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1361. },
  1362. "_type": 0,
  1363. "_sizeMode": 0,
  1364. "_fillType": 0,
  1365. "_fillCenter": {
  1366. "__type__": "cc.Vec2",
  1367. "x": 0,
  1368. "y": 0
  1369. },
  1370. "_fillStart": 0,
  1371. "_fillRange": 0,
  1372. "_isTrimmedMode": true,
  1373. "_atlas": null,
  1374. "_id": ""
  1375. },
  1376. {
  1377. "__type__": "cc.PrefabInfo",
  1378. "root": {
  1379. "__id__": 1
  1380. },
  1381. "asset": {
  1382. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1383. },
  1384. "fileId": "59VgicJb9Nu4/s5Su7vhqw",
  1385. "sync": false
  1386. },
  1387. {
  1388. "__type__": "cc.Node",
  1389. "_name": "NumLabel",
  1390. "_objFlags": 0,
  1391. "_parent": {
  1392. "__id__": 6
  1393. },
  1394. "_children": [
  1395. {
  1396. "__id__": 41
  1397. }
  1398. ],
  1399. "_active": true,
  1400. "_level": 7,
  1401. "_components": [
  1402. {
  1403. "__id__": 58
  1404. },
  1405. {
  1406. "__id__": 59
  1407. }
  1408. ],
  1409. "_prefab": {
  1410. "__id__": 60
  1411. },
  1412. "_opacity": 255,
  1413. "_color": {
  1414. "__type__": "cc.Color",
  1415. "r": 42,
  1416. "g": 155,
  1417. "b": 200,
  1418. "a": 255
  1419. },
  1420. "_contentSize": {
  1421. "__type__": "cc.Size",
  1422. "width": 122,
  1423. "height": 39.8
  1424. },
  1425. "_anchorPoint": {
  1426. "__type__": "cc.Vec2",
  1427. "x": 0.5,
  1428. "y": 0.5
  1429. },
  1430. "_position": {
  1431. "__type__": "cc.Vec3",
  1432. "x": -132.046,
  1433. "y": -57.63,
  1434. "z": 0
  1435. },
  1436. "_scale": {
  1437. "__type__": "cc.Vec3",
  1438. "x": 1,
  1439. "y": 1,
  1440. "z": 1
  1441. },
  1442. "_eulerAngles": {
  1443. "__type__": "cc.Vec3",
  1444. "x": 0,
  1445. "y": 0,
  1446. "z": 0
  1447. },
  1448. "_skewX": 0,
  1449. "_skewY": 0,
  1450. "_is3DNode": false,
  1451. "groupIndex": 0,
  1452. "_id": ""
  1453. },
  1454. {
  1455. "__type__": "cc.Node",
  1456. "_name": "editbox",
  1457. "_objFlags": 0,
  1458. "_parent": {
  1459. "__id__": 40
  1460. },
  1461. "_children": [
  1462. {
  1463. "__id__": 42
  1464. },
  1465. {
  1466. "__id__": 46
  1467. },
  1468. {
  1469. "__id__": 51
  1470. }
  1471. ],
  1472. "_active": true,
  1473. "_level": 7,
  1474. "_components": [
  1475. {
  1476. "__id__": 55
  1477. }
  1478. ],
  1479. "_prefab": {
  1480. "__id__": 57
  1481. },
  1482. "_opacity": 255,
  1483. "_color": {
  1484. "__type__": "cc.Color",
  1485. "r": 228,
  1486. "g": 244,
  1487. "b": 249,
  1488. "a": 255
  1489. },
  1490. "_contentSize": {
  1491. "__type__": "cc.Size",
  1492. "width": 160,
  1493. "height": 40
  1494. },
  1495. "_anchorPoint": {
  1496. "__type__": "cc.Vec2",
  1497. "x": 0.5,
  1498. "y": 0.5
  1499. },
  1500. "_position": {
  1501. "__type__": "cc.Vec3",
  1502. "x": 156.336,
  1503. "y": 0,
  1504. "z": 0
  1505. },
  1506. "_scale": {
  1507. "__type__": "cc.Vec3",
  1508. "x": 1,
  1509. "y": 1,
  1510. "z": 1
  1511. },
  1512. "_eulerAngles": {
  1513. "__type__": "cc.Vec3",
  1514. "x": 0,
  1515. "y": 0,
  1516. "z": 0
  1517. },
  1518. "_skewX": 0,
  1519. "_skewY": 0,
  1520. "_is3DNode": false,
  1521. "groupIndex": 0,
  1522. "_id": ""
  1523. },
  1524. {
  1525. "__type__": "cc.Node",
  1526. "_name": "BACKGROUND_SPRITE",
  1527. "_objFlags": 0,
  1528. "_parent": {
  1529. "__id__": 41
  1530. },
  1531. "_children": [],
  1532. "_active": true,
  1533. "_level": 2,
  1534. "_components": [
  1535. {
  1536. "__id__": 43
  1537. },
  1538. {
  1539. "__id__": 44
  1540. }
  1541. ],
  1542. "_prefab": {
  1543. "__id__": 45
  1544. },
  1545. "_opacity": 255,
  1546. "_color": {
  1547. "__type__": "cc.Color",
  1548. "r": 228,
  1549. "g": 244,
  1550. "b": 249,
  1551. "a": 255
  1552. },
  1553. "_contentSize": {
  1554. "__type__": "cc.Size",
  1555. "width": 160,
  1556. "height": 40
  1557. },
  1558. "_anchorPoint": {
  1559. "__type__": "cc.Vec2",
  1560. "x": 0.5,
  1561. "y": 0.5
  1562. },
  1563. "_position": {
  1564. "__type__": "cc.Vec3",
  1565. "x": 0,
  1566. "y": 0,
  1567. "z": 0
  1568. },
  1569. "_scale": {
  1570. "__type__": "cc.Vec3",
  1571. "x": 1,
  1572. "y": 1,
  1573. "z": 1
  1574. },
  1575. "_eulerAngles": {
  1576. "__type__": "cc.Vec3",
  1577. "x": 0,
  1578. "y": 0,
  1579. "z": 0
  1580. },
  1581. "_skewX": 0,
  1582. "_skewY": 0,
  1583. "_is3DNode": false,
  1584. "groupIndex": 0,
  1585. "_id": ""
  1586. },
  1587. {
  1588. "__type__": "cc.Sprite",
  1589. "_name": "",
  1590. "_objFlags": 0,
  1591. "node": {
  1592. "__id__": 42
  1593. },
  1594. "_enabled": true,
  1595. "_materials": [
  1596. {
  1597. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1598. }
  1599. ],
  1600. "_srcBlendFactor": 770,
  1601. "_dstBlendFactor": 771,
  1602. "_spriteFrame": {
  1603. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1604. },
  1605. "_type": 0,
  1606. "_sizeMode": 0,
  1607. "_fillType": 0,
  1608. "_fillCenter": {
  1609. "__type__": "cc.Vec2",
  1610. "x": 0,
  1611. "y": 0
  1612. },
  1613. "_fillStart": 0,
  1614. "_fillRange": 0,
  1615. "_isTrimmedMode": true,
  1616. "_atlas": null,
  1617. "_id": ""
  1618. },
  1619. {
  1620. "__type__": "cc.Widget",
  1621. "_name": "",
  1622. "_objFlags": 0,
  1623. "node": {
  1624. "__id__": 42
  1625. },
  1626. "_enabled": true,
  1627. "alignMode": 0,
  1628. "_target": null,
  1629. "_alignFlags": 45,
  1630. "_left": 0,
  1631. "_right": 0,
  1632. "_top": 0,
  1633. "_bottom": 0,
  1634. "_verticalCenter": 0,
  1635. "_horizontalCenter": 0,
  1636. "_isAbsLeft": true,
  1637. "_isAbsRight": true,
  1638. "_isAbsTop": true,
  1639. "_isAbsBottom": true,
  1640. "_isAbsHorizontalCenter": true,
  1641. "_isAbsVerticalCenter": true,
  1642. "_originalWidth": 160,
  1643. "_originalHeight": 40,
  1644. "_id": ""
  1645. },
  1646. {
  1647. "__type__": "cc.PrefabInfo",
  1648. "root": {
  1649. "__id__": 1
  1650. },
  1651. "asset": {
  1652. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1653. },
  1654. "fileId": "c0BhAnVVlH3LB4AJQ6KPmj",
  1655. "sync": false
  1656. },
  1657. {
  1658. "__type__": "cc.Node",
  1659. "_name": "TEXT_LABEL",
  1660. "_objFlags": 0,
  1661. "_parent": {
  1662. "__id__": 41
  1663. },
  1664. "_children": [],
  1665. "_active": false,
  1666. "_level": 2,
  1667. "_components": [
  1668. {
  1669. "__id__": 47
  1670. },
  1671. {
  1672. "__id__": 48
  1673. },
  1674. {
  1675. "__id__": 49
  1676. }
  1677. ],
  1678. "_prefab": {
  1679. "__id__": 50
  1680. },
  1681. "_opacity": 255,
  1682. "_color": {
  1683. "__type__": "cc.Color",
  1684. "r": 129,
  1685. "g": 180,
  1686. "b": 200,
  1687. "a": 255
  1688. },
  1689. "_contentSize": {
  1690. "__type__": "cc.Size",
  1691. "width": 158,
  1692. "height": 40
  1693. },
  1694. "_anchorPoint": {
  1695. "__type__": "cc.Vec2",
  1696. "x": 0,
  1697. "y": 1
  1698. },
  1699. "_position": {
  1700. "__type__": "cc.Vec3",
  1701. "x": -78,
  1702. "y": 20,
  1703. "z": 0
  1704. },
  1705. "_scale": {
  1706. "__type__": "cc.Vec3",
  1707. "x": 1,
  1708. "y": 1,
  1709. "z": 1
  1710. },
  1711. "_eulerAngles": {
  1712. "__type__": "cc.Vec3",
  1713. "x": 0,
  1714. "y": 0,
  1715. "z": 0
  1716. },
  1717. "_skewX": 0,
  1718. "_skewY": 0,
  1719. "_is3DNode": false,
  1720. "groupIndex": 0,
  1721. "_id": ""
  1722. },
  1723. {
  1724. "__type__": "cc.Label",
  1725. "_name": "",
  1726. "_objFlags": 0,
  1727. "node": {
  1728. "__id__": 46
  1729. },
  1730. "_enabled": true,
  1731. "_materials": [],
  1732. "_useOriginalSize": true,
  1733. "_string": "",
  1734. "_N$string": "",
  1735. "_fontSize": 20,
  1736. "_lineHeight": 25,
  1737. "_enableWrapText": false,
  1738. "_N$file": null,
  1739. "_isSystemFontUsed": true,
  1740. "_spacingX": 0,
  1741. "_batchAsBitmap": false,
  1742. "_N$horizontalAlign": 0,
  1743. "_N$verticalAlign": 1,
  1744. "_N$fontFamily": "Arial",
  1745. "_N$overflow": 1,
  1746. "_N$cacheMode": 0,
  1747. "_id": ""
  1748. },
  1749. {
  1750. "__type__": "cc.Widget",
  1751. "_name": "",
  1752. "_objFlags": 0,
  1753. "node": {
  1754. "__id__": 46
  1755. },
  1756. "_enabled": true,
  1757. "alignMode": 0,
  1758. "_target": null,
  1759. "_alignFlags": 45,
  1760. "_left": 2,
  1761. "_right": 0,
  1762. "_top": 0,
  1763. "_bottom": 0,
  1764. "_verticalCenter": 0,
  1765. "_horizontalCenter": 0,
  1766. "_isAbsLeft": true,
  1767. "_isAbsRight": true,
  1768. "_isAbsTop": true,
  1769. "_isAbsBottom": true,
  1770. "_isAbsHorizontalCenter": true,
  1771. "_isAbsVerticalCenter": true,
  1772. "_originalWidth": 158,
  1773. "_originalHeight": 40,
  1774. "_id": ""
  1775. },
  1776. {
  1777. "__type__": "cc.LabelOutline",
  1778. "_name": "",
  1779. "_objFlags": 0,
  1780. "node": {
  1781. "__id__": 46
  1782. },
  1783. "_enabled": true,
  1784. "_color": {
  1785. "__type__": "cc.Color",
  1786. "r": 255,
  1787. "g": 137,
  1788. "b": 165,
  1789. "a": 255
  1790. },
  1791. "_width": 1,
  1792. "_id": ""
  1793. },
  1794. {
  1795. "__type__": "cc.PrefabInfo",
  1796. "root": {
  1797. "__id__": 1
  1798. },
  1799. "asset": {
  1800. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1801. },
  1802. "fileId": "d0Jsow5pdPpq/IafUZbJm3",
  1803. "sync": false
  1804. },
  1805. {
  1806. "__type__": "cc.Node",
  1807. "_name": "PLACEHOLDER_LABEL",
  1808. "_objFlags": 0,
  1809. "_parent": {
  1810. "__id__": 41
  1811. },
  1812. "_children": [],
  1813. "_active": true,
  1814. "_level": 2,
  1815. "_components": [
  1816. {
  1817. "__id__": 52
  1818. },
  1819. {
  1820. "__id__": 53
  1821. }
  1822. ],
  1823. "_prefab": {
  1824. "__id__": 54
  1825. },
  1826. "_opacity": 255,
  1827. "_color": {
  1828. "__type__": "cc.Color",
  1829. "r": 129,
  1830. "g": 180,
  1831. "b": 200,
  1832. "a": 255
  1833. },
  1834. "_contentSize": {
  1835. "__type__": "cc.Size",
  1836. "width": 158,
  1837. "height": 40
  1838. },
  1839. "_anchorPoint": {
  1840. "__type__": "cc.Vec2",
  1841. "x": 0,
  1842. "y": 1
  1843. },
  1844. "_position": {
  1845. "__type__": "cc.Vec3",
  1846. "x": -78,
  1847. "y": 20,
  1848. "z": 0
  1849. },
  1850. "_scale": {
  1851. "__type__": "cc.Vec3",
  1852. "x": 1,
  1853. "y": 1,
  1854. "z": 1
  1855. },
  1856. "_eulerAngles": {
  1857. "__type__": "cc.Vec3",
  1858. "x": 0,
  1859. "y": 0,
  1860. "z": 0
  1861. },
  1862. "_skewX": 0,
  1863. "_skewY": 0,
  1864. "_is3DNode": false,
  1865. "groupIndex": 0,
  1866. "_id": ""
  1867. },
  1868. {
  1869. "__type__": "cc.Label",
  1870. "_name": "",
  1871. "_objFlags": 0,
  1872. "node": {
  1873. "__id__": 51
  1874. },
  1875. "_enabled": true,
  1876. "_materials": [
  1877. {
  1878. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1879. }
  1880. ],
  1881. "_useOriginalSize": true,
  1882. "_string": "输入钱包地址",
  1883. "_N$string": "输入钱包地址",
  1884. "_fontSize": 20,
  1885. "_lineHeight": 25,
  1886. "_enableWrapText": false,
  1887. "_N$file": null,
  1888. "_isSystemFontUsed": true,
  1889. "_spacingX": 0,
  1890. "_batchAsBitmap": false,
  1891. "_N$horizontalAlign": 0,
  1892. "_N$verticalAlign": 1,
  1893. "_N$fontFamily": "Arial",
  1894. "_N$overflow": 1,
  1895. "_N$cacheMode": 0,
  1896. "_id": ""
  1897. },
  1898. {
  1899. "__type__": "cc.Widget",
  1900. "_name": "",
  1901. "_objFlags": 0,
  1902. "node": {
  1903. "__id__": 51
  1904. },
  1905. "_enabled": true,
  1906. "alignMode": 0,
  1907. "_target": null,
  1908. "_alignFlags": 45,
  1909. "_left": 2,
  1910. "_right": 0,
  1911. "_top": 0,
  1912. "_bottom": 0,
  1913. "_verticalCenter": 0,
  1914. "_horizontalCenter": 0,
  1915. "_isAbsLeft": true,
  1916. "_isAbsRight": true,
  1917. "_isAbsTop": true,
  1918. "_isAbsBottom": true,
  1919. "_isAbsHorizontalCenter": true,
  1920. "_isAbsVerticalCenter": true,
  1921. "_originalWidth": 158,
  1922. "_originalHeight": 40,
  1923. "_id": ""
  1924. },
  1925. {
  1926. "__type__": "cc.PrefabInfo",
  1927. "root": {
  1928. "__id__": 1
  1929. },
  1930. "asset": {
  1931. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1932. },
  1933. "fileId": "45SpRLGKhLDqnJmhVZvWEJ",
  1934. "sync": false
  1935. },
  1936. {
  1937. "__type__": "cc.EditBox",
  1938. "_name": "",
  1939. "_objFlags": 0,
  1940. "node": {
  1941. "__id__": 41
  1942. },
  1943. "_enabled": true,
  1944. "_useOriginalSize": false,
  1945. "_string": "",
  1946. "returnType": 0,
  1947. "maxLength": 8,
  1948. "_tabIndex": 0,
  1949. "editingDidBegan": [],
  1950. "textChanged": [
  1951. {
  1952. "__id__": 56
  1953. }
  1954. ],
  1955. "editingDidEnded": [],
  1956. "editingReturn": [],
  1957. "_N$textLabel": {
  1958. "__id__": 47
  1959. },
  1960. "_N$placeholderLabel": {
  1961. "__id__": 52
  1962. },
  1963. "_N$background": {
  1964. "__id__": 43
  1965. },
  1966. "_N$inputFlag": 5,
  1967. "_N$inputMode": 6,
  1968. "_N$stayOnTop": false,
  1969. "_id": ""
  1970. },
  1971. {
  1972. "__type__": "cc.ClickEvent",
  1973. "target": {
  1974. "__id__": 1
  1975. },
  1976. "component": "",
  1977. "_componentId": "60508qxsq5Ki5juXuLI5EVW",
  1978. "handler": "inputValue",
  1979. "customEventData": ""
  1980. },
  1981. {
  1982. "__type__": "cc.PrefabInfo",
  1983. "root": {
  1984. "__id__": 1
  1985. },
  1986. "asset": {
  1987. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1988. },
  1989. "fileId": "ecCgGyLAJOFqqa2obwt2MA",
  1990. "sync": false
  1991. },
  1992. {
  1993. "__type__": "cc.Label",
  1994. "_name": "",
  1995. "_objFlags": 0,
  1996. "node": {
  1997. "__id__": 40
  1998. },
  1999. "_enabled": true,
  2000. "_materials": [
  2001. {
  2002. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2003. }
  2004. ],
  2005. "_useOriginalSize": false,
  2006. "_string": "赠送地址",
  2007. "_N$string": "赠送地址",
  2008. "_fontSize": 30,
  2009. "_lineHeight": 30,
  2010. "_enableWrapText": true,
  2011. "_N$file": null,
  2012. "_isSystemFontUsed": true,
  2013. "_spacingX": 0,
  2014. "_batchAsBitmap": false,
  2015. "_N$horizontalAlign": 1,
  2016. "_N$verticalAlign": 1,
  2017. "_N$fontFamily": "Arial",
  2018. "_N$overflow": 0,
  2019. "_N$cacheMode": 0,
  2020. "_id": ""
  2021. },
  2022. {
  2023. "__type__": "cc.LabelOutline",
  2024. "_name": "",
  2025. "_objFlags": 0,
  2026. "node": {
  2027. "__id__": 40
  2028. },
  2029. "_enabled": true,
  2030. "_color": {
  2031. "__type__": "cc.Color",
  2032. "r": 42,
  2033. "g": 155,
  2034. "b": 200,
  2035. "a": 255
  2036. },
  2037. "_width": 1,
  2038. "_id": ""
  2039. },
  2040. {
  2041. "__type__": "cc.PrefabInfo",
  2042. "root": {
  2043. "__id__": 1
  2044. },
  2045. "asset": {
  2046. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2047. },
  2048. "fileId": "ceLZB08r1GsZHjCDpJ4ylh",
  2049. "sync": false
  2050. },
  2051. {
  2052. "__type__": "cc.Node",
  2053. "_name": "button",
  2054. "_objFlags": 0,
  2055. "_parent": {
  2056. "__id__": 6
  2057. },
  2058. "_children": [
  2059. {
  2060. "__id__": 62
  2061. }
  2062. ],
  2063. "_active": true,
  2064. "_level": 7,
  2065. "_components": [
  2066. {
  2067. "__id__": 69
  2068. }
  2069. ],
  2070. "_prefab": {
  2071. "__id__": 70
  2072. },
  2073. "_opacity": 255,
  2074. "_color": {
  2075. "__type__": "cc.Color",
  2076. "r": 255,
  2077. "g": 255,
  2078. "b": 255,
  2079. "a": 255
  2080. },
  2081. "_contentSize": {
  2082. "__type__": "cc.Size",
  2083. "width": 80,
  2084. "height": 43
  2085. },
  2086. "_anchorPoint": {
  2087. "__type__": "cc.Vec2",
  2088. "x": 0.5,
  2089. "y": 0.5
  2090. },
  2091. "_position": {
  2092. "__type__": "cc.Vec3",
  2093. "x": 0,
  2094. "y": -135.644,
  2095. "z": 0
  2096. },
  2097. "_scale": {
  2098. "__type__": "cc.Vec3",
  2099. "x": 1.5,
  2100. "y": 1.5,
  2101. "z": 1
  2102. },
  2103. "_eulerAngles": {
  2104. "__type__": "cc.Vec3",
  2105. "x": 0,
  2106. "y": 0,
  2107. "z": 0
  2108. },
  2109. "_skewX": 0,
  2110. "_skewY": 0,
  2111. "_is3DNode": false,
  2112. "groupIndex": 0,
  2113. "_id": ""
  2114. },
  2115. {
  2116. "__type__": "cc.Node",
  2117. "_name": "Background",
  2118. "_objFlags": 0,
  2119. "_parent": {
  2120. "__id__": 61
  2121. },
  2122. "_children": [
  2123. {
  2124. "__id__": 63
  2125. }
  2126. ],
  2127. "_active": true,
  2128. "_level": 2,
  2129. "_components": [
  2130. {
  2131. "__id__": 66
  2132. },
  2133. {
  2134. "__id__": 67
  2135. }
  2136. ],
  2137. "_prefab": {
  2138. "__id__": 68
  2139. },
  2140. "_opacity": 255,
  2141. "_color": {
  2142. "__type__": "cc.Color",
  2143. "r": 255,
  2144. "g": 255,
  2145. "b": 255,
  2146. "a": 255
  2147. },
  2148. "_contentSize": {
  2149. "__type__": "cc.Size",
  2150. "width": 80,
  2151. "height": 43
  2152. },
  2153. "_anchorPoint": {
  2154. "__type__": "cc.Vec2",
  2155. "x": 0.5,
  2156. "y": 0.5
  2157. },
  2158. "_position": {
  2159. "__type__": "cc.Vec3",
  2160. "x": 0,
  2161. "y": 0,
  2162. "z": 0
  2163. },
  2164. "_scale": {
  2165. "__type__": "cc.Vec3",
  2166. "x": 1,
  2167. "y": 1,
  2168. "z": 1
  2169. },
  2170. "_eulerAngles": {
  2171. "__type__": "cc.Vec3",
  2172. "x": 0,
  2173. "y": 0,
  2174. "z": 0
  2175. },
  2176. "_skewX": 0,
  2177. "_skewY": 0,
  2178. "_is3DNode": false,
  2179. "groupIndex": 0,
  2180. "_id": ""
  2181. },
  2182. {
  2183. "__type__": "cc.Node",
  2184. "_name": "Label",
  2185. "_objFlags": 0,
  2186. "_parent": {
  2187. "__id__": 62
  2188. },
  2189. "_children": [],
  2190. "_active": true,
  2191. "_level": 3,
  2192. "_components": [
  2193. {
  2194. "__id__": 64
  2195. }
  2196. ],
  2197. "_prefab": {
  2198. "__id__": 65
  2199. },
  2200. "_opacity": 255,
  2201. "_color": {
  2202. "__type__": "cc.Color",
  2203. "r": 0,
  2204. "g": 0,
  2205. "b": 0,
  2206. "a": 255
  2207. },
  2208. "_contentSize": {
  2209. "__type__": "cc.Size",
  2210. "width": 100,
  2211. "height": 40
  2212. },
  2213. "_anchorPoint": {
  2214. "__type__": "cc.Vec2",
  2215. "x": 0.5,
  2216. "y": 0.5
  2217. },
  2218. "_position": {
  2219. "__type__": "cc.Vec3",
  2220. "x": 0,
  2221. "y": 0,
  2222. "z": 0
  2223. },
  2224. "_scale": {
  2225. "__type__": "cc.Vec3",
  2226. "x": 1,
  2227. "y": 1,
  2228. "z": 1
  2229. },
  2230. "_eulerAngles": {
  2231. "__type__": "cc.Vec3",
  2232. "x": 0,
  2233. "y": 0,
  2234. "z": 0
  2235. },
  2236. "_skewX": 0,
  2237. "_skewY": 0,
  2238. "_is3DNode": false,
  2239. "groupIndex": 0,
  2240. "_id": ""
  2241. },
  2242. {
  2243. "__type__": "cc.Label",
  2244. "_name": "",
  2245. "_objFlags": 0,
  2246. "node": {
  2247. "__id__": 63
  2248. },
  2249. "_enabled": true,
  2250. "_materials": [
  2251. {
  2252. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2253. }
  2254. ],
  2255. "_useOriginalSize": false,
  2256. "_string": "",
  2257. "_N$string": "",
  2258. "_fontSize": 20,
  2259. "_lineHeight": 40,
  2260. "_enableWrapText": false,
  2261. "_N$file": null,
  2262. "_isSystemFontUsed": true,
  2263. "_spacingX": 0,
  2264. "_batchAsBitmap": false,
  2265. "_N$horizontalAlign": 1,
  2266. "_N$verticalAlign": 1,
  2267. "_N$fontFamily": "Arial",
  2268. "_N$overflow": 1,
  2269. "_N$cacheMode": 0,
  2270. "_id": ""
  2271. },
  2272. {
  2273. "__type__": "cc.PrefabInfo",
  2274. "root": {
  2275. "__id__": 1
  2276. },
  2277. "asset": {
  2278. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2279. },
  2280. "fileId": "55RD5IvEJGg7DL9tJS76iS",
  2281. "sync": false
  2282. },
  2283. {
  2284. "__type__": "cc.Sprite",
  2285. "_name": "",
  2286. "_objFlags": 0,
  2287. "node": {
  2288. "__id__": 62
  2289. },
  2290. "_enabled": true,
  2291. "_materials": [
  2292. {
  2293. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2294. }
  2295. ],
  2296. "_srcBlendFactor": 770,
  2297. "_dstBlendFactor": 771,
  2298. "_spriteFrame": {
  2299. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  2300. },
  2301. "_type": 1,
  2302. "_sizeMode": 0,
  2303. "_fillType": 0,
  2304. "_fillCenter": {
  2305. "__type__": "cc.Vec2",
  2306. "x": 0,
  2307. "y": 0
  2308. },
  2309. "_fillStart": 0,
  2310. "_fillRange": 0,
  2311. "_isTrimmedMode": true,
  2312. "_atlas": null,
  2313. "_id": ""
  2314. },
  2315. {
  2316. "__type__": "cc.Widget",
  2317. "_name": "",
  2318. "_objFlags": 0,
  2319. "node": {
  2320. "__id__": 62
  2321. },
  2322. "_enabled": true,
  2323. "alignMode": 0,
  2324. "_target": null,
  2325. "_alignFlags": 45,
  2326. "_left": 0,
  2327. "_right": 0,
  2328. "_top": 0,
  2329. "_bottom": 0,
  2330. "_verticalCenter": 0,
  2331. "_horizontalCenter": 0,
  2332. "_isAbsLeft": true,
  2333. "_isAbsRight": true,
  2334. "_isAbsTop": true,
  2335. "_isAbsBottom": true,
  2336. "_isAbsHorizontalCenter": true,
  2337. "_isAbsVerticalCenter": true,
  2338. "_originalWidth": 100,
  2339. "_originalHeight": 40,
  2340. "_id": ""
  2341. },
  2342. {
  2343. "__type__": "cc.PrefabInfo",
  2344. "root": {
  2345. "__id__": 1
  2346. },
  2347. "asset": {
  2348. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2349. },
  2350. "fileId": "3c6XHu44JJZIuow5q/FMSD",
  2351. "sync": false
  2352. },
  2353. {
  2354. "__type__": "cc.Button",
  2355. "_name": "",
  2356. "_objFlags": 0,
  2357. "node": {
  2358. "__id__": 61
  2359. },
  2360. "_enabled": true,
  2361. "duration": 0.1,
  2362. "zoomScale": 1.2,
  2363. "clickEvents": [
  2364. null
  2365. ],
  2366. "_N$interactable": true,
  2367. "_N$enableAutoGrayEffect": false,
  2368. "_N$transition": 2,
  2369. "transition": 2,
  2370. "_N$normalColor": {
  2371. "__type__": "cc.Color",
  2372. "r": 230,
  2373. "g": 230,
  2374. "b": 230,
  2375. "a": 255
  2376. },
  2377. "_N$pressedColor": {
  2378. "__type__": "cc.Color",
  2379. "r": 200,
  2380. "g": 200,
  2381. "b": 200,
  2382. "a": 255
  2383. },
  2384. "pressedColor": {
  2385. "__type__": "cc.Color",
  2386. "r": 200,
  2387. "g": 200,
  2388. "b": 200,
  2389. "a": 255
  2390. },
  2391. "_N$hoverColor": {
  2392. "__type__": "cc.Color",
  2393. "r": 255,
  2394. "g": 255,
  2395. "b": 255,
  2396. "a": 255
  2397. },
  2398. "hoverColor": {
  2399. "__type__": "cc.Color",
  2400. "r": 255,
  2401. "g": 255,
  2402. "b": 255,
  2403. "a": 255
  2404. },
  2405. "_N$disabledColor": {
  2406. "__type__": "cc.Color",
  2407. "r": 120,
  2408. "g": 120,
  2409. "b": 120,
  2410. "a": 200
  2411. },
  2412. "_N$normalSprite": {
  2413. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  2414. },
  2415. "_N$pressedSprite": {
  2416. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  2417. },
  2418. "pressedSprite": {
  2419. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  2420. },
  2421. "_N$hoverSprite": {
  2422. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  2423. },
  2424. "hoverSprite": {
  2425. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  2426. },
  2427. "_N$disabledSprite": {
  2428. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2429. },
  2430. "_N$target": {
  2431. "__id__": 62
  2432. },
  2433. "_id": ""
  2434. },
  2435. {
  2436. "__type__": "cc.PrefabInfo",
  2437. "root": {
  2438. "__id__": 1
  2439. },
  2440. "asset": {
  2441. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2442. },
  2443. "fileId": "ddbsXgTMFMwpgrgE4yxCLa",
  2444. "sync": false
  2445. },
  2446. {
  2447. "__type__": "cc.Sprite",
  2448. "_name": "",
  2449. "_objFlags": 0,
  2450. "node": {
  2451. "__id__": 6
  2452. },
  2453. "_enabled": true,
  2454. "_materials": [
  2455. {
  2456. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2457. }
  2458. ],
  2459. "_srcBlendFactor": 770,
  2460. "_dstBlendFactor": 771,
  2461. "_spriteFrame": {
  2462. "__uuid__": "6255e000-b232-46fd-9bb5-5b905fc61fe7"
  2463. },
  2464. "_type": 0,
  2465. "_sizeMode": 1,
  2466. "_fillType": 0,
  2467. "_fillCenter": {
  2468. "__type__": "cc.Vec2",
  2469. "x": 0,
  2470. "y": 0
  2471. },
  2472. "_fillStart": 0,
  2473. "_fillRange": 0,
  2474. "_isTrimmedMode": true,
  2475. "_atlas": null,
  2476. "_id": ""
  2477. },
  2478. {
  2479. "__type__": "cc.PrefabInfo",
  2480. "root": {
  2481. "__id__": 1
  2482. },
  2483. "asset": {
  2484. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2485. },
  2486. "fileId": "8cF5JSo/dJXoAASDqcRvOU",
  2487. "sync": false
  2488. },
  2489. {
  2490. "__type__": "60508qxsq5Ki5juXuLI5EVW",
  2491. "_name": "",
  2492. "_objFlags": 0,
  2493. "node": {
  2494. "__id__": 1
  2495. },
  2496. "_enabled": true,
  2497. "grantName": {
  2498. "__id__": 24
  2499. },
  2500. "amount": {
  2501. "__id__": 32
  2502. },
  2503. "describe": null,
  2504. "_id": ""
  2505. },
  2506. {
  2507. "__type__": "cc.PrefabInfo",
  2508. "root": {
  2509. "__id__": 1
  2510. },
  2511. "asset": {
  2512. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2513. },
  2514. "fileId": "48c3nexoRL/4DgOmPO3xVX",
  2515. "sync": false
  2516. }
  2517. ]