GrantPanel.prefab 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237
  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__": 96
  32. }
  33. ],
  34. "_prefab": {
  35. "__id__": 97
  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__": 41
  214. },
  215. {
  216. "__id__": 62
  217. },
  218. {
  219. "__id__": 83
  220. }
  221. ],
  222. "_active": true,
  223. "_level": 6,
  224. "_components": [
  225. {
  226. "__id__": 94
  227. }
  228. ],
  229. "_prefab": {
  230. "__id__": 95
  231. },
  232. "_opacity": 255,
  233. "_color": {
  234. "__type__": "cc.Color",
  235. "r": 255,
  236. "g": 255,
  237. "b": 255,
  238. "a": 255
  239. },
  240. "_contentSize": {
  241. "__type__": "cc.Size",
  242. "width": 594,
  243. "height": 538
  244. },
  245. "_anchorPoint": {
  246. "__type__": "cc.Vec2",
  247. "x": 0.5,
  248. "y": 0.5
  249. },
  250. "_position": {
  251. "__type__": "cc.Vec3",
  252. "x": 0,
  253. "y": 0,
  254. "z": 0
  255. },
  256. "_scale": {
  257. "__type__": "cc.Vec3",
  258. "x": 1,
  259. "y": 1,
  260. "z": 1
  261. },
  262. "_eulerAngles": {
  263. "__type__": "cc.Vec3",
  264. "x": 0,
  265. "y": 0,
  266. "z": 0
  267. },
  268. "_skewX": 0,
  269. "_skewY": 0,
  270. "_is3DNode": false,
  271. "groupIndex": 0,
  272. "_id": ""
  273. },
  274. {
  275. "__type__": "cc.Node",
  276. "_name": "TitleSprite",
  277. "_objFlags": 0,
  278. "_parent": {
  279. "__id__": 6
  280. },
  281. "_children": [],
  282. "_active": true,
  283. "_level": 7,
  284. "_components": [
  285. {
  286. "__id__": 8
  287. }
  288. ],
  289. "_prefab": {
  290. "__id__": 9
  291. },
  292. "_opacity": 255,
  293. "_color": {
  294. "__type__": "cc.Color",
  295. "r": 255,
  296. "g": 255,
  297. "b": 255,
  298. "a": 255
  299. },
  300. "_contentSize": {
  301. "__type__": "cc.Size",
  302. "width": 255,
  303. "height": 105
  304. },
  305. "_anchorPoint": {
  306. "__type__": "cc.Vec2",
  307. "x": 0.5,
  308. "y": 0.5
  309. },
  310. "_position": {
  311. "__type__": "cc.Vec3",
  312. "x": 10.564,
  313. "y": 190.146,
  314. "z": 0
  315. },
  316. "_scale": {
  317. "__type__": "cc.Vec3",
  318. "x": 1,
  319. "y": 1,
  320. "z": 1
  321. },
  322. "_eulerAngles": {
  323. "__type__": "cc.Vec3",
  324. "x": 0,
  325. "y": 0,
  326. "z": 0
  327. },
  328. "_skewX": 0,
  329. "_skewY": 0,
  330. "_is3DNode": false,
  331. "groupIndex": 0,
  332. "_id": ""
  333. },
  334. {
  335. "__type__": "cc.Sprite",
  336. "_name": "",
  337. "_objFlags": 0,
  338. "node": {
  339. "__id__": 7
  340. },
  341. "_enabled": true,
  342. "_materials": [
  343. {
  344. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  345. }
  346. ],
  347. "_srcBlendFactor": 770,
  348. "_dstBlendFactor": 771,
  349. "_spriteFrame": {
  350. "__uuid__": "2317ca51-d5e9-4438-8301-6b72bcb5556e"
  351. },
  352. "_type": 0,
  353. "_sizeMode": 1,
  354. "_fillType": 0,
  355. "_fillCenter": {
  356. "__type__": "cc.Vec2",
  357. "x": 0,
  358. "y": 0
  359. },
  360. "_fillStart": 0,
  361. "_fillRange": 0,
  362. "_isTrimmedMode": true,
  363. "_atlas": null,
  364. "_id": ""
  365. },
  366. {
  367. "__type__": "cc.PrefabInfo",
  368. "root": {
  369. "__id__": 1
  370. },
  371. "asset": {
  372. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  373. },
  374. "fileId": "bdcZy6nolJnJSOHjo2IC5O",
  375. "sync": false
  376. },
  377. {
  378. "__type__": "cc.Node",
  379. "_name": "CloseButton",
  380. "_objFlags": 0,
  381. "_parent": {
  382. "__id__": 6
  383. },
  384. "_children": [
  385. {
  386. "__id__": 11
  387. }
  388. ],
  389. "_active": true,
  390. "_level": 7,
  391. "_components": [
  392. {
  393. "__id__": 18
  394. }
  395. ],
  396. "_prefab": {
  397. "__id__": 20
  398. },
  399. "_opacity": 255,
  400. "_color": {
  401. "__type__": "cc.Color",
  402. "r": 255,
  403. "g": 255,
  404. "b": 255,
  405. "a": 255
  406. },
  407. "_contentSize": {
  408. "__type__": "cc.Size",
  409. "width": 93,
  410. "height": 93
  411. },
  412. "_anchorPoint": {
  413. "__type__": "cc.Vec2",
  414. "x": 0.5,
  415. "y": 0.5
  416. },
  417. "_position": {
  418. "__type__": "cc.Vec3",
  419. "x": 245.605,
  420. "y": 227.119,
  421. "z": 0
  422. },
  423. "_scale": {
  424. "__type__": "cc.Vec3",
  425. "x": 1,
  426. "y": 1,
  427. "z": 1
  428. },
  429. "_eulerAngles": {
  430. "__type__": "cc.Vec3",
  431. "x": 0,
  432. "y": 0,
  433. "z": 0
  434. },
  435. "_skewX": 0,
  436. "_skewY": 0,
  437. "_is3DNode": false,
  438. "groupIndex": 0,
  439. "_id": ""
  440. },
  441. {
  442. "__type__": "cc.Node",
  443. "_name": "Background",
  444. "_objFlags": 0,
  445. "_parent": {
  446. "__id__": 10
  447. },
  448. "_children": [
  449. {
  450. "__id__": 12
  451. }
  452. ],
  453. "_active": true,
  454. "_level": 2,
  455. "_components": [
  456. {
  457. "__id__": 15
  458. },
  459. {
  460. "__id__": 16
  461. }
  462. ],
  463. "_prefab": {
  464. "__id__": 17
  465. },
  466. "_opacity": 255,
  467. "_color": {
  468. "__type__": "cc.Color",
  469. "r": 255,
  470. "g": 255,
  471. "b": 255,
  472. "a": 255
  473. },
  474. "_contentSize": {
  475. "__type__": "cc.Size",
  476. "width": 93,
  477. "height": 93
  478. },
  479. "_anchorPoint": {
  480. "__type__": "cc.Vec2",
  481. "x": 0.5,
  482. "y": 0.5
  483. },
  484. "_position": {
  485. "__type__": "cc.Vec3",
  486. "x": 0,
  487. "y": 0,
  488. "z": 0
  489. },
  490. "_scale": {
  491. "__type__": "cc.Vec3",
  492. "x": 1,
  493. "y": 1,
  494. "z": 1
  495. },
  496. "_eulerAngles": {
  497. "__type__": "cc.Vec3",
  498. "x": 0,
  499. "y": 0,
  500. "z": 0
  501. },
  502. "_skewX": 0,
  503. "_skewY": 0,
  504. "_is3DNode": false,
  505. "groupIndex": 0,
  506. "_id": ""
  507. },
  508. {
  509. "__type__": "cc.Node",
  510. "_name": "Label",
  511. "_objFlags": 0,
  512. "_parent": {
  513. "__id__": 11
  514. },
  515. "_children": [],
  516. "_active": true,
  517. "_level": 3,
  518. "_components": [
  519. {
  520. "__id__": 13
  521. }
  522. ],
  523. "_prefab": {
  524. "__id__": 14
  525. },
  526. "_opacity": 255,
  527. "_color": {
  528. "__type__": "cc.Color",
  529. "r": 0,
  530. "g": 0,
  531. "b": 0,
  532. "a": 255
  533. },
  534. "_contentSize": {
  535. "__type__": "cc.Size",
  536. "width": 100,
  537. "height": 40
  538. },
  539. "_anchorPoint": {
  540. "__type__": "cc.Vec2",
  541. "x": 0.5,
  542. "y": 0.5
  543. },
  544. "_position": {
  545. "__type__": "cc.Vec3",
  546. "x": 0,
  547. "y": 0,
  548. "z": 0
  549. },
  550. "_scale": {
  551. "__type__": "cc.Vec3",
  552. "x": 1,
  553. "y": 1,
  554. "z": 1
  555. },
  556. "_eulerAngles": {
  557. "__type__": "cc.Vec3",
  558. "x": 0,
  559. "y": 0,
  560. "z": 0
  561. },
  562. "_skewX": 0,
  563. "_skewY": 0,
  564. "_is3DNode": false,
  565. "groupIndex": 0,
  566. "_id": ""
  567. },
  568. {
  569. "__type__": "cc.Label",
  570. "_name": "",
  571. "_objFlags": 0,
  572. "node": {
  573. "__id__": 12
  574. },
  575. "_enabled": true,
  576. "_materials": [
  577. {
  578. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  579. }
  580. ],
  581. "_useOriginalSize": false,
  582. "_string": "",
  583. "_N$string": "",
  584. "_fontSize": 20,
  585. "_lineHeight": 40,
  586. "_enableWrapText": false,
  587. "_N$file": null,
  588. "_isSystemFontUsed": true,
  589. "_spacingX": 0,
  590. "_batchAsBitmap": false,
  591. "_N$horizontalAlign": 1,
  592. "_N$verticalAlign": 1,
  593. "_N$fontFamily": "Arial",
  594. "_N$overflow": 1,
  595. "_N$cacheMode": 0,
  596. "_id": ""
  597. },
  598. {
  599. "__type__": "cc.PrefabInfo",
  600. "root": {
  601. "__id__": 1
  602. },
  603. "asset": {
  604. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  605. },
  606. "fileId": "e33FfISeBBR7FD4AGs1TVh",
  607. "sync": false
  608. },
  609. {
  610. "__type__": "cc.Sprite",
  611. "_name": "",
  612. "_objFlags": 0,
  613. "node": {
  614. "__id__": 11
  615. },
  616. "_enabled": true,
  617. "_materials": [
  618. {
  619. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  620. }
  621. ],
  622. "_srcBlendFactor": 770,
  623. "_dstBlendFactor": 771,
  624. "_spriteFrame": {
  625. "__uuid__": "60d0ea3b-b0a3-4544-84f0-48914bceb893"
  626. },
  627. "_type": 1,
  628. "_sizeMode": 0,
  629. "_fillType": 0,
  630. "_fillCenter": {
  631. "__type__": "cc.Vec2",
  632. "x": 0,
  633. "y": 0
  634. },
  635. "_fillStart": 0,
  636. "_fillRange": 0,
  637. "_isTrimmedMode": true,
  638. "_atlas": null,
  639. "_id": ""
  640. },
  641. {
  642. "__type__": "cc.Widget",
  643. "_name": "",
  644. "_objFlags": 0,
  645. "node": {
  646. "__id__": 11
  647. },
  648. "_enabled": true,
  649. "alignMode": 0,
  650. "_target": null,
  651. "_alignFlags": 45,
  652. "_left": 0,
  653. "_right": 0,
  654. "_top": 0,
  655. "_bottom": 0,
  656. "_verticalCenter": 0,
  657. "_horizontalCenter": 0,
  658. "_isAbsLeft": true,
  659. "_isAbsRight": true,
  660. "_isAbsTop": true,
  661. "_isAbsBottom": true,
  662. "_isAbsHorizontalCenter": true,
  663. "_isAbsVerticalCenter": true,
  664. "_originalWidth": 100,
  665. "_originalHeight": 40,
  666. "_id": ""
  667. },
  668. {
  669. "__type__": "cc.PrefabInfo",
  670. "root": {
  671. "__id__": 1
  672. },
  673. "asset": {
  674. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  675. },
  676. "fileId": "2aqjS0dDBKipWM9yKhorl0",
  677. "sync": false
  678. },
  679. {
  680. "__type__": "cc.Button",
  681. "_name": "",
  682. "_objFlags": 0,
  683. "node": {
  684. "__id__": 10
  685. },
  686. "_enabled": true,
  687. "duration": 0.1,
  688. "zoomScale": 1.2,
  689. "clickEvents": [
  690. {
  691. "__id__": 19
  692. }
  693. ],
  694. "_N$interactable": true,
  695. "_N$enableAutoGrayEffect": false,
  696. "_N$transition": 2,
  697. "transition": 2,
  698. "_N$normalColor": {
  699. "__type__": "cc.Color",
  700. "r": 230,
  701. "g": 230,
  702. "b": 230,
  703. "a": 255
  704. },
  705. "_N$pressedColor": {
  706. "__type__": "cc.Color",
  707. "r": 200,
  708. "g": 200,
  709. "b": 200,
  710. "a": 255
  711. },
  712. "pressedColor": {
  713. "__type__": "cc.Color",
  714. "r": 200,
  715. "g": 200,
  716. "b": 200,
  717. "a": 255
  718. },
  719. "_N$hoverColor": {
  720. "__type__": "cc.Color",
  721. "r": 255,
  722. "g": 255,
  723. "b": 255,
  724. "a": 255
  725. },
  726. "hoverColor": {
  727. "__type__": "cc.Color",
  728. "r": 255,
  729. "g": 255,
  730. "b": 255,
  731. "a": 255
  732. },
  733. "_N$disabledColor": {
  734. "__type__": "cc.Color",
  735. "r": 120,
  736. "g": 120,
  737. "b": 120,
  738. "a": 200
  739. },
  740. "_N$normalSprite": {
  741. "__uuid__": "60d0ea3b-b0a3-4544-84f0-48914bceb893"
  742. },
  743. "_N$pressedSprite": {
  744. "__uuid__": "eeb40e15-1216-4eda-8e33-7e1474c1ffbe"
  745. },
  746. "pressedSprite": {
  747. "__uuid__": "eeb40e15-1216-4eda-8e33-7e1474c1ffbe"
  748. },
  749. "_N$hoverSprite": {
  750. "__uuid__": "60d0ea3b-b0a3-4544-84f0-48914bceb893"
  751. },
  752. "hoverSprite": {
  753. "__uuid__": "60d0ea3b-b0a3-4544-84f0-48914bceb893"
  754. },
  755. "_N$disabledSprite": {
  756. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  757. },
  758. "_N$target": {
  759. "__id__": 11
  760. },
  761. "_id": ""
  762. },
  763. {
  764. "__type__": "cc.ClickEvent",
  765. "target": {
  766. "__id__": 1
  767. },
  768. "component": "",
  769. "_componentId": "60508qxsq5Ki5juXuLI5EVW",
  770. "handler": "onclose",
  771. "customEventData": ""
  772. },
  773. {
  774. "__type__": "cc.PrefabInfo",
  775. "root": {
  776. "__id__": 1
  777. },
  778. "asset": {
  779. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  780. },
  781. "fileId": "27eIzW13BGi5RzzmX4gIFo",
  782. "sync": false
  783. },
  784. {
  785. "__type__": "cc.Node",
  786. "_name": "BG1_sprite_splash",
  787. "_objFlags": 0,
  788. "_parent": {
  789. "__id__": 6
  790. },
  791. "_children": [
  792. {
  793. "__id__": 22
  794. },
  795. {
  796. "__id__": 30
  797. }
  798. ],
  799. "_active": true,
  800. "_level": 7,
  801. "_components": [
  802. {
  803. "__id__": 38
  804. },
  805. {
  806. "__id__": 39
  807. }
  808. ],
  809. "_prefab": {
  810. "__id__": 40
  811. },
  812. "_opacity": 255,
  813. "_color": {
  814. "__type__": "cc.Color",
  815. "r": 228,
  816. "g": 244,
  817. "b": 249,
  818. "a": 255
  819. },
  820. "_contentSize": {
  821. "__type__": "cc.Size",
  822. "width": 450,
  823. "height": 150
  824. },
  825. "_anchorPoint": {
  826. "__type__": "cc.Vec2",
  827. "x": 0.5,
  828. "y": 0.5
  829. },
  830. "_position": {
  831. "__type__": "cc.Vec3",
  832. "x": 0,
  833. "y": 69.198,
  834. "z": 0
  835. },
  836. "_scale": {
  837. "__type__": "cc.Vec3",
  838. "x": 1,
  839. "y": 1,
  840. "z": 1
  841. },
  842. "_eulerAngles": {
  843. "__type__": "cc.Vec3",
  844. "x": 0,
  845. "y": 0,
  846. "z": 0
  847. },
  848. "_skewX": 0,
  849. "_skewY": 0,
  850. "_is3DNode": false,
  851. "groupIndex": 0,
  852. "_id": ""
  853. },
  854. {
  855. "__type__": "cc.Node",
  856. "_name": "NameLabel",
  857. "_objFlags": 0,
  858. "_parent": {
  859. "__id__": 21
  860. },
  861. "_children": [
  862. {
  863. "__id__": 23
  864. }
  865. ],
  866. "_active": true,
  867. "_level": 8,
  868. "_components": [
  869. {
  870. "__id__": 27
  871. },
  872. {
  873. "__id__": 28
  874. }
  875. ],
  876. "_prefab": {
  877. "__id__": 29
  878. },
  879. "_opacity": 255,
  880. "_color": {
  881. "__type__": "cc.Color",
  882. "r": 42,
  883. "g": 155,
  884. "b": 200,
  885. "a": 255
  886. },
  887. "_contentSize": {
  888. "__type__": "cc.Size",
  889. "width": 152,
  890. "height": 39.8
  891. },
  892. "_anchorPoint": {
  893. "__type__": "cc.Vec2",
  894. "x": 0.5,
  895. "y": 0.5
  896. },
  897. "_position": {
  898. "__type__": "cc.Vec3",
  899. "x": -132.046,
  900. "y": 35.1,
  901. "z": 0
  902. },
  903. "_scale": {
  904. "__type__": "cc.Vec3",
  905. "x": 1,
  906. "y": 1,
  907. "z": 1
  908. },
  909. "_eulerAngles": {
  910. "__type__": "cc.Vec3",
  911. "x": 0,
  912. "y": 0,
  913. "z": 0
  914. },
  915. "_skewX": 0,
  916. "_skewY": 0,
  917. "_is3DNode": false,
  918. "groupIndex": 0,
  919. "_id": ""
  920. },
  921. {
  922. "__type__": "cc.Node",
  923. "_name": "label",
  924. "_objFlags": 0,
  925. "_parent": {
  926. "__id__": 22
  927. },
  928. "_children": [],
  929. "_active": true,
  930. "_level": 9,
  931. "_components": [
  932. {
  933. "__id__": 24
  934. },
  935. {
  936. "__id__": 25
  937. }
  938. ],
  939. "_prefab": {
  940. "__id__": 26
  941. },
  942. "_opacity": 255,
  943. "_color": {
  944. "__type__": "cc.Color",
  945. "r": 255,
  946. "g": 137,
  947. "b": 165,
  948. "a": 255
  949. },
  950. "_contentSize": {
  951. "__type__": "cc.Size",
  952. "width": 82,
  953. "height": 52.4
  954. },
  955. "_anchorPoint": {
  956. "__type__": "cc.Vec2",
  957. "x": 0.5,
  958. "y": 0.5
  959. },
  960. "_position": {
  961. "__type__": "cc.Vec3",
  962. "x": 137.328,
  963. "y": 0,
  964. "z": 0
  965. },
  966. "_scale": {
  967. "__type__": "cc.Vec3",
  968. "x": 1,
  969. "y": 1,
  970. "z": 1
  971. },
  972. "_eulerAngles": {
  973. "__type__": "cc.Vec3",
  974. "x": 0,
  975. "y": 0,
  976. "z": 0
  977. },
  978. "_skewX": 0,
  979. "_skewY": 0,
  980. "_is3DNode": false,
  981. "groupIndex": 0,
  982. "_id": ""
  983. },
  984. {
  985. "__type__": "cc.Label",
  986. "_name": "",
  987. "_objFlags": 0,
  988. "node": {
  989. "__id__": 23
  990. },
  991. "_enabled": true,
  992. "_materials": [
  993. {
  994. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  995. }
  996. ],
  997. "_useOriginalSize": false,
  998. "_string": "白菜",
  999. "_N$string": "白菜",
  1000. "_fontSize": 40,
  1001. "_lineHeight": 40,
  1002. "_enableWrapText": true,
  1003. "_N$file": null,
  1004. "_isSystemFontUsed": true,
  1005. "_spacingX": 0,
  1006. "_batchAsBitmap": false,
  1007. "_N$horizontalAlign": 0,
  1008. "_N$verticalAlign": 1,
  1009. "_N$fontFamily": "Arial",
  1010. "_N$overflow": 0,
  1011. "_N$cacheMode": 0,
  1012. "_id": ""
  1013. },
  1014. {
  1015. "__type__": "cc.LabelOutline",
  1016. "_name": "",
  1017. "_objFlags": 0,
  1018. "node": {
  1019. "__id__": 23
  1020. },
  1021. "_enabled": true,
  1022. "_color": {
  1023. "__type__": "cc.Color",
  1024. "r": 255,
  1025. "g": 137,
  1026. "b": 165,
  1027. "a": 255
  1028. },
  1029. "_width": 1,
  1030. "_id": ""
  1031. },
  1032. {
  1033. "__type__": "cc.PrefabInfo",
  1034. "root": {
  1035. "__id__": 1
  1036. },
  1037. "asset": {
  1038. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1039. },
  1040. "fileId": "fchZnh+e9MEba8h6L8oLfK",
  1041. "sync": false
  1042. },
  1043. {
  1044. "__type__": "cc.Label",
  1045. "_name": "",
  1046. "_objFlags": 0,
  1047. "node": {
  1048. "__id__": 22
  1049. },
  1050. "_enabled": true,
  1051. "_materials": [
  1052. {
  1053. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1054. }
  1055. ],
  1056. "_useOriginalSize": false,
  1057. "_string": "果实名称:",
  1058. "_N$string": "果实名称:",
  1059. "_fontSize": 30,
  1060. "_lineHeight": 30,
  1061. "_enableWrapText": true,
  1062. "_N$file": null,
  1063. "_isSystemFontUsed": true,
  1064. "_spacingX": 0,
  1065. "_batchAsBitmap": false,
  1066. "_N$horizontalAlign": 1,
  1067. "_N$verticalAlign": 1,
  1068. "_N$fontFamily": "Arial",
  1069. "_N$overflow": 0,
  1070. "_N$cacheMode": 0,
  1071. "_id": ""
  1072. },
  1073. {
  1074. "__type__": "cc.LabelOutline",
  1075. "_name": "",
  1076. "_objFlags": 0,
  1077. "node": {
  1078. "__id__": 22
  1079. },
  1080. "_enabled": true,
  1081. "_color": {
  1082. "__type__": "cc.Color",
  1083. "r": 42,
  1084. "g": 155,
  1085. "b": 200,
  1086. "a": 255
  1087. },
  1088. "_width": 1,
  1089. "_id": ""
  1090. },
  1091. {
  1092. "__type__": "cc.PrefabInfo",
  1093. "root": {
  1094. "__id__": 1
  1095. },
  1096. "asset": {
  1097. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1098. },
  1099. "fileId": "b9l+XYmoxLqZ5YtVEWrPry",
  1100. "sync": false
  1101. },
  1102. {
  1103. "__type__": "cc.Node",
  1104. "_name": "NumLabel",
  1105. "_objFlags": 0,
  1106. "_parent": {
  1107. "__id__": 21
  1108. },
  1109. "_children": [
  1110. {
  1111. "__id__": 31
  1112. }
  1113. ],
  1114. "_active": true,
  1115. "_level": 8,
  1116. "_components": [
  1117. {
  1118. "__id__": 35
  1119. },
  1120. {
  1121. "__id__": 36
  1122. }
  1123. ],
  1124. "_prefab": {
  1125. "__id__": 37
  1126. },
  1127. "_opacity": 255,
  1128. "_color": {
  1129. "__type__": "cc.Color",
  1130. "r": 42,
  1131. "g": 155,
  1132. "b": 200,
  1133. "a": 255
  1134. },
  1135. "_contentSize": {
  1136. "__type__": "cc.Size",
  1137. "width": 122,
  1138. "height": 39.8
  1139. },
  1140. "_anchorPoint": {
  1141. "__type__": "cc.Vec2",
  1142. "x": 0.5,
  1143. "y": 0.5
  1144. },
  1145. "_position": {
  1146. "__type__": "cc.Vec3",
  1147. "x": -132.046,
  1148. "y": -24.699999999999996,
  1149. "z": 0
  1150. },
  1151. "_scale": {
  1152. "__type__": "cc.Vec3",
  1153. "x": 1,
  1154. "y": 1,
  1155. "z": 1
  1156. },
  1157. "_eulerAngles": {
  1158. "__type__": "cc.Vec3",
  1159. "x": 0,
  1160. "y": 0,
  1161. "z": 0
  1162. },
  1163. "_skewX": 0,
  1164. "_skewY": 0,
  1165. "_is3DNode": false,
  1166. "groupIndex": 0,
  1167. "_id": ""
  1168. },
  1169. {
  1170. "__type__": "cc.Node",
  1171. "_name": "label",
  1172. "_objFlags": 0,
  1173. "_parent": {
  1174. "__id__": 30
  1175. },
  1176. "_children": [],
  1177. "_active": true,
  1178. "_level": 9,
  1179. "_components": [
  1180. {
  1181. "__id__": 32
  1182. },
  1183. {
  1184. "__id__": 33
  1185. }
  1186. ],
  1187. "_prefab": {
  1188. "__id__": 34
  1189. },
  1190. "_opacity": 255,
  1191. "_color": {
  1192. "__type__": "cc.Color",
  1193. "r": 255,
  1194. "g": 137,
  1195. "b": 165,
  1196. "a": 255
  1197. },
  1198. "_contentSize": {
  1199. "__type__": "cc.Size",
  1200. "width": 68.74,
  1201. "height": 52.4
  1202. },
  1203. "_anchorPoint": {
  1204. "__type__": "cc.Vec2",
  1205. "x": 0.5,
  1206. "y": 0.5
  1207. },
  1208. "_position": {
  1209. "__type__": "cc.Vec3",
  1210. "x": 137.328,
  1211. "y": 0,
  1212. "z": 0
  1213. },
  1214. "_scale": {
  1215. "__type__": "cc.Vec3",
  1216. "x": 1,
  1217. "y": 1,
  1218. "z": 1
  1219. },
  1220. "_eulerAngles": {
  1221. "__type__": "cc.Vec3",
  1222. "x": 0,
  1223. "y": 0,
  1224. "z": 0
  1225. },
  1226. "_skewX": 0,
  1227. "_skewY": 0,
  1228. "_is3DNode": false,
  1229. "groupIndex": 0,
  1230. "_id": ""
  1231. },
  1232. {
  1233. "__type__": "cc.Label",
  1234. "_name": "",
  1235. "_objFlags": 0,
  1236. "node": {
  1237. "__id__": 31
  1238. },
  1239. "_enabled": true,
  1240. "_materials": [
  1241. {
  1242. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1243. }
  1244. ],
  1245. "_useOriginalSize": false,
  1246. "_string": "100",
  1247. "_N$string": "100",
  1248. "_fontSize": 40,
  1249. "_lineHeight": 40,
  1250. "_enableWrapText": true,
  1251. "_N$file": null,
  1252. "_isSystemFontUsed": true,
  1253. "_spacingX": 0,
  1254. "_batchAsBitmap": false,
  1255. "_N$horizontalAlign": 0,
  1256. "_N$verticalAlign": 1,
  1257. "_N$fontFamily": "Arial",
  1258. "_N$overflow": 0,
  1259. "_N$cacheMode": 0,
  1260. "_id": ""
  1261. },
  1262. {
  1263. "__type__": "cc.LabelOutline",
  1264. "_name": "",
  1265. "_objFlags": 0,
  1266. "node": {
  1267. "__id__": 31
  1268. },
  1269. "_enabled": true,
  1270. "_color": {
  1271. "__type__": "cc.Color",
  1272. "r": 255,
  1273. "g": 137,
  1274. "b": 165,
  1275. "a": 255
  1276. },
  1277. "_width": 1,
  1278. "_id": ""
  1279. },
  1280. {
  1281. "__type__": "cc.PrefabInfo",
  1282. "root": {
  1283. "__id__": 1
  1284. },
  1285. "asset": {
  1286. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1287. },
  1288. "fileId": "c7y4oF23xC8ZA1ZXAUUvrn",
  1289. "sync": false
  1290. },
  1291. {
  1292. "__type__": "cc.Label",
  1293. "_name": "",
  1294. "_objFlags": 0,
  1295. "node": {
  1296. "__id__": 30
  1297. },
  1298. "_enabled": true,
  1299. "_materials": [
  1300. {
  1301. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1302. }
  1303. ],
  1304. "_useOriginalSize": false,
  1305. "_string": "总数量:",
  1306. "_N$string": "总数量:",
  1307. "_fontSize": 30,
  1308. "_lineHeight": 30,
  1309. "_enableWrapText": true,
  1310. "_N$file": null,
  1311. "_isSystemFontUsed": true,
  1312. "_spacingX": 0,
  1313. "_batchAsBitmap": false,
  1314. "_N$horizontalAlign": 1,
  1315. "_N$verticalAlign": 1,
  1316. "_N$fontFamily": "Arial",
  1317. "_N$overflow": 0,
  1318. "_N$cacheMode": 0,
  1319. "_id": ""
  1320. },
  1321. {
  1322. "__type__": "cc.LabelOutline",
  1323. "_name": "",
  1324. "_objFlags": 0,
  1325. "node": {
  1326. "__id__": 30
  1327. },
  1328. "_enabled": true,
  1329. "_color": {
  1330. "__type__": "cc.Color",
  1331. "r": 42,
  1332. "g": 155,
  1333. "b": 200,
  1334. "a": 255
  1335. },
  1336. "_width": 1,
  1337. "_id": ""
  1338. },
  1339. {
  1340. "__type__": "cc.PrefabInfo",
  1341. "root": {
  1342. "__id__": 1
  1343. },
  1344. "asset": {
  1345. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1346. },
  1347. "fileId": "eeV3SO7DxHqoHZq2xBYJv8",
  1348. "sync": false
  1349. },
  1350. {
  1351. "__type__": "cc.Sprite",
  1352. "_name": "",
  1353. "_objFlags": 0,
  1354. "node": {
  1355. "__id__": 21
  1356. },
  1357. "_enabled": true,
  1358. "_materials": [
  1359. {
  1360. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1361. }
  1362. ],
  1363. "_srcBlendFactor": 770,
  1364. "_dstBlendFactor": 771,
  1365. "_spriteFrame": {
  1366. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1367. },
  1368. "_type": 0,
  1369. "_sizeMode": 0,
  1370. "_fillType": 0,
  1371. "_fillCenter": {
  1372. "__type__": "cc.Vec2",
  1373. "x": 0,
  1374. "y": 0
  1375. },
  1376. "_fillStart": 0,
  1377. "_fillRange": 0,
  1378. "_isTrimmedMode": true,
  1379. "_atlas": null,
  1380. "_id": ""
  1381. },
  1382. {
  1383. "__type__": "cc.Layout",
  1384. "_name": "",
  1385. "_objFlags": 0,
  1386. "node": {
  1387. "__id__": 21
  1388. },
  1389. "_enabled": true,
  1390. "_layoutSize": {
  1391. "__type__": "cc.Size",
  1392. "width": 300,
  1393. "height": 200
  1394. },
  1395. "_resize": 0,
  1396. "_N$layoutType": 2,
  1397. "_N$padding": 0,
  1398. "_N$cellSize": {
  1399. "__type__": "cc.Size",
  1400. "width": 40,
  1401. "height": 40
  1402. },
  1403. "_N$startAxis": 0,
  1404. "_N$paddingLeft": 0,
  1405. "_N$paddingRight": 0,
  1406. "_N$paddingTop": 20,
  1407. "_N$paddingBottom": 0,
  1408. "_N$spacingX": 0,
  1409. "_N$spacingY": 20,
  1410. "_N$verticalDirection": 1,
  1411. "_N$horizontalDirection": 0,
  1412. "_N$affectedByScale": false,
  1413. "_id": ""
  1414. },
  1415. {
  1416. "__type__": "cc.PrefabInfo",
  1417. "root": {
  1418. "__id__": 1
  1419. },
  1420. "asset": {
  1421. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1422. },
  1423. "fileId": "59VgicJb9Nu4/s5Su7vhqw",
  1424. "sync": false
  1425. },
  1426. {
  1427. "__type__": "cc.Node",
  1428. "_name": "AddressLabel",
  1429. "_objFlags": 0,
  1430. "_parent": {
  1431. "__id__": 6
  1432. },
  1433. "_children": [
  1434. {
  1435. "__id__": 42
  1436. }
  1437. ],
  1438. "_active": true,
  1439. "_level": 7,
  1440. "_components": [
  1441. {
  1442. "__id__": 59
  1443. },
  1444. {
  1445. "__id__": 60
  1446. }
  1447. ],
  1448. "_prefab": {
  1449. "__id__": 61
  1450. },
  1451. "_opacity": 255,
  1452. "_color": {
  1453. "__type__": "cc.Color",
  1454. "r": 42,
  1455. "g": 155,
  1456. "b": 200,
  1457. "a": 255
  1458. },
  1459. "_contentSize": {
  1460. "__type__": "cc.Size",
  1461. "width": 152,
  1462. "height": 39.8
  1463. },
  1464. "_anchorPoint": {
  1465. "__type__": "cc.Vec2",
  1466. "x": 0.5,
  1467. "y": 0.5
  1468. },
  1469. "_position": {
  1470. "__type__": "cc.Vec3",
  1471. "x": -132.046,
  1472. "y": -41.261,
  1473. "z": 0
  1474. },
  1475. "_scale": {
  1476. "__type__": "cc.Vec3",
  1477. "x": 1,
  1478. "y": 1,
  1479. "z": 1
  1480. },
  1481. "_eulerAngles": {
  1482. "__type__": "cc.Vec3",
  1483. "x": 0,
  1484. "y": 0,
  1485. "z": 0
  1486. },
  1487. "_skewX": 0,
  1488. "_skewY": 0,
  1489. "_is3DNode": false,
  1490. "groupIndex": 0,
  1491. "_id": ""
  1492. },
  1493. {
  1494. "__type__": "cc.Node",
  1495. "_name": "editbox",
  1496. "_objFlags": 0,
  1497. "_parent": {
  1498. "__id__": 41
  1499. },
  1500. "_children": [
  1501. {
  1502. "__id__": 43
  1503. },
  1504. {
  1505. "__id__": 47
  1506. },
  1507. {
  1508. "__id__": 52
  1509. }
  1510. ],
  1511. "_active": true,
  1512. "_level": 7,
  1513. "_components": [
  1514. {
  1515. "__id__": 56
  1516. }
  1517. ],
  1518. "_prefab": {
  1519. "__id__": 58
  1520. },
  1521. "_opacity": 255,
  1522. "_color": {
  1523. "__type__": "cc.Color",
  1524. "r": 228,
  1525. "g": 244,
  1526. "b": 249,
  1527. "a": 255
  1528. },
  1529. "_contentSize": {
  1530. "__type__": "cc.Size",
  1531. "width": 160,
  1532. "height": 40
  1533. },
  1534. "_anchorPoint": {
  1535. "__type__": "cc.Vec2",
  1536. "x": 0.5,
  1537. "y": 0.5
  1538. },
  1539. "_position": {
  1540. "__type__": "cc.Vec3",
  1541. "x": 156.336,
  1542. "y": 0,
  1543. "z": 0
  1544. },
  1545. "_scale": {
  1546. "__type__": "cc.Vec3",
  1547. "x": 1,
  1548. "y": 1,
  1549. "z": 1
  1550. },
  1551. "_eulerAngles": {
  1552. "__type__": "cc.Vec3",
  1553. "x": 0,
  1554. "y": 0,
  1555. "z": 0
  1556. },
  1557. "_skewX": 0,
  1558. "_skewY": 0,
  1559. "_is3DNode": false,
  1560. "groupIndex": 0,
  1561. "_id": ""
  1562. },
  1563. {
  1564. "__type__": "cc.Node",
  1565. "_name": "BACKGROUND_SPRITE",
  1566. "_objFlags": 0,
  1567. "_parent": {
  1568. "__id__": 42
  1569. },
  1570. "_children": [],
  1571. "_active": true,
  1572. "_level": 2,
  1573. "_components": [
  1574. {
  1575. "__id__": 44
  1576. },
  1577. {
  1578. "__id__": 45
  1579. }
  1580. ],
  1581. "_prefab": {
  1582. "__id__": 46
  1583. },
  1584. "_opacity": 255,
  1585. "_color": {
  1586. "__type__": "cc.Color",
  1587. "r": 228,
  1588. "g": 244,
  1589. "b": 249,
  1590. "a": 255
  1591. },
  1592. "_contentSize": {
  1593. "__type__": "cc.Size",
  1594. "width": 160,
  1595. "height": 40
  1596. },
  1597. "_anchorPoint": {
  1598. "__type__": "cc.Vec2",
  1599. "x": 0.5,
  1600. "y": 0.5
  1601. },
  1602. "_position": {
  1603. "__type__": "cc.Vec3",
  1604. "x": 0,
  1605. "y": 0,
  1606. "z": 0
  1607. },
  1608. "_scale": {
  1609. "__type__": "cc.Vec3",
  1610. "x": 1,
  1611. "y": 1,
  1612. "z": 1
  1613. },
  1614. "_eulerAngles": {
  1615. "__type__": "cc.Vec3",
  1616. "x": 0,
  1617. "y": 0,
  1618. "z": 0
  1619. },
  1620. "_skewX": 0,
  1621. "_skewY": 0,
  1622. "_is3DNode": false,
  1623. "groupIndex": 0,
  1624. "_id": ""
  1625. },
  1626. {
  1627. "__type__": "cc.Sprite",
  1628. "_name": "",
  1629. "_objFlags": 0,
  1630. "node": {
  1631. "__id__": 43
  1632. },
  1633. "_enabled": true,
  1634. "_materials": [
  1635. {
  1636. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1637. }
  1638. ],
  1639. "_srcBlendFactor": 770,
  1640. "_dstBlendFactor": 771,
  1641. "_spriteFrame": {
  1642. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1643. },
  1644. "_type": 0,
  1645. "_sizeMode": 0,
  1646. "_fillType": 0,
  1647. "_fillCenter": {
  1648. "__type__": "cc.Vec2",
  1649. "x": 0,
  1650. "y": 0
  1651. },
  1652. "_fillStart": 0,
  1653. "_fillRange": 0,
  1654. "_isTrimmedMode": true,
  1655. "_atlas": null,
  1656. "_id": ""
  1657. },
  1658. {
  1659. "__type__": "cc.Widget",
  1660. "_name": "",
  1661. "_objFlags": 0,
  1662. "node": {
  1663. "__id__": 43
  1664. },
  1665. "_enabled": true,
  1666. "alignMode": 0,
  1667. "_target": null,
  1668. "_alignFlags": 45,
  1669. "_left": 0,
  1670. "_right": 0,
  1671. "_top": 0,
  1672. "_bottom": 0,
  1673. "_verticalCenter": 0,
  1674. "_horizontalCenter": 0,
  1675. "_isAbsLeft": true,
  1676. "_isAbsRight": true,
  1677. "_isAbsTop": true,
  1678. "_isAbsBottom": true,
  1679. "_isAbsHorizontalCenter": true,
  1680. "_isAbsVerticalCenter": true,
  1681. "_originalWidth": 160,
  1682. "_originalHeight": 40,
  1683. "_id": ""
  1684. },
  1685. {
  1686. "__type__": "cc.PrefabInfo",
  1687. "root": {
  1688. "__id__": 1
  1689. },
  1690. "asset": {
  1691. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1692. },
  1693. "fileId": "c0BhAnVVlH3LB4AJQ6KPmj",
  1694. "sync": false
  1695. },
  1696. {
  1697. "__type__": "cc.Node",
  1698. "_name": "TEXT_LABEL",
  1699. "_objFlags": 0,
  1700. "_parent": {
  1701. "__id__": 42
  1702. },
  1703. "_children": [],
  1704. "_active": false,
  1705. "_level": 2,
  1706. "_components": [
  1707. {
  1708. "__id__": 48
  1709. },
  1710. {
  1711. "__id__": 49
  1712. },
  1713. {
  1714. "__id__": 50
  1715. }
  1716. ],
  1717. "_prefab": {
  1718. "__id__": 51
  1719. },
  1720. "_opacity": 255,
  1721. "_color": {
  1722. "__type__": "cc.Color",
  1723. "r": 129,
  1724. "g": 180,
  1725. "b": 200,
  1726. "a": 255
  1727. },
  1728. "_contentSize": {
  1729. "__type__": "cc.Size",
  1730. "width": 158,
  1731. "height": 40
  1732. },
  1733. "_anchorPoint": {
  1734. "__type__": "cc.Vec2",
  1735. "x": 0,
  1736. "y": 1
  1737. },
  1738. "_position": {
  1739. "__type__": "cc.Vec3",
  1740. "x": -78,
  1741. "y": 20,
  1742. "z": 0
  1743. },
  1744. "_scale": {
  1745. "__type__": "cc.Vec3",
  1746. "x": 1,
  1747. "y": 1,
  1748. "z": 1
  1749. },
  1750. "_eulerAngles": {
  1751. "__type__": "cc.Vec3",
  1752. "x": 0,
  1753. "y": 0,
  1754. "z": 0
  1755. },
  1756. "_skewX": 0,
  1757. "_skewY": 0,
  1758. "_is3DNode": false,
  1759. "groupIndex": 0,
  1760. "_id": ""
  1761. },
  1762. {
  1763. "__type__": "cc.Label",
  1764. "_name": "",
  1765. "_objFlags": 0,
  1766. "node": {
  1767. "__id__": 47
  1768. },
  1769. "_enabled": true,
  1770. "_materials": [],
  1771. "_useOriginalSize": true,
  1772. "_string": "",
  1773. "_N$string": "",
  1774. "_fontSize": 20,
  1775. "_lineHeight": 25,
  1776. "_enableWrapText": true,
  1777. "_N$file": null,
  1778. "_isSystemFontUsed": true,
  1779. "_spacingX": 0,
  1780. "_batchAsBitmap": false,
  1781. "_N$horizontalAlign": 0,
  1782. "_N$verticalAlign": 0,
  1783. "_N$fontFamily": "Arial",
  1784. "_N$overflow": 1,
  1785. "_N$cacheMode": 0,
  1786. "_id": ""
  1787. },
  1788. {
  1789. "__type__": "cc.Widget",
  1790. "_name": "",
  1791. "_objFlags": 0,
  1792. "node": {
  1793. "__id__": 47
  1794. },
  1795. "_enabled": true,
  1796. "alignMode": 0,
  1797. "_target": null,
  1798. "_alignFlags": 45,
  1799. "_left": 2,
  1800. "_right": 0,
  1801. "_top": 0,
  1802. "_bottom": 0,
  1803. "_verticalCenter": 0,
  1804. "_horizontalCenter": 0,
  1805. "_isAbsLeft": true,
  1806. "_isAbsRight": true,
  1807. "_isAbsTop": true,
  1808. "_isAbsBottom": true,
  1809. "_isAbsHorizontalCenter": true,
  1810. "_isAbsVerticalCenter": true,
  1811. "_originalWidth": 158,
  1812. "_originalHeight": 40,
  1813. "_id": ""
  1814. },
  1815. {
  1816. "__type__": "cc.LabelOutline",
  1817. "_name": "",
  1818. "_objFlags": 0,
  1819. "node": {
  1820. "__id__": 47
  1821. },
  1822. "_enabled": true,
  1823. "_color": {
  1824. "__type__": "cc.Color",
  1825. "r": 255,
  1826. "g": 137,
  1827. "b": 165,
  1828. "a": 255
  1829. },
  1830. "_width": 1,
  1831. "_id": ""
  1832. },
  1833. {
  1834. "__type__": "cc.PrefabInfo",
  1835. "root": {
  1836. "__id__": 1
  1837. },
  1838. "asset": {
  1839. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1840. },
  1841. "fileId": "d0Jsow5pdPpq/IafUZbJm3",
  1842. "sync": false
  1843. },
  1844. {
  1845. "__type__": "cc.Node",
  1846. "_name": "PLACEHOLDER_LABEL",
  1847. "_objFlags": 0,
  1848. "_parent": {
  1849. "__id__": 42
  1850. },
  1851. "_children": [],
  1852. "_active": true,
  1853. "_level": 2,
  1854. "_components": [
  1855. {
  1856. "__id__": 53
  1857. },
  1858. {
  1859. "__id__": 54
  1860. }
  1861. ],
  1862. "_prefab": {
  1863. "__id__": 55
  1864. },
  1865. "_opacity": 255,
  1866. "_color": {
  1867. "__type__": "cc.Color",
  1868. "r": 129,
  1869. "g": 180,
  1870. "b": 200,
  1871. "a": 255
  1872. },
  1873. "_contentSize": {
  1874. "__type__": "cc.Size",
  1875. "width": 158,
  1876. "height": 40
  1877. },
  1878. "_anchorPoint": {
  1879. "__type__": "cc.Vec2",
  1880. "x": 0,
  1881. "y": 1
  1882. },
  1883. "_position": {
  1884. "__type__": "cc.Vec3",
  1885. "x": -78,
  1886. "y": 20,
  1887. "z": 0
  1888. },
  1889. "_scale": {
  1890. "__type__": "cc.Vec3",
  1891. "x": 1,
  1892. "y": 1,
  1893. "z": 1
  1894. },
  1895. "_eulerAngles": {
  1896. "__type__": "cc.Vec3",
  1897. "x": 0,
  1898. "y": 0,
  1899. "z": 0
  1900. },
  1901. "_skewX": 0,
  1902. "_skewY": 0,
  1903. "_is3DNode": false,
  1904. "groupIndex": 0,
  1905. "_id": ""
  1906. },
  1907. {
  1908. "__type__": "cc.Label",
  1909. "_name": "",
  1910. "_objFlags": 0,
  1911. "node": {
  1912. "__id__": 52
  1913. },
  1914. "_enabled": true,
  1915. "_materials": [
  1916. {
  1917. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1918. }
  1919. ],
  1920. "_useOriginalSize": true,
  1921. "_string": "输入钱包地址",
  1922. "_N$string": "输入钱包地址",
  1923. "_fontSize": 20,
  1924. "_lineHeight": 40,
  1925. "_enableWrapText": true,
  1926. "_N$file": null,
  1927. "_isSystemFontUsed": true,
  1928. "_spacingX": 0,
  1929. "_batchAsBitmap": false,
  1930. "_N$horizontalAlign": 0,
  1931. "_N$verticalAlign": 1,
  1932. "_N$fontFamily": "Arial",
  1933. "_N$overflow": 1,
  1934. "_N$cacheMode": 0,
  1935. "_id": ""
  1936. },
  1937. {
  1938. "__type__": "cc.Widget",
  1939. "_name": "",
  1940. "_objFlags": 0,
  1941. "node": {
  1942. "__id__": 52
  1943. },
  1944. "_enabled": true,
  1945. "alignMode": 0,
  1946. "_target": null,
  1947. "_alignFlags": 45,
  1948. "_left": 2,
  1949. "_right": 0,
  1950. "_top": 0,
  1951. "_bottom": 0,
  1952. "_verticalCenter": 0,
  1953. "_horizontalCenter": 0,
  1954. "_isAbsLeft": true,
  1955. "_isAbsRight": true,
  1956. "_isAbsTop": true,
  1957. "_isAbsBottom": true,
  1958. "_isAbsHorizontalCenter": true,
  1959. "_isAbsVerticalCenter": true,
  1960. "_originalWidth": 158,
  1961. "_originalHeight": 40,
  1962. "_id": ""
  1963. },
  1964. {
  1965. "__type__": "cc.PrefabInfo",
  1966. "root": {
  1967. "__id__": 1
  1968. },
  1969. "asset": {
  1970. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  1971. },
  1972. "fileId": "45SpRLGKhLDqnJmhVZvWEJ",
  1973. "sync": false
  1974. },
  1975. {
  1976. "__type__": "cc.EditBox",
  1977. "_name": "",
  1978. "_objFlags": 0,
  1979. "node": {
  1980. "__id__": 42
  1981. },
  1982. "_enabled": true,
  1983. "_useOriginalSize": false,
  1984. "_string": "",
  1985. "returnType": 0,
  1986. "maxLength": 64,
  1987. "_tabIndex": 0,
  1988. "editingDidBegan": [],
  1989. "textChanged": [
  1990. {
  1991. "__id__": 57
  1992. }
  1993. ],
  1994. "editingDidEnded": [],
  1995. "editingReturn": [],
  1996. "_N$textLabel": {
  1997. "__id__": 48
  1998. },
  1999. "_N$placeholderLabel": {
  2000. "__id__": 53
  2001. },
  2002. "_N$background": {
  2003. "__id__": 44
  2004. },
  2005. "_N$inputFlag": 5,
  2006. "_N$inputMode": 0,
  2007. "_N$stayOnTop": false,
  2008. "_id": ""
  2009. },
  2010. {
  2011. "__type__": "cc.ClickEvent",
  2012. "target": {
  2013. "__id__": 1
  2014. },
  2015. "component": "",
  2016. "_componentId": "60508qxsq5Ki5juXuLI5EVW",
  2017. "handler": "onInputAddressValue",
  2018. "customEventData": ""
  2019. },
  2020. {
  2021. "__type__": "cc.PrefabInfo",
  2022. "root": {
  2023. "__id__": 1
  2024. },
  2025. "asset": {
  2026. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2027. },
  2028. "fileId": "ecCgGyLAJOFqqa2obwt2MA",
  2029. "sync": false
  2030. },
  2031. {
  2032. "__type__": "cc.Label",
  2033. "_name": "",
  2034. "_objFlags": 0,
  2035. "node": {
  2036. "__id__": 41
  2037. },
  2038. "_enabled": true,
  2039. "_materials": [
  2040. {
  2041. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2042. }
  2043. ],
  2044. "_useOriginalSize": false,
  2045. "_string": "赠送地址:",
  2046. "_N$string": "赠送地址:",
  2047. "_fontSize": 30,
  2048. "_lineHeight": 30,
  2049. "_enableWrapText": true,
  2050. "_N$file": null,
  2051. "_isSystemFontUsed": true,
  2052. "_spacingX": 0,
  2053. "_batchAsBitmap": false,
  2054. "_N$horizontalAlign": 1,
  2055. "_N$verticalAlign": 1,
  2056. "_N$fontFamily": "Arial",
  2057. "_N$overflow": 0,
  2058. "_N$cacheMode": 0,
  2059. "_id": ""
  2060. },
  2061. {
  2062. "__type__": "cc.LabelOutline",
  2063. "_name": "",
  2064. "_objFlags": 0,
  2065. "node": {
  2066. "__id__": 41
  2067. },
  2068. "_enabled": true,
  2069. "_color": {
  2070. "__type__": "cc.Color",
  2071. "r": 42,
  2072. "g": 155,
  2073. "b": 200,
  2074. "a": 255
  2075. },
  2076. "_width": 1,
  2077. "_id": ""
  2078. },
  2079. {
  2080. "__type__": "cc.PrefabInfo",
  2081. "root": {
  2082. "__id__": 1
  2083. },
  2084. "asset": {
  2085. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2086. },
  2087. "fileId": "ceLZB08r1GsZHjCDpJ4ylh",
  2088. "sync": false
  2089. },
  2090. {
  2091. "__type__": "cc.Node",
  2092. "_name": "NumLabel",
  2093. "_objFlags": 0,
  2094. "_parent": {
  2095. "__id__": 6
  2096. },
  2097. "_children": [
  2098. {
  2099. "__id__": 63
  2100. }
  2101. ],
  2102. "_active": true,
  2103. "_level": 7,
  2104. "_components": [
  2105. {
  2106. "__id__": 80
  2107. },
  2108. {
  2109. "__id__": 81
  2110. }
  2111. ],
  2112. "_prefab": {
  2113. "__id__": 82
  2114. },
  2115. "_opacity": 255,
  2116. "_color": {
  2117. "__type__": "cc.Color",
  2118. "r": 42,
  2119. "g": 155,
  2120. "b": 200,
  2121. "a": 255
  2122. },
  2123. "_contentSize": {
  2124. "__type__": "cc.Size",
  2125. "width": 152,
  2126. "height": 39.8
  2127. },
  2128. "_anchorPoint": {
  2129. "__type__": "cc.Vec2",
  2130. "x": 0.5,
  2131. "y": 0.5
  2132. },
  2133. "_position": {
  2134. "__type__": "cc.Vec3",
  2135. "x": -132.046,
  2136. "y": -88.321,
  2137. "z": 0
  2138. },
  2139. "_scale": {
  2140. "__type__": "cc.Vec3",
  2141. "x": 1,
  2142. "y": 1,
  2143. "z": 1
  2144. },
  2145. "_eulerAngles": {
  2146. "__type__": "cc.Vec3",
  2147. "x": 0,
  2148. "y": 0,
  2149. "z": 0
  2150. },
  2151. "_skewX": 0,
  2152. "_skewY": 0,
  2153. "_is3DNode": false,
  2154. "groupIndex": 0,
  2155. "_id": ""
  2156. },
  2157. {
  2158. "__type__": "cc.Node",
  2159. "_name": "editbox",
  2160. "_objFlags": 0,
  2161. "_parent": {
  2162. "__id__": 62
  2163. },
  2164. "_children": [
  2165. {
  2166. "__id__": 64
  2167. },
  2168. {
  2169. "__id__": 68
  2170. },
  2171. {
  2172. "__id__": 73
  2173. }
  2174. ],
  2175. "_active": true,
  2176. "_level": 7,
  2177. "_components": [
  2178. {
  2179. "__id__": 77
  2180. }
  2181. ],
  2182. "_prefab": {
  2183. "__id__": 79
  2184. },
  2185. "_opacity": 255,
  2186. "_color": {
  2187. "__type__": "cc.Color",
  2188. "r": 228,
  2189. "g": 244,
  2190. "b": 249,
  2191. "a": 255
  2192. },
  2193. "_contentSize": {
  2194. "__type__": "cc.Size",
  2195. "width": 160,
  2196. "height": 40
  2197. },
  2198. "_anchorPoint": {
  2199. "__type__": "cc.Vec2",
  2200. "x": 0.5,
  2201. "y": 0.5
  2202. },
  2203. "_position": {
  2204. "__type__": "cc.Vec3",
  2205. "x": 156.336,
  2206. "y": 0,
  2207. "z": 0
  2208. },
  2209. "_scale": {
  2210. "__type__": "cc.Vec3",
  2211. "x": 1,
  2212. "y": 1,
  2213. "z": 1
  2214. },
  2215. "_eulerAngles": {
  2216. "__type__": "cc.Vec3",
  2217. "x": 0,
  2218. "y": 0,
  2219. "z": 0
  2220. },
  2221. "_skewX": 0,
  2222. "_skewY": 0,
  2223. "_is3DNode": false,
  2224. "groupIndex": 0,
  2225. "_id": ""
  2226. },
  2227. {
  2228. "__type__": "cc.Node",
  2229. "_name": "BACKGROUND_SPRITE",
  2230. "_objFlags": 0,
  2231. "_parent": {
  2232. "__id__": 63
  2233. },
  2234. "_children": [],
  2235. "_active": true,
  2236. "_level": 2,
  2237. "_components": [
  2238. {
  2239. "__id__": 65
  2240. },
  2241. {
  2242. "__id__": 66
  2243. }
  2244. ],
  2245. "_prefab": {
  2246. "__id__": 67
  2247. },
  2248. "_opacity": 255,
  2249. "_color": {
  2250. "__type__": "cc.Color",
  2251. "r": 228,
  2252. "g": 244,
  2253. "b": 249,
  2254. "a": 255
  2255. },
  2256. "_contentSize": {
  2257. "__type__": "cc.Size",
  2258. "width": 160,
  2259. "height": 40
  2260. },
  2261. "_anchorPoint": {
  2262. "__type__": "cc.Vec2",
  2263. "x": 0.5,
  2264. "y": 0.5
  2265. },
  2266. "_position": {
  2267. "__type__": "cc.Vec3",
  2268. "x": 0,
  2269. "y": 0,
  2270. "z": 0
  2271. },
  2272. "_scale": {
  2273. "__type__": "cc.Vec3",
  2274. "x": 1,
  2275. "y": 1,
  2276. "z": 1
  2277. },
  2278. "_eulerAngles": {
  2279. "__type__": "cc.Vec3",
  2280. "x": 0,
  2281. "y": 0,
  2282. "z": 0
  2283. },
  2284. "_skewX": 0,
  2285. "_skewY": 0,
  2286. "_is3DNode": false,
  2287. "groupIndex": 0,
  2288. "_id": ""
  2289. },
  2290. {
  2291. "__type__": "cc.Sprite",
  2292. "_name": "",
  2293. "_objFlags": 0,
  2294. "node": {
  2295. "__id__": 64
  2296. },
  2297. "_enabled": true,
  2298. "_materials": [
  2299. {
  2300. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2301. }
  2302. ],
  2303. "_srcBlendFactor": 770,
  2304. "_dstBlendFactor": 771,
  2305. "_spriteFrame": {
  2306. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  2307. },
  2308. "_type": 0,
  2309. "_sizeMode": 0,
  2310. "_fillType": 0,
  2311. "_fillCenter": {
  2312. "__type__": "cc.Vec2",
  2313. "x": 0,
  2314. "y": 0
  2315. },
  2316. "_fillStart": 0,
  2317. "_fillRange": 0,
  2318. "_isTrimmedMode": true,
  2319. "_atlas": null,
  2320. "_id": ""
  2321. },
  2322. {
  2323. "__type__": "cc.Widget",
  2324. "_name": "",
  2325. "_objFlags": 0,
  2326. "node": {
  2327. "__id__": 64
  2328. },
  2329. "_enabled": true,
  2330. "alignMode": 0,
  2331. "_target": null,
  2332. "_alignFlags": 45,
  2333. "_left": 0,
  2334. "_right": 0,
  2335. "_top": 0,
  2336. "_bottom": 0,
  2337. "_verticalCenter": 0,
  2338. "_horizontalCenter": 0,
  2339. "_isAbsLeft": true,
  2340. "_isAbsRight": true,
  2341. "_isAbsTop": true,
  2342. "_isAbsBottom": true,
  2343. "_isAbsHorizontalCenter": true,
  2344. "_isAbsVerticalCenter": true,
  2345. "_originalWidth": 160,
  2346. "_originalHeight": 40,
  2347. "_id": ""
  2348. },
  2349. {
  2350. "__type__": "cc.PrefabInfo",
  2351. "root": {
  2352. "__id__": 1
  2353. },
  2354. "asset": {
  2355. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2356. },
  2357. "fileId": "872rgy5TxFiYJPs9R63bmS",
  2358. "sync": false
  2359. },
  2360. {
  2361. "__type__": "cc.Node",
  2362. "_name": "TEXT_LABEL",
  2363. "_objFlags": 0,
  2364. "_parent": {
  2365. "__id__": 63
  2366. },
  2367. "_children": [],
  2368. "_active": false,
  2369. "_level": 2,
  2370. "_components": [
  2371. {
  2372. "__id__": 69
  2373. },
  2374. {
  2375. "__id__": 70
  2376. },
  2377. {
  2378. "__id__": 71
  2379. }
  2380. ],
  2381. "_prefab": {
  2382. "__id__": 72
  2383. },
  2384. "_opacity": 255,
  2385. "_color": {
  2386. "__type__": "cc.Color",
  2387. "r": 129,
  2388. "g": 180,
  2389. "b": 200,
  2390. "a": 255
  2391. },
  2392. "_contentSize": {
  2393. "__type__": "cc.Size",
  2394. "width": 158,
  2395. "height": 40
  2396. },
  2397. "_anchorPoint": {
  2398. "__type__": "cc.Vec2",
  2399. "x": 0,
  2400. "y": 1
  2401. },
  2402. "_position": {
  2403. "__type__": "cc.Vec3",
  2404. "x": -78,
  2405. "y": 20,
  2406. "z": 0
  2407. },
  2408. "_scale": {
  2409. "__type__": "cc.Vec3",
  2410. "x": 1,
  2411. "y": 1,
  2412. "z": 1
  2413. },
  2414. "_eulerAngles": {
  2415. "__type__": "cc.Vec3",
  2416. "x": 0,
  2417. "y": 0,
  2418. "z": 0
  2419. },
  2420. "_skewX": 0,
  2421. "_skewY": 0,
  2422. "_is3DNode": false,
  2423. "groupIndex": 0,
  2424. "_id": ""
  2425. },
  2426. {
  2427. "__type__": "cc.Label",
  2428. "_name": "",
  2429. "_objFlags": 0,
  2430. "node": {
  2431. "__id__": 68
  2432. },
  2433. "_enabled": true,
  2434. "_materials": [],
  2435. "_useOriginalSize": true,
  2436. "_string": "",
  2437. "_N$string": "",
  2438. "_fontSize": 20,
  2439. "_lineHeight": 25,
  2440. "_enableWrapText": false,
  2441. "_N$file": null,
  2442. "_isSystemFontUsed": true,
  2443. "_spacingX": 0,
  2444. "_batchAsBitmap": false,
  2445. "_N$horizontalAlign": 0,
  2446. "_N$verticalAlign": 1,
  2447. "_N$fontFamily": "Arial",
  2448. "_N$overflow": 1,
  2449. "_N$cacheMode": 0,
  2450. "_id": ""
  2451. },
  2452. {
  2453. "__type__": "cc.Widget",
  2454. "_name": "",
  2455. "_objFlags": 0,
  2456. "node": {
  2457. "__id__": 68
  2458. },
  2459. "_enabled": true,
  2460. "alignMode": 0,
  2461. "_target": null,
  2462. "_alignFlags": 45,
  2463. "_left": 2,
  2464. "_right": 0,
  2465. "_top": 0,
  2466. "_bottom": 0,
  2467. "_verticalCenter": 0,
  2468. "_horizontalCenter": 0,
  2469. "_isAbsLeft": true,
  2470. "_isAbsRight": true,
  2471. "_isAbsTop": true,
  2472. "_isAbsBottom": true,
  2473. "_isAbsHorizontalCenter": true,
  2474. "_isAbsVerticalCenter": true,
  2475. "_originalWidth": 158,
  2476. "_originalHeight": 40,
  2477. "_id": ""
  2478. },
  2479. {
  2480. "__type__": "cc.LabelOutline",
  2481. "_name": "",
  2482. "_objFlags": 0,
  2483. "node": {
  2484. "__id__": 68
  2485. },
  2486. "_enabled": true,
  2487. "_color": {
  2488. "__type__": "cc.Color",
  2489. "r": 255,
  2490. "g": 137,
  2491. "b": 165,
  2492. "a": 255
  2493. },
  2494. "_width": 1,
  2495. "_id": ""
  2496. },
  2497. {
  2498. "__type__": "cc.PrefabInfo",
  2499. "root": {
  2500. "__id__": 1
  2501. },
  2502. "asset": {
  2503. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2504. },
  2505. "fileId": "18OHKH9AZEUoSJv8C/LeEG",
  2506. "sync": false
  2507. },
  2508. {
  2509. "__type__": "cc.Node",
  2510. "_name": "PLACEHOLDER_LABEL",
  2511. "_objFlags": 0,
  2512. "_parent": {
  2513. "__id__": 63
  2514. },
  2515. "_children": [],
  2516. "_active": true,
  2517. "_level": 2,
  2518. "_components": [
  2519. {
  2520. "__id__": 74
  2521. },
  2522. {
  2523. "__id__": 75
  2524. }
  2525. ],
  2526. "_prefab": {
  2527. "__id__": 76
  2528. },
  2529. "_opacity": 255,
  2530. "_color": {
  2531. "__type__": "cc.Color",
  2532. "r": 129,
  2533. "g": 180,
  2534. "b": 200,
  2535. "a": 255
  2536. },
  2537. "_contentSize": {
  2538. "__type__": "cc.Size",
  2539. "width": 158,
  2540. "height": 40
  2541. },
  2542. "_anchorPoint": {
  2543. "__type__": "cc.Vec2",
  2544. "x": 0,
  2545. "y": 1
  2546. },
  2547. "_position": {
  2548. "__type__": "cc.Vec3",
  2549. "x": -78,
  2550. "y": 20,
  2551. "z": 0
  2552. },
  2553. "_scale": {
  2554. "__type__": "cc.Vec3",
  2555. "x": 1,
  2556. "y": 1,
  2557. "z": 1
  2558. },
  2559. "_eulerAngles": {
  2560. "__type__": "cc.Vec3",
  2561. "x": 0,
  2562. "y": 0,
  2563. "z": 0
  2564. },
  2565. "_skewX": 0,
  2566. "_skewY": 0,
  2567. "_is3DNode": false,
  2568. "groupIndex": 0,
  2569. "_id": ""
  2570. },
  2571. {
  2572. "__type__": "cc.Label",
  2573. "_name": "",
  2574. "_objFlags": 0,
  2575. "node": {
  2576. "__id__": 73
  2577. },
  2578. "_enabled": true,
  2579. "_materials": [
  2580. {
  2581. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2582. }
  2583. ],
  2584. "_useOriginalSize": true,
  2585. "_string": "赠送果实数量",
  2586. "_N$string": "赠送果实数量",
  2587. "_fontSize": 20,
  2588. "_lineHeight": 40,
  2589. "_enableWrapText": false,
  2590. "_N$file": null,
  2591. "_isSystemFontUsed": true,
  2592. "_spacingX": 0,
  2593. "_batchAsBitmap": false,
  2594. "_N$horizontalAlign": 0,
  2595. "_N$verticalAlign": 1,
  2596. "_N$fontFamily": "Arial",
  2597. "_N$overflow": 1,
  2598. "_N$cacheMode": 0,
  2599. "_id": ""
  2600. },
  2601. {
  2602. "__type__": "cc.Widget",
  2603. "_name": "",
  2604. "_objFlags": 0,
  2605. "node": {
  2606. "__id__": 73
  2607. },
  2608. "_enabled": true,
  2609. "alignMode": 0,
  2610. "_target": null,
  2611. "_alignFlags": 45,
  2612. "_left": 2,
  2613. "_right": 0,
  2614. "_top": 0,
  2615. "_bottom": 0,
  2616. "_verticalCenter": 0,
  2617. "_horizontalCenter": 0,
  2618. "_isAbsLeft": true,
  2619. "_isAbsRight": true,
  2620. "_isAbsTop": true,
  2621. "_isAbsBottom": true,
  2622. "_isAbsHorizontalCenter": true,
  2623. "_isAbsVerticalCenter": true,
  2624. "_originalWidth": 158,
  2625. "_originalHeight": 40,
  2626. "_id": ""
  2627. },
  2628. {
  2629. "__type__": "cc.PrefabInfo",
  2630. "root": {
  2631. "__id__": 1
  2632. },
  2633. "asset": {
  2634. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2635. },
  2636. "fileId": "35KVvQxf9FwagD3pFJacVR",
  2637. "sync": false
  2638. },
  2639. {
  2640. "__type__": "cc.EditBox",
  2641. "_name": "",
  2642. "_objFlags": 0,
  2643. "node": {
  2644. "__id__": 63
  2645. },
  2646. "_enabled": true,
  2647. "_useOriginalSize": false,
  2648. "_string": "",
  2649. "returnType": 0,
  2650. "maxLength": 8,
  2651. "_tabIndex": 0,
  2652. "editingDidBegan": [],
  2653. "textChanged": [
  2654. {
  2655. "__id__": 78
  2656. }
  2657. ],
  2658. "editingDidEnded": [],
  2659. "editingReturn": [],
  2660. "_N$textLabel": {
  2661. "__id__": 69
  2662. },
  2663. "_N$placeholderLabel": {
  2664. "__id__": 74
  2665. },
  2666. "_N$background": {
  2667. "__id__": 65
  2668. },
  2669. "_N$inputFlag": 5,
  2670. "_N$inputMode": 3,
  2671. "_N$stayOnTop": false,
  2672. "_id": ""
  2673. },
  2674. {
  2675. "__type__": "cc.ClickEvent",
  2676. "target": {
  2677. "__id__": 1
  2678. },
  2679. "component": "",
  2680. "_componentId": "60508qxsq5Ki5juXuLI5EVW",
  2681. "handler": "onInputAmountValue",
  2682. "customEventData": ""
  2683. },
  2684. {
  2685. "__type__": "cc.PrefabInfo",
  2686. "root": {
  2687. "__id__": 1
  2688. },
  2689. "asset": {
  2690. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2691. },
  2692. "fileId": "37A+4grnpMyZbG8yTYd1eo",
  2693. "sync": false
  2694. },
  2695. {
  2696. "__type__": "cc.Label",
  2697. "_name": "",
  2698. "_objFlags": 0,
  2699. "node": {
  2700. "__id__": 62
  2701. },
  2702. "_enabled": true,
  2703. "_materials": [
  2704. {
  2705. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2706. }
  2707. ],
  2708. "_useOriginalSize": false,
  2709. "_string": "赠送数量:",
  2710. "_N$string": "赠送数量:",
  2711. "_fontSize": 30,
  2712. "_lineHeight": 30,
  2713. "_enableWrapText": true,
  2714. "_N$file": null,
  2715. "_isSystemFontUsed": true,
  2716. "_spacingX": 0,
  2717. "_batchAsBitmap": false,
  2718. "_N$horizontalAlign": 1,
  2719. "_N$verticalAlign": 1,
  2720. "_N$fontFamily": "Arial",
  2721. "_N$overflow": 0,
  2722. "_N$cacheMode": 0,
  2723. "_id": ""
  2724. },
  2725. {
  2726. "__type__": "cc.LabelOutline",
  2727. "_name": "",
  2728. "_objFlags": 0,
  2729. "node": {
  2730. "__id__": 62
  2731. },
  2732. "_enabled": true,
  2733. "_color": {
  2734. "__type__": "cc.Color",
  2735. "r": 42,
  2736. "g": 155,
  2737. "b": 200,
  2738. "a": 255
  2739. },
  2740. "_width": 1,
  2741. "_id": ""
  2742. },
  2743. {
  2744. "__type__": "cc.PrefabInfo",
  2745. "root": {
  2746. "__id__": 1
  2747. },
  2748. "asset": {
  2749. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2750. },
  2751. "fileId": "27yRhrPhlOfrd0pDJ2zFyd",
  2752. "sync": false
  2753. },
  2754. {
  2755. "__type__": "cc.Node",
  2756. "_name": "button",
  2757. "_objFlags": 0,
  2758. "_parent": {
  2759. "__id__": 6
  2760. },
  2761. "_children": [
  2762. {
  2763. "__id__": 84
  2764. }
  2765. ],
  2766. "_active": true,
  2767. "_level": 7,
  2768. "_components": [
  2769. {
  2770. "__id__": 91
  2771. }
  2772. ],
  2773. "_prefab": {
  2774. "__id__": 93
  2775. },
  2776. "_opacity": 255,
  2777. "_color": {
  2778. "__type__": "cc.Color",
  2779. "r": 255,
  2780. "g": 255,
  2781. "b": 255,
  2782. "a": 255
  2783. },
  2784. "_contentSize": {
  2785. "__type__": "cc.Size",
  2786. "width": 80,
  2787. "height": 43
  2788. },
  2789. "_anchorPoint": {
  2790. "__type__": "cc.Vec2",
  2791. "x": 0.5,
  2792. "y": 0.5
  2793. },
  2794. "_position": {
  2795. "__type__": "cc.Vec3",
  2796. "x": 0,
  2797. "y": -165.312,
  2798. "z": 0
  2799. },
  2800. "_scale": {
  2801. "__type__": "cc.Vec3",
  2802. "x": 1.5,
  2803. "y": 1.5,
  2804. "z": 1
  2805. },
  2806. "_eulerAngles": {
  2807. "__type__": "cc.Vec3",
  2808. "x": 0,
  2809. "y": 0,
  2810. "z": 0
  2811. },
  2812. "_skewX": 0,
  2813. "_skewY": 0,
  2814. "_is3DNode": false,
  2815. "groupIndex": 0,
  2816. "_id": ""
  2817. },
  2818. {
  2819. "__type__": "cc.Node",
  2820. "_name": "Background",
  2821. "_objFlags": 0,
  2822. "_parent": {
  2823. "__id__": 83
  2824. },
  2825. "_children": [
  2826. {
  2827. "__id__": 85
  2828. }
  2829. ],
  2830. "_active": true,
  2831. "_level": 2,
  2832. "_components": [
  2833. {
  2834. "__id__": 88
  2835. },
  2836. {
  2837. "__id__": 89
  2838. }
  2839. ],
  2840. "_prefab": {
  2841. "__id__": 90
  2842. },
  2843. "_opacity": 255,
  2844. "_color": {
  2845. "__type__": "cc.Color",
  2846. "r": 255,
  2847. "g": 255,
  2848. "b": 255,
  2849. "a": 255
  2850. },
  2851. "_contentSize": {
  2852. "__type__": "cc.Size",
  2853. "width": 80,
  2854. "height": 43
  2855. },
  2856. "_anchorPoint": {
  2857. "__type__": "cc.Vec2",
  2858. "x": 0.5,
  2859. "y": 0.5
  2860. },
  2861. "_position": {
  2862. "__type__": "cc.Vec3",
  2863. "x": 0,
  2864. "y": 0,
  2865. "z": 0
  2866. },
  2867. "_scale": {
  2868. "__type__": "cc.Vec3",
  2869. "x": 1,
  2870. "y": 1,
  2871. "z": 1
  2872. },
  2873. "_eulerAngles": {
  2874. "__type__": "cc.Vec3",
  2875. "x": 0,
  2876. "y": 0,
  2877. "z": 0
  2878. },
  2879. "_skewX": 0,
  2880. "_skewY": 0,
  2881. "_is3DNode": false,
  2882. "groupIndex": 0,
  2883. "_id": ""
  2884. },
  2885. {
  2886. "__type__": "cc.Node",
  2887. "_name": "Label",
  2888. "_objFlags": 0,
  2889. "_parent": {
  2890. "__id__": 84
  2891. },
  2892. "_children": [],
  2893. "_active": true,
  2894. "_level": 3,
  2895. "_components": [
  2896. {
  2897. "__id__": 86
  2898. }
  2899. ],
  2900. "_prefab": {
  2901. "__id__": 87
  2902. },
  2903. "_opacity": 255,
  2904. "_color": {
  2905. "__type__": "cc.Color",
  2906. "r": 0,
  2907. "g": 0,
  2908. "b": 0,
  2909. "a": 255
  2910. },
  2911. "_contentSize": {
  2912. "__type__": "cc.Size",
  2913. "width": 100,
  2914. "height": 40
  2915. },
  2916. "_anchorPoint": {
  2917. "__type__": "cc.Vec2",
  2918. "x": 0.5,
  2919. "y": 0.5
  2920. },
  2921. "_position": {
  2922. "__type__": "cc.Vec3",
  2923. "x": 0,
  2924. "y": 0,
  2925. "z": 0
  2926. },
  2927. "_scale": {
  2928. "__type__": "cc.Vec3",
  2929. "x": 1,
  2930. "y": 1,
  2931. "z": 1
  2932. },
  2933. "_eulerAngles": {
  2934. "__type__": "cc.Vec3",
  2935. "x": 0,
  2936. "y": 0,
  2937. "z": 0
  2938. },
  2939. "_skewX": 0,
  2940. "_skewY": 0,
  2941. "_is3DNode": false,
  2942. "groupIndex": 0,
  2943. "_id": ""
  2944. },
  2945. {
  2946. "__type__": "cc.Label",
  2947. "_name": "",
  2948. "_objFlags": 0,
  2949. "node": {
  2950. "__id__": 85
  2951. },
  2952. "_enabled": true,
  2953. "_materials": [
  2954. {
  2955. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2956. }
  2957. ],
  2958. "_useOriginalSize": false,
  2959. "_string": "",
  2960. "_N$string": "",
  2961. "_fontSize": 20,
  2962. "_lineHeight": 40,
  2963. "_enableWrapText": false,
  2964. "_N$file": null,
  2965. "_isSystemFontUsed": true,
  2966. "_spacingX": 0,
  2967. "_batchAsBitmap": false,
  2968. "_N$horizontalAlign": 1,
  2969. "_N$verticalAlign": 1,
  2970. "_N$fontFamily": "Arial",
  2971. "_N$overflow": 1,
  2972. "_N$cacheMode": 0,
  2973. "_id": ""
  2974. },
  2975. {
  2976. "__type__": "cc.PrefabInfo",
  2977. "root": {
  2978. "__id__": 1
  2979. },
  2980. "asset": {
  2981. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2982. },
  2983. "fileId": "55RD5IvEJGg7DL9tJS76iS",
  2984. "sync": false
  2985. },
  2986. {
  2987. "__type__": "cc.Sprite",
  2988. "_name": "",
  2989. "_objFlags": 0,
  2990. "node": {
  2991. "__id__": 84
  2992. },
  2993. "_enabled": true,
  2994. "_materials": [
  2995. {
  2996. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2997. }
  2998. ],
  2999. "_srcBlendFactor": 770,
  3000. "_dstBlendFactor": 771,
  3001. "_spriteFrame": {
  3002. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  3003. },
  3004. "_type": 1,
  3005. "_sizeMode": 0,
  3006. "_fillType": 0,
  3007. "_fillCenter": {
  3008. "__type__": "cc.Vec2",
  3009. "x": 0,
  3010. "y": 0
  3011. },
  3012. "_fillStart": 0,
  3013. "_fillRange": 0,
  3014. "_isTrimmedMode": true,
  3015. "_atlas": null,
  3016. "_id": ""
  3017. },
  3018. {
  3019. "__type__": "cc.Widget",
  3020. "_name": "",
  3021. "_objFlags": 0,
  3022. "node": {
  3023. "__id__": 84
  3024. },
  3025. "_enabled": true,
  3026. "alignMode": 0,
  3027. "_target": null,
  3028. "_alignFlags": 45,
  3029. "_left": 0,
  3030. "_right": 0,
  3031. "_top": 0,
  3032. "_bottom": 0,
  3033. "_verticalCenter": 0,
  3034. "_horizontalCenter": 0,
  3035. "_isAbsLeft": true,
  3036. "_isAbsRight": true,
  3037. "_isAbsTop": true,
  3038. "_isAbsBottom": true,
  3039. "_isAbsHorizontalCenter": true,
  3040. "_isAbsVerticalCenter": true,
  3041. "_originalWidth": 100,
  3042. "_originalHeight": 40,
  3043. "_id": ""
  3044. },
  3045. {
  3046. "__type__": "cc.PrefabInfo",
  3047. "root": {
  3048. "__id__": 1
  3049. },
  3050. "asset": {
  3051. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  3052. },
  3053. "fileId": "3c6XHu44JJZIuow5q/FMSD",
  3054. "sync": false
  3055. },
  3056. {
  3057. "__type__": "cc.Button",
  3058. "_name": "",
  3059. "_objFlags": 0,
  3060. "node": {
  3061. "__id__": 83
  3062. },
  3063. "_enabled": true,
  3064. "duration": 0.1,
  3065. "zoomScale": 1.2,
  3066. "clickEvents": [
  3067. {
  3068. "__id__": 92
  3069. }
  3070. ],
  3071. "_N$interactable": true,
  3072. "_N$enableAutoGrayEffect": false,
  3073. "_N$transition": 2,
  3074. "transition": 2,
  3075. "_N$normalColor": {
  3076. "__type__": "cc.Color",
  3077. "r": 230,
  3078. "g": 230,
  3079. "b": 230,
  3080. "a": 255
  3081. },
  3082. "_N$pressedColor": {
  3083. "__type__": "cc.Color",
  3084. "r": 200,
  3085. "g": 200,
  3086. "b": 200,
  3087. "a": 255
  3088. },
  3089. "pressedColor": {
  3090. "__type__": "cc.Color",
  3091. "r": 200,
  3092. "g": 200,
  3093. "b": 200,
  3094. "a": 255
  3095. },
  3096. "_N$hoverColor": {
  3097. "__type__": "cc.Color",
  3098. "r": 255,
  3099. "g": 255,
  3100. "b": 255,
  3101. "a": 255
  3102. },
  3103. "hoverColor": {
  3104. "__type__": "cc.Color",
  3105. "r": 255,
  3106. "g": 255,
  3107. "b": 255,
  3108. "a": 255
  3109. },
  3110. "_N$disabledColor": {
  3111. "__type__": "cc.Color",
  3112. "r": 120,
  3113. "g": 120,
  3114. "b": 120,
  3115. "a": 200
  3116. },
  3117. "_N$normalSprite": {
  3118. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  3119. },
  3120. "_N$pressedSprite": {
  3121. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  3122. },
  3123. "pressedSprite": {
  3124. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  3125. },
  3126. "_N$hoverSprite": {
  3127. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  3128. },
  3129. "hoverSprite": {
  3130. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  3131. },
  3132. "_N$disabledSprite": {
  3133. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3134. },
  3135. "_N$target": {
  3136. "__id__": 84
  3137. },
  3138. "_id": ""
  3139. },
  3140. {
  3141. "__type__": "cc.ClickEvent",
  3142. "target": {
  3143. "__id__": 1
  3144. },
  3145. "component": "",
  3146. "_componentId": "60508qxsq5Ki5juXuLI5EVW",
  3147. "handler": "onLeaseGrantFruit",
  3148. "customEventData": ""
  3149. },
  3150. {
  3151. "__type__": "cc.PrefabInfo",
  3152. "root": {
  3153. "__id__": 1
  3154. },
  3155. "asset": {
  3156. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  3157. },
  3158. "fileId": "ddbsXgTMFMwpgrgE4yxCLa",
  3159. "sync": false
  3160. },
  3161. {
  3162. "__type__": "cc.Sprite",
  3163. "_name": "",
  3164. "_objFlags": 0,
  3165. "node": {
  3166. "__id__": 6
  3167. },
  3168. "_enabled": true,
  3169. "_materials": [
  3170. {
  3171. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3172. }
  3173. ],
  3174. "_srcBlendFactor": 770,
  3175. "_dstBlendFactor": 771,
  3176. "_spriteFrame": {
  3177. "__uuid__": "6255e000-b232-46fd-9bb5-5b905fc61fe7"
  3178. },
  3179. "_type": 0,
  3180. "_sizeMode": 1,
  3181. "_fillType": 0,
  3182. "_fillCenter": {
  3183. "__type__": "cc.Vec2",
  3184. "x": 0,
  3185. "y": 0
  3186. },
  3187. "_fillStart": 0,
  3188. "_fillRange": 0,
  3189. "_isTrimmedMode": true,
  3190. "_atlas": null,
  3191. "_id": ""
  3192. },
  3193. {
  3194. "__type__": "cc.PrefabInfo",
  3195. "root": {
  3196. "__id__": 1
  3197. },
  3198. "asset": {
  3199. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  3200. },
  3201. "fileId": "8cF5JSo/dJXoAASDqcRvOU",
  3202. "sync": false
  3203. },
  3204. {
  3205. "__type__": "60508qxsq5Ki5juXuLI5EVW",
  3206. "_name": "",
  3207. "_objFlags": 0,
  3208. "node": {
  3209. "__id__": 1
  3210. },
  3211. "_enabled": true,
  3212. "grantName": {
  3213. "__id__": 24
  3214. },
  3215. "amount": {
  3216. "__id__": 32
  3217. },
  3218. "describe": null,
  3219. "inputAmountContainer": {
  3220. "__id__": 63
  3221. },
  3222. "fruitInfo": null,
  3223. "upTarget": null,
  3224. "_id": ""
  3225. },
  3226. {
  3227. "__type__": "cc.PrefabInfo",
  3228. "root": {
  3229. "__id__": 1
  3230. },
  3231. "asset": {
  3232. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  3233. },
  3234. "fileId": "48c3nexoRL/4DgOmPO3xVX",
  3235. "sync": false
  3236. }
  3237. ]