SalePanel.prefab 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658
  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": "SalePanel",
  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__": 78
  32. }
  33. ],
  34. "_prefab": {
  35. "__id__": 79
  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__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  191. },
  192. "fileId": "c6D93LE15K5LWW6oSaWH6O",
  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__": 22
  211. },
  212. {
  213. "__id__": 41
  214. },
  215. {
  216. "__id__": 66
  217. }
  218. ],
  219. "_active": true,
  220. "_level": 6,
  221. "_components": [
  222. {
  223. "__id__": 76
  224. }
  225. ],
  226. "_prefab": {
  227. "__id__": 77
  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__": "7cedda58-ddbe-4c73-93a5-e4e9a2cdccc7"
  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__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  370. },
  371. "fileId": "56GqAEUcJE46N9wRdLFoZo",
  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. "__id__": 20
  394. }
  395. ],
  396. "_prefab": {
  397. "__id__": 21
  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__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  605. },
  606. "fileId": "532mLvYB1MQaWAxpyYnJ8r",
  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__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  675. },
  676. "fileId": "6etJj1Ws5M06fzu/4U0oNe",
  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__": 10
  767. },
  768. "component": "",
  769. "_componentId": "0ecf9R8aodBXYuantqy5mWQ",
  770. "handler": "Close",
  771. "customEventData": ""
  772. },
  773. {
  774. "__type__": "0ecf9R8aodBXYuantqy5mWQ",
  775. "_name": "",
  776. "_objFlags": 0,
  777. "node": {
  778. "__id__": 10
  779. },
  780. "_enabled": true,
  781. "targetNode": {
  782. "__id__": 1
  783. },
  784. "_id": ""
  785. },
  786. {
  787. "__type__": "cc.PrefabInfo",
  788. "root": {
  789. "__id__": 1
  790. },
  791. "asset": {
  792. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  793. },
  794. "fileId": "abJxjYde1BOpPVlSMQkyxW",
  795. "sync": false
  796. },
  797. {
  798. "__type__": "cc.Node",
  799. "_name": "BG1_sprite_splash",
  800. "_objFlags": 0,
  801. "_parent": {
  802. "__id__": 6
  803. },
  804. "_children": [
  805. {
  806. "__id__": 23
  807. },
  808. {
  809. "__id__": 31
  810. }
  811. ],
  812. "_active": true,
  813. "_level": 7,
  814. "_components": [
  815. {
  816. "__id__": 39
  817. }
  818. ],
  819. "_prefab": {
  820. "__id__": 40
  821. },
  822. "_opacity": 255,
  823. "_color": {
  824. "__type__": "cc.Color",
  825. "r": 228,
  826. "g": 244,
  827. "b": 249,
  828. "a": 255
  829. },
  830. "_contentSize": {
  831. "__type__": "cc.Size",
  832. "width": 450,
  833. "height": 150
  834. },
  835. "_anchorPoint": {
  836. "__type__": "cc.Vec2",
  837. "x": 0.5,
  838. "y": 0.5
  839. },
  840. "_position": {
  841. "__type__": "cc.Vec3",
  842. "x": 0,
  843. "y": 60.741,
  844. "z": 0
  845. },
  846. "_scale": {
  847. "__type__": "cc.Vec3",
  848. "x": 1,
  849. "y": 1,
  850. "z": 1
  851. },
  852. "_eulerAngles": {
  853. "__type__": "cc.Vec3",
  854. "x": 0,
  855. "y": 0,
  856. "z": 0
  857. },
  858. "_skewX": 0,
  859. "_skewY": 0,
  860. "_is3DNode": false,
  861. "groupIndex": 0,
  862. "_id": ""
  863. },
  864. {
  865. "__type__": "cc.Node",
  866. "_name": "NameLabel",
  867. "_objFlags": 0,
  868. "_parent": {
  869. "__id__": 22
  870. },
  871. "_children": [
  872. {
  873. "__id__": 24
  874. }
  875. ],
  876. "_active": true,
  877. "_level": 8,
  878. "_components": [
  879. {
  880. "__id__": 28
  881. },
  882. {
  883. "__id__": 29
  884. }
  885. ],
  886. "_prefab": {
  887. "__id__": 30
  888. },
  889. "_opacity": 255,
  890. "_color": {
  891. "__type__": "cc.Color",
  892. "r": 42,
  893. "g": 155,
  894. "b": 200,
  895. "a": 255
  896. },
  897. "_contentSize": {
  898. "__type__": "cc.Size",
  899. "width": 152,
  900. "height": 39.8
  901. },
  902. "_anchorPoint": {
  903. "__type__": "cc.Vec2",
  904. "x": 0.5,
  905. "y": 0.5
  906. },
  907. "_position": {
  908. "__type__": "cc.Vec3",
  909. "x": -132.046,
  910. "y": 34.332,
  911. "z": 0
  912. },
  913. "_scale": {
  914. "__type__": "cc.Vec3",
  915. "x": 1,
  916. "y": 1,
  917. "z": 1
  918. },
  919. "_eulerAngles": {
  920. "__type__": "cc.Vec3",
  921. "x": 0,
  922. "y": 0,
  923. "z": 0
  924. },
  925. "_skewX": 0,
  926. "_skewY": 0,
  927. "_is3DNode": false,
  928. "groupIndex": 0,
  929. "_id": ""
  930. },
  931. {
  932. "__type__": "cc.Node",
  933. "_name": "label",
  934. "_objFlags": 0,
  935. "_parent": {
  936. "__id__": 23
  937. },
  938. "_children": [],
  939. "_active": true,
  940. "_level": 9,
  941. "_components": [
  942. {
  943. "__id__": 25
  944. },
  945. {
  946. "__id__": 26
  947. }
  948. ],
  949. "_prefab": {
  950. "__id__": 27
  951. },
  952. "_opacity": 255,
  953. "_color": {
  954. "__type__": "cc.Color",
  955. "r": 255,
  956. "g": 137,
  957. "b": 165,
  958. "a": 255
  959. },
  960. "_contentSize": {
  961. "__type__": "cc.Size",
  962. "width": 82,
  963. "height": 52.4
  964. },
  965. "_anchorPoint": {
  966. "__type__": "cc.Vec2",
  967. "x": 0.5,
  968. "y": 0.5
  969. },
  970. "_position": {
  971. "__type__": "cc.Vec3",
  972. "x": 137.328,
  973. "y": 0,
  974. "z": 0
  975. },
  976. "_scale": {
  977. "__type__": "cc.Vec3",
  978. "x": 1,
  979. "y": 1,
  980. "z": 1
  981. },
  982. "_eulerAngles": {
  983. "__type__": "cc.Vec3",
  984. "x": 0,
  985. "y": 0,
  986. "z": 0
  987. },
  988. "_skewX": 0,
  989. "_skewY": 0,
  990. "_is3DNode": false,
  991. "groupIndex": 0,
  992. "_id": ""
  993. },
  994. {
  995. "__type__": "cc.Label",
  996. "_name": "",
  997. "_objFlags": 0,
  998. "node": {
  999. "__id__": 24
  1000. },
  1001. "_enabled": true,
  1002. "_materials": [
  1003. {
  1004. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1005. }
  1006. ],
  1007. "_useOriginalSize": false,
  1008. "_string": "白菜",
  1009. "_N$string": "白菜",
  1010. "_fontSize": 40,
  1011. "_lineHeight": 40,
  1012. "_enableWrapText": true,
  1013. "_N$file": null,
  1014. "_isSystemFontUsed": true,
  1015. "_spacingX": 0,
  1016. "_batchAsBitmap": false,
  1017. "_N$horizontalAlign": 0,
  1018. "_N$verticalAlign": 1,
  1019. "_N$fontFamily": "Arial",
  1020. "_N$overflow": 0,
  1021. "_N$cacheMode": 0,
  1022. "_id": ""
  1023. },
  1024. {
  1025. "__type__": "cc.LabelOutline",
  1026. "_name": "",
  1027. "_objFlags": 0,
  1028. "node": {
  1029. "__id__": 24
  1030. },
  1031. "_enabled": true,
  1032. "_color": {
  1033. "__type__": "cc.Color",
  1034. "r": 255,
  1035. "g": 137,
  1036. "b": 165,
  1037. "a": 255
  1038. },
  1039. "_width": 1,
  1040. "_id": ""
  1041. },
  1042. {
  1043. "__type__": "cc.PrefabInfo",
  1044. "root": {
  1045. "__id__": 1
  1046. },
  1047. "asset": {
  1048. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  1049. },
  1050. "fileId": "17GgtmoppBMb2aHjThPWsN",
  1051. "sync": false
  1052. },
  1053. {
  1054. "__type__": "cc.Label",
  1055. "_name": "",
  1056. "_objFlags": 0,
  1057. "node": {
  1058. "__id__": 23
  1059. },
  1060. "_enabled": true,
  1061. "_materials": [
  1062. {
  1063. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1064. }
  1065. ],
  1066. "_useOriginalSize": false,
  1067. "_string": "果实名称:",
  1068. "_N$string": "果实名称:",
  1069. "_fontSize": 30,
  1070. "_lineHeight": 30,
  1071. "_enableWrapText": true,
  1072. "_N$file": null,
  1073. "_isSystemFontUsed": true,
  1074. "_spacingX": 0,
  1075. "_batchAsBitmap": false,
  1076. "_N$horizontalAlign": 1,
  1077. "_N$verticalAlign": 1,
  1078. "_N$fontFamily": "Arial",
  1079. "_N$overflow": 0,
  1080. "_N$cacheMode": 0,
  1081. "_id": ""
  1082. },
  1083. {
  1084. "__type__": "cc.LabelOutline",
  1085. "_name": "",
  1086. "_objFlags": 0,
  1087. "node": {
  1088. "__id__": 23
  1089. },
  1090. "_enabled": true,
  1091. "_color": {
  1092. "__type__": "cc.Color",
  1093. "r": 42,
  1094. "g": 155,
  1095. "b": 200,
  1096. "a": 255
  1097. },
  1098. "_width": 1,
  1099. "_id": ""
  1100. },
  1101. {
  1102. "__type__": "cc.PrefabInfo",
  1103. "root": {
  1104. "__id__": 1
  1105. },
  1106. "asset": {
  1107. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  1108. },
  1109. "fileId": "f9YHtoV59AYrFc2ZP/AZJf",
  1110. "sync": false
  1111. },
  1112. {
  1113. "__type__": "cc.Node",
  1114. "_name": "NumLabel",
  1115. "_objFlags": 0,
  1116. "_parent": {
  1117. "__id__": 22
  1118. },
  1119. "_children": [
  1120. {
  1121. "__id__": 32
  1122. }
  1123. ],
  1124. "_active": true,
  1125. "_level": 8,
  1126. "_components": [
  1127. {
  1128. "__id__": 36
  1129. },
  1130. {
  1131. "__id__": 37
  1132. }
  1133. ],
  1134. "_prefab": {
  1135. "__id__": 38
  1136. },
  1137. "_opacity": 255,
  1138. "_color": {
  1139. "__type__": "cc.Color",
  1140. "r": 42,
  1141. "g": 155,
  1142. "b": 200,
  1143. "a": 255
  1144. },
  1145. "_contentSize": {
  1146. "__type__": "cc.Size",
  1147. "width": 122,
  1148. "height": 39.8
  1149. },
  1150. "_anchorPoint": {
  1151. "__type__": "cc.Vec2",
  1152. "x": 0.5,
  1153. "y": 0.5
  1154. },
  1155. "_position": {
  1156. "__type__": "cc.Vec3",
  1157. "x": -132.046,
  1158. "y": -23.144,
  1159. "z": 0
  1160. },
  1161. "_scale": {
  1162. "__type__": "cc.Vec3",
  1163. "x": 1,
  1164. "y": 1,
  1165. "z": 1
  1166. },
  1167. "_eulerAngles": {
  1168. "__type__": "cc.Vec3",
  1169. "x": 0,
  1170. "y": 0,
  1171. "z": 0
  1172. },
  1173. "_skewX": 0,
  1174. "_skewY": 0,
  1175. "_is3DNode": false,
  1176. "groupIndex": 0,
  1177. "_id": ""
  1178. },
  1179. {
  1180. "__type__": "cc.Node",
  1181. "_name": "label",
  1182. "_objFlags": 0,
  1183. "_parent": {
  1184. "__id__": 31
  1185. },
  1186. "_children": [],
  1187. "_active": true,
  1188. "_level": 9,
  1189. "_components": [
  1190. {
  1191. "__id__": 33
  1192. },
  1193. {
  1194. "__id__": 34
  1195. }
  1196. ],
  1197. "_prefab": {
  1198. "__id__": 35
  1199. },
  1200. "_opacity": 255,
  1201. "_color": {
  1202. "__type__": "cc.Color",
  1203. "r": 255,
  1204. "g": 137,
  1205. "b": 165,
  1206. "a": 255
  1207. },
  1208. "_contentSize": {
  1209. "__type__": "cc.Size",
  1210. "width": 68.74,
  1211. "height": 52.4
  1212. },
  1213. "_anchorPoint": {
  1214. "__type__": "cc.Vec2",
  1215. "x": 0.5,
  1216. "y": 0.5
  1217. },
  1218. "_position": {
  1219. "__type__": "cc.Vec3",
  1220. "x": 137.328,
  1221. "y": 0,
  1222. "z": 0
  1223. },
  1224. "_scale": {
  1225. "__type__": "cc.Vec3",
  1226. "x": 1,
  1227. "y": 1,
  1228. "z": 1
  1229. },
  1230. "_eulerAngles": {
  1231. "__type__": "cc.Vec3",
  1232. "x": 0,
  1233. "y": 0,
  1234. "z": 0
  1235. },
  1236. "_skewX": 0,
  1237. "_skewY": 0,
  1238. "_is3DNode": false,
  1239. "groupIndex": 0,
  1240. "_id": ""
  1241. },
  1242. {
  1243. "__type__": "cc.Label",
  1244. "_name": "",
  1245. "_objFlags": 0,
  1246. "node": {
  1247. "__id__": 32
  1248. },
  1249. "_enabled": true,
  1250. "_materials": [
  1251. {
  1252. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1253. }
  1254. ],
  1255. "_useOriginalSize": false,
  1256. "_string": "100",
  1257. "_N$string": "100",
  1258. "_fontSize": 40,
  1259. "_lineHeight": 40,
  1260. "_enableWrapText": true,
  1261. "_N$file": null,
  1262. "_isSystemFontUsed": true,
  1263. "_spacingX": 0,
  1264. "_batchAsBitmap": false,
  1265. "_N$horizontalAlign": 0,
  1266. "_N$verticalAlign": 1,
  1267. "_N$fontFamily": "Arial",
  1268. "_N$overflow": 0,
  1269. "_N$cacheMode": 0,
  1270. "_id": ""
  1271. },
  1272. {
  1273. "__type__": "cc.LabelOutline",
  1274. "_name": "",
  1275. "_objFlags": 0,
  1276. "node": {
  1277. "__id__": 32
  1278. },
  1279. "_enabled": true,
  1280. "_color": {
  1281. "__type__": "cc.Color",
  1282. "r": 255,
  1283. "g": 137,
  1284. "b": 165,
  1285. "a": 255
  1286. },
  1287. "_width": 1,
  1288. "_id": ""
  1289. },
  1290. {
  1291. "__type__": "cc.PrefabInfo",
  1292. "root": {
  1293. "__id__": 1
  1294. },
  1295. "asset": {
  1296. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  1297. },
  1298. "fileId": "a8CDyjhzhCnKWyGqnd+Y23",
  1299. "sync": false
  1300. },
  1301. {
  1302. "__type__": "cc.Label",
  1303. "_name": "",
  1304. "_objFlags": 0,
  1305. "node": {
  1306. "__id__": 31
  1307. },
  1308. "_enabled": true,
  1309. "_materials": [
  1310. {
  1311. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1312. }
  1313. ],
  1314. "_useOriginalSize": false,
  1315. "_string": "总数量:",
  1316. "_N$string": "总数量:",
  1317. "_fontSize": 30,
  1318. "_lineHeight": 30,
  1319. "_enableWrapText": true,
  1320. "_N$file": null,
  1321. "_isSystemFontUsed": true,
  1322. "_spacingX": 0,
  1323. "_batchAsBitmap": false,
  1324. "_N$horizontalAlign": 1,
  1325. "_N$verticalAlign": 1,
  1326. "_N$fontFamily": "Arial",
  1327. "_N$overflow": 0,
  1328. "_N$cacheMode": 0,
  1329. "_id": ""
  1330. },
  1331. {
  1332. "__type__": "cc.LabelOutline",
  1333. "_name": "",
  1334. "_objFlags": 0,
  1335. "node": {
  1336. "__id__": 31
  1337. },
  1338. "_enabled": true,
  1339. "_color": {
  1340. "__type__": "cc.Color",
  1341. "r": 42,
  1342. "g": 155,
  1343. "b": 200,
  1344. "a": 255
  1345. },
  1346. "_width": 1,
  1347. "_id": ""
  1348. },
  1349. {
  1350. "__type__": "cc.PrefabInfo",
  1351. "root": {
  1352. "__id__": 1
  1353. },
  1354. "asset": {
  1355. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  1356. },
  1357. "fileId": "55frcQNONKWZb3Mom5uz4h",
  1358. "sync": false
  1359. },
  1360. {
  1361. "__type__": "cc.Sprite",
  1362. "_name": "",
  1363. "_objFlags": 0,
  1364. "node": {
  1365. "__id__": 22
  1366. },
  1367. "_enabled": true,
  1368. "_materials": [
  1369. {
  1370. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1371. }
  1372. ],
  1373. "_srcBlendFactor": 770,
  1374. "_dstBlendFactor": 771,
  1375. "_spriteFrame": {
  1376. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1377. },
  1378. "_type": 0,
  1379. "_sizeMode": 0,
  1380. "_fillType": 0,
  1381. "_fillCenter": {
  1382. "__type__": "cc.Vec2",
  1383. "x": 0,
  1384. "y": 0
  1385. },
  1386. "_fillStart": 0,
  1387. "_fillRange": 0,
  1388. "_isTrimmedMode": true,
  1389. "_atlas": null,
  1390. "_id": ""
  1391. },
  1392. {
  1393. "__type__": "cc.PrefabInfo",
  1394. "root": {
  1395. "__id__": 1
  1396. },
  1397. "asset": {
  1398. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  1399. },
  1400. "fileId": "fboEEKqlFOIKbnUC9X3ZdA",
  1401. "sync": false
  1402. },
  1403. {
  1404. "__type__": "cc.Node",
  1405. "_name": "NumLabel",
  1406. "_objFlags": 0,
  1407. "_parent": {
  1408. "__id__": 6
  1409. },
  1410. "_children": [
  1411. {
  1412. "__id__": 42
  1413. },
  1414. {
  1415. "__id__": 46
  1416. }
  1417. ],
  1418. "_active": true,
  1419. "_level": 7,
  1420. "_components": [
  1421. {
  1422. "__id__": 63
  1423. },
  1424. {
  1425. "__id__": 64
  1426. }
  1427. ],
  1428. "_prefab": {
  1429. "__id__": 65
  1430. },
  1431. "_opacity": 255,
  1432. "_color": {
  1433. "__type__": "cc.Color",
  1434. "r": 42,
  1435. "g": 155,
  1436. "b": 200,
  1437. "a": 255
  1438. },
  1439. "_contentSize": {
  1440. "__type__": "cc.Size",
  1441. "width": 152,
  1442. "height": 39.8
  1443. },
  1444. "_anchorPoint": {
  1445. "__type__": "cc.Vec2",
  1446. "x": 0.5,
  1447. "y": 0.5
  1448. },
  1449. "_position": {
  1450. "__type__": "cc.Vec3",
  1451. "x": -132.046,
  1452. "y": -57.63,
  1453. "z": 0
  1454. },
  1455. "_scale": {
  1456. "__type__": "cc.Vec3",
  1457. "x": 1,
  1458. "y": 1,
  1459. "z": 1
  1460. },
  1461. "_eulerAngles": {
  1462. "__type__": "cc.Vec3",
  1463. "x": 0,
  1464. "y": 0,
  1465. "z": 0
  1466. },
  1467. "_skewX": 0,
  1468. "_skewY": 0,
  1469. "_is3DNode": false,
  1470. "groupIndex": 0,
  1471. "_id": ""
  1472. },
  1473. {
  1474. "__type__": "cc.Node",
  1475. "_name": "label",
  1476. "_objFlags": 0,
  1477. "_parent": {
  1478. "__id__": 41
  1479. },
  1480. "_children": [],
  1481. "_active": true,
  1482. "_level": 9,
  1483. "_components": [
  1484. {
  1485. "__id__": 43
  1486. },
  1487. {
  1488. "__id__": 44
  1489. }
  1490. ],
  1491. "_prefab": {
  1492. "__id__": 45
  1493. },
  1494. "_opacity": 255,
  1495. "_color": {
  1496. "__type__": "cc.Color",
  1497. "r": 255,
  1498. "g": 137,
  1499. "b": 165,
  1500. "a": 255
  1501. },
  1502. "_contentSize": {
  1503. "__type__": "cc.Size",
  1504. "width": 68.74,
  1505. "height": 52.4
  1506. },
  1507. "_anchorPoint": {
  1508. "__type__": "cc.Vec2",
  1509. "x": 0.5,
  1510. "y": 0.5
  1511. },
  1512. "_position": {
  1513. "__type__": "cc.Vec3",
  1514. "x": 137.328,
  1515. "y": 0,
  1516. "z": 0
  1517. },
  1518. "_scale": {
  1519. "__type__": "cc.Vec3",
  1520. "x": 1,
  1521. "y": 1,
  1522. "z": 1
  1523. },
  1524. "_eulerAngles": {
  1525. "__type__": "cc.Vec3",
  1526. "x": 0,
  1527. "y": 0,
  1528. "z": 0
  1529. },
  1530. "_skewX": 0,
  1531. "_skewY": 0,
  1532. "_is3DNode": false,
  1533. "groupIndex": 0,
  1534. "_id": ""
  1535. },
  1536. {
  1537. "__type__": "cc.Label",
  1538. "_name": "",
  1539. "_objFlags": 0,
  1540. "node": {
  1541. "__id__": 42
  1542. },
  1543. "_enabled": true,
  1544. "_materials": [
  1545. {
  1546. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1547. }
  1548. ],
  1549. "_useOriginalSize": false,
  1550. "_string": "100",
  1551. "_N$string": "100",
  1552. "_fontSize": 40,
  1553. "_lineHeight": 40,
  1554. "_enableWrapText": true,
  1555. "_N$file": null,
  1556. "_isSystemFontUsed": true,
  1557. "_spacingX": 0,
  1558. "_batchAsBitmap": false,
  1559. "_N$horizontalAlign": 0,
  1560. "_N$verticalAlign": 1,
  1561. "_N$fontFamily": "Arial",
  1562. "_N$overflow": 0,
  1563. "_N$cacheMode": 0,
  1564. "_id": ""
  1565. },
  1566. {
  1567. "__type__": "cc.LabelOutline",
  1568. "_name": "",
  1569. "_objFlags": 0,
  1570. "node": {
  1571. "__id__": 42
  1572. },
  1573. "_enabled": true,
  1574. "_color": {
  1575. "__type__": "cc.Color",
  1576. "r": 255,
  1577. "g": 137,
  1578. "b": 165,
  1579. "a": 255
  1580. },
  1581. "_width": 1,
  1582. "_id": ""
  1583. },
  1584. {
  1585. "__type__": "cc.PrefabInfo",
  1586. "root": {
  1587. "__id__": 1
  1588. },
  1589. "asset": {
  1590. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  1591. },
  1592. "fileId": "97i0/tZkNLzbpnd9rh0iqW",
  1593. "sync": false
  1594. },
  1595. {
  1596. "__type__": "cc.Node",
  1597. "_name": "editbox",
  1598. "_objFlags": 0,
  1599. "_parent": {
  1600. "__id__": 41
  1601. },
  1602. "_children": [
  1603. {
  1604. "__id__": 47
  1605. },
  1606. {
  1607. "__id__": 51
  1608. },
  1609. {
  1610. "__id__": 56
  1611. }
  1612. ],
  1613. "_active": true,
  1614. "_level": 7,
  1615. "_components": [
  1616. {
  1617. "__id__": 60
  1618. }
  1619. ],
  1620. "_prefab": {
  1621. "__id__": 62
  1622. },
  1623. "_opacity": 255,
  1624. "_color": {
  1625. "__type__": "cc.Color",
  1626. "r": 228,
  1627. "g": 244,
  1628. "b": 249,
  1629. "a": 255
  1630. },
  1631. "_contentSize": {
  1632. "__type__": "cc.Size",
  1633. "width": 160,
  1634. "height": 40
  1635. },
  1636. "_anchorPoint": {
  1637. "__type__": "cc.Vec2",
  1638. "x": 0.5,
  1639. "y": 0.5
  1640. },
  1641. "_position": {
  1642. "__type__": "cc.Vec3",
  1643. "x": 156.336,
  1644. "y": 0,
  1645. "z": 0
  1646. },
  1647. "_scale": {
  1648. "__type__": "cc.Vec3",
  1649. "x": 1,
  1650. "y": 1,
  1651. "z": 1
  1652. },
  1653. "_eulerAngles": {
  1654. "__type__": "cc.Vec3",
  1655. "x": 0,
  1656. "y": 0,
  1657. "z": 0
  1658. },
  1659. "_skewX": 0,
  1660. "_skewY": 0,
  1661. "_is3DNode": false,
  1662. "groupIndex": 0,
  1663. "_id": ""
  1664. },
  1665. {
  1666. "__type__": "cc.Node",
  1667. "_name": "BACKGROUND_SPRITE",
  1668. "_objFlags": 0,
  1669. "_parent": {
  1670. "__id__": 46
  1671. },
  1672. "_children": [],
  1673. "_active": true,
  1674. "_level": 2,
  1675. "_components": [
  1676. {
  1677. "__id__": 48
  1678. },
  1679. {
  1680. "__id__": 49
  1681. }
  1682. ],
  1683. "_prefab": {
  1684. "__id__": 50
  1685. },
  1686. "_opacity": 255,
  1687. "_color": {
  1688. "__type__": "cc.Color",
  1689. "r": 228,
  1690. "g": 244,
  1691. "b": 249,
  1692. "a": 255
  1693. },
  1694. "_contentSize": {
  1695. "__type__": "cc.Size",
  1696. "width": 160,
  1697. "height": 40
  1698. },
  1699. "_anchorPoint": {
  1700. "__type__": "cc.Vec2",
  1701. "x": 0.5,
  1702. "y": 0.5
  1703. },
  1704. "_position": {
  1705. "__type__": "cc.Vec3",
  1706. "x": 0,
  1707. "y": 0,
  1708. "z": 0
  1709. },
  1710. "_scale": {
  1711. "__type__": "cc.Vec3",
  1712. "x": 1,
  1713. "y": 1,
  1714. "z": 1
  1715. },
  1716. "_eulerAngles": {
  1717. "__type__": "cc.Vec3",
  1718. "x": 0,
  1719. "y": 0,
  1720. "z": 0
  1721. },
  1722. "_skewX": 0,
  1723. "_skewY": 0,
  1724. "_is3DNode": false,
  1725. "groupIndex": 0,
  1726. "_id": ""
  1727. },
  1728. {
  1729. "__type__": "cc.Sprite",
  1730. "_name": "",
  1731. "_objFlags": 0,
  1732. "node": {
  1733. "__id__": 47
  1734. },
  1735. "_enabled": true,
  1736. "_materials": [
  1737. {
  1738. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1739. }
  1740. ],
  1741. "_srcBlendFactor": 770,
  1742. "_dstBlendFactor": 771,
  1743. "_spriteFrame": {
  1744. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1745. },
  1746. "_type": 0,
  1747. "_sizeMode": 0,
  1748. "_fillType": 0,
  1749. "_fillCenter": {
  1750. "__type__": "cc.Vec2",
  1751. "x": 0,
  1752. "y": 0
  1753. },
  1754. "_fillStart": 0,
  1755. "_fillRange": 0,
  1756. "_isTrimmedMode": true,
  1757. "_atlas": null,
  1758. "_id": ""
  1759. },
  1760. {
  1761. "__type__": "cc.Widget",
  1762. "_name": "",
  1763. "_objFlags": 0,
  1764. "node": {
  1765. "__id__": 47
  1766. },
  1767. "_enabled": true,
  1768. "alignMode": 0,
  1769. "_target": null,
  1770. "_alignFlags": 45,
  1771. "_left": 0,
  1772. "_right": 0,
  1773. "_top": 0,
  1774. "_bottom": 0,
  1775. "_verticalCenter": 0,
  1776. "_horizontalCenter": 0,
  1777. "_isAbsLeft": true,
  1778. "_isAbsRight": true,
  1779. "_isAbsTop": true,
  1780. "_isAbsBottom": true,
  1781. "_isAbsHorizontalCenter": true,
  1782. "_isAbsVerticalCenter": true,
  1783. "_originalWidth": 160,
  1784. "_originalHeight": 40,
  1785. "_id": ""
  1786. },
  1787. {
  1788. "__type__": "cc.PrefabInfo",
  1789. "root": {
  1790. "__id__": 1
  1791. },
  1792. "asset": {
  1793. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  1794. },
  1795. "fileId": "aftBtCGbRIFqzfvfe0Zgeo",
  1796. "sync": false
  1797. },
  1798. {
  1799. "__type__": "cc.Node",
  1800. "_name": "TEXT_LABEL",
  1801. "_objFlags": 0,
  1802. "_parent": {
  1803. "__id__": 46
  1804. },
  1805. "_children": [],
  1806. "_active": false,
  1807. "_level": 2,
  1808. "_components": [
  1809. {
  1810. "__id__": 52
  1811. },
  1812. {
  1813. "__id__": 53
  1814. },
  1815. {
  1816. "__id__": 54
  1817. }
  1818. ],
  1819. "_prefab": {
  1820. "__id__": 55
  1821. },
  1822. "_opacity": 255,
  1823. "_color": {
  1824. "__type__": "cc.Color",
  1825. "r": 129,
  1826. "g": 180,
  1827. "b": 200,
  1828. "a": 255
  1829. },
  1830. "_contentSize": {
  1831. "__type__": "cc.Size",
  1832. "width": 158,
  1833. "height": 40
  1834. },
  1835. "_anchorPoint": {
  1836. "__type__": "cc.Vec2",
  1837. "x": 0,
  1838. "y": 1
  1839. },
  1840. "_position": {
  1841. "__type__": "cc.Vec3",
  1842. "x": -78,
  1843. "y": 20,
  1844. "z": 0
  1845. },
  1846. "_scale": {
  1847. "__type__": "cc.Vec3",
  1848. "x": 1,
  1849. "y": 1,
  1850. "z": 1
  1851. },
  1852. "_eulerAngles": {
  1853. "__type__": "cc.Vec3",
  1854. "x": 0,
  1855. "y": 0,
  1856. "z": 0
  1857. },
  1858. "_skewX": 0,
  1859. "_skewY": 0,
  1860. "_is3DNode": false,
  1861. "groupIndex": 0,
  1862. "_id": ""
  1863. },
  1864. {
  1865. "__type__": "cc.Label",
  1866. "_name": "",
  1867. "_objFlags": 0,
  1868. "node": {
  1869. "__id__": 51
  1870. },
  1871. "_enabled": true,
  1872. "_materials": [],
  1873. "_useOriginalSize": true,
  1874. "_string": "",
  1875. "_N$string": "",
  1876. "_fontSize": 20,
  1877. "_lineHeight": 25,
  1878. "_enableWrapText": false,
  1879. "_N$file": null,
  1880. "_isSystemFontUsed": true,
  1881. "_spacingX": 0,
  1882. "_batchAsBitmap": false,
  1883. "_N$horizontalAlign": 0,
  1884. "_N$verticalAlign": 1,
  1885. "_N$fontFamily": "Arial",
  1886. "_N$overflow": 1,
  1887. "_N$cacheMode": 0,
  1888. "_id": ""
  1889. },
  1890. {
  1891. "__type__": "cc.Widget",
  1892. "_name": "",
  1893. "_objFlags": 0,
  1894. "node": {
  1895. "__id__": 51
  1896. },
  1897. "_enabled": true,
  1898. "alignMode": 0,
  1899. "_target": null,
  1900. "_alignFlags": 45,
  1901. "_left": 2,
  1902. "_right": 0,
  1903. "_top": 0,
  1904. "_bottom": 0,
  1905. "_verticalCenter": 0,
  1906. "_horizontalCenter": 0,
  1907. "_isAbsLeft": true,
  1908. "_isAbsRight": true,
  1909. "_isAbsTop": true,
  1910. "_isAbsBottom": true,
  1911. "_isAbsHorizontalCenter": true,
  1912. "_isAbsVerticalCenter": true,
  1913. "_originalWidth": 158,
  1914. "_originalHeight": 40,
  1915. "_id": ""
  1916. },
  1917. {
  1918. "__type__": "cc.LabelOutline",
  1919. "_name": "",
  1920. "_objFlags": 0,
  1921. "node": {
  1922. "__id__": 51
  1923. },
  1924. "_enabled": true,
  1925. "_color": {
  1926. "__type__": "cc.Color",
  1927. "r": 255,
  1928. "g": 137,
  1929. "b": 165,
  1930. "a": 255
  1931. },
  1932. "_width": 1,
  1933. "_id": ""
  1934. },
  1935. {
  1936. "__type__": "cc.PrefabInfo",
  1937. "root": {
  1938. "__id__": 1
  1939. },
  1940. "asset": {
  1941. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  1942. },
  1943. "fileId": "2dvdjYHxpD96T3G4p/EqL3",
  1944. "sync": false
  1945. },
  1946. {
  1947. "__type__": "cc.Node",
  1948. "_name": "PLACEHOLDER_LABEL",
  1949. "_objFlags": 0,
  1950. "_parent": {
  1951. "__id__": 46
  1952. },
  1953. "_children": [],
  1954. "_active": true,
  1955. "_level": 2,
  1956. "_components": [
  1957. {
  1958. "__id__": 57
  1959. },
  1960. {
  1961. "__id__": 58
  1962. }
  1963. ],
  1964. "_prefab": {
  1965. "__id__": 59
  1966. },
  1967. "_opacity": 255,
  1968. "_color": {
  1969. "__type__": "cc.Color",
  1970. "r": 129,
  1971. "g": 180,
  1972. "b": 200,
  1973. "a": 255
  1974. },
  1975. "_contentSize": {
  1976. "__type__": "cc.Size",
  1977. "width": 158,
  1978. "height": 40
  1979. },
  1980. "_anchorPoint": {
  1981. "__type__": "cc.Vec2",
  1982. "x": 0,
  1983. "y": 1
  1984. },
  1985. "_position": {
  1986. "__type__": "cc.Vec3",
  1987. "x": -78,
  1988. "y": 20,
  1989. "z": 0
  1990. },
  1991. "_scale": {
  1992. "__type__": "cc.Vec3",
  1993. "x": 1,
  1994. "y": 1,
  1995. "z": 1
  1996. },
  1997. "_eulerAngles": {
  1998. "__type__": "cc.Vec3",
  1999. "x": 0,
  2000. "y": 0,
  2001. "z": 0
  2002. },
  2003. "_skewX": 0,
  2004. "_skewY": 0,
  2005. "_is3DNode": false,
  2006. "groupIndex": 0,
  2007. "_id": ""
  2008. },
  2009. {
  2010. "__type__": "cc.Label",
  2011. "_name": "",
  2012. "_objFlags": 0,
  2013. "node": {
  2014. "__id__": 56
  2015. },
  2016. "_enabled": true,
  2017. "_materials": [
  2018. {
  2019. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2020. }
  2021. ],
  2022. "_useOriginalSize": true,
  2023. "_string": "被赠予用户账号地址",
  2024. "_N$string": "被赠予用户账号地址",
  2025. "_fontSize": 20,
  2026. "_lineHeight": 25,
  2027. "_enableWrapText": false,
  2028. "_N$file": null,
  2029. "_isSystemFontUsed": true,
  2030. "_spacingX": 0,
  2031. "_batchAsBitmap": false,
  2032. "_N$horizontalAlign": 0,
  2033. "_N$verticalAlign": 1,
  2034. "_N$fontFamily": "Arial",
  2035. "_N$overflow": 1,
  2036. "_N$cacheMode": 0,
  2037. "_id": ""
  2038. },
  2039. {
  2040. "__type__": "cc.Widget",
  2041. "_name": "",
  2042. "_objFlags": 0,
  2043. "node": {
  2044. "__id__": 56
  2045. },
  2046. "_enabled": true,
  2047. "alignMode": 0,
  2048. "_target": null,
  2049. "_alignFlags": 45,
  2050. "_left": 2,
  2051. "_right": 0,
  2052. "_top": 0,
  2053. "_bottom": 0,
  2054. "_verticalCenter": 0,
  2055. "_horizontalCenter": 0,
  2056. "_isAbsLeft": true,
  2057. "_isAbsRight": true,
  2058. "_isAbsTop": true,
  2059. "_isAbsBottom": true,
  2060. "_isAbsHorizontalCenter": true,
  2061. "_isAbsVerticalCenter": true,
  2062. "_originalWidth": 158,
  2063. "_originalHeight": 40,
  2064. "_id": ""
  2065. },
  2066. {
  2067. "__type__": "cc.PrefabInfo",
  2068. "root": {
  2069. "__id__": 1
  2070. },
  2071. "asset": {
  2072. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  2073. },
  2074. "fileId": "8eZKLPGJhI/bq2Dqgd0wTU",
  2075. "sync": false
  2076. },
  2077. {
  2078. "__type__": "cc.EditBox",
  2079. "_name": "",
  2080. "_objFlags": 0,
  2081. "node": {
  2082. "__id__": 46
  2083. },
  2084. "_enabled": true,
  2085. "_useOriginalSize": false,
  2086. "_string": "",
  2087. "returnType": 0,
  2088. "maxLength": 8,
  2089. "_tabIndex": 0,
  2090. "editingDidBegan": [],
  2091. "textChanged": [
  2092. {
  2093. "__id__": 61
  2094. }
  2095. ],
  2096. "editingDidEnded": [],
  2097. "editingReturn": [],
  2098. "_N$textLabel": {
  2099. "__id__": 52
  2100. },
  2101. "_N$placeholderLabel": {
  2102. "__id__": 57
  2103. },
  2104. "_N$background": {
  2105. "__id__": 48
  2106. },
  2107. "_N$inputFlag": 5,
  2108. "_N$inputMode": 6,
  2109. "_N$stayOnTop": false,
  2110. "_id": ""
  2111. },
  2112. {
  2113. "__type__": "cc.ClickEvent",
  2114. "target": {
  2115. "__id__": 1
  2116. },
  2117. "component": "",
  2118. "_componentId": "2fbecbi51RFK5CVmi4gkU3e",
  2119. "handler": "inputValue",
  2120. "customEventData": ""
  2121. },
  2122. {
  2123. "__type__": "cc.PrefabInfo",
  2124. "root": {
  2125. "__id__": 1
  2126. },
  2127. "asset": {
  2128. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  2129. },
  2130. "fileId": "424+TxyGBFy4ahMiH1BfYv",
  2131. "sync": false
  2132. },
  2133. {
  2134. "__type__": "cc.Label",
  2135. "_name": "",
  2136. "_objFlags": 0,
  2137. "node": {
  2138. "__id__": 41
  2139. },
  2140. "_enabled": true,
  2141. "_materials": [
  2142. {
  2143. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2144. }
  2145. ],
  2146. "_useOriginalSize": false,
  2147. "_string": "出售数量:",
  2148. "_N$string": "出售数量:",
  2149. "_fontSize": 30,
  2150. "_lineHeight": 30,
  2151. "_enableWrapText": true,
  2152. "_N$file": null,
  2153. "_isSystemFontUsed": true,
  2154. "_spacingX": 0,
  2155. "_batchAsBitmap": false,
  2156. "_N$horizontalAlign": 1,
  2157. "_N$verticalAlign": 1,
  2158. "_N$fontFamily": "Arial",
  2159. "_N$overflow": 0,
  2160. "_N$cacheMode": 0,
  2161. "_id": ""
  2162. },
  2163. {
  2164. "__type__": "cc.LabelOutline",
  2165. "_name": "",
  2166. "_objFlags": 0,
  2167. "node": {
  2168. "__id__": 41
  2169. },
  2170. "_enabled": true,
  2171. "_color": {
  2172. "__type__": "cc.Color",
  2173. "r": 42,
  2174. "g": 155,
  2175. "b": 200,
  2176. "a": 255
  2177. },
  2178. "_width": 1,
  2179. "_id": ""
  2180. },
  2181. {
  2182. "__type__": "cc.PrefabInfo",
  2183. "root": {
  2184. "__id__": 1
  2185. },
  2186. "asset": {
  2187. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  2188. },
  2189. "fileId": "52o+ZZRQtKmqonhTTlZ4gC",
  2190. "sync": false
  2191. },
  2192. {
  2193. "__type__": "cc.Node",
  2194. "_name": "button",
  2195. "_objFlags": 0,
  2196. "_parent": {
  2197. "__id__": 6
  2198. },
  2199. "_children": [
  2200. {
  2201. "__id__": 67
  2202. }
  2203. ],
  2204. "_active": true,
  2205. "_level": 7,
  2206. "_components": [
  2207. {
  2208. "__id__": 74
  2209. }
  2210. ],
  2211. "_prefab": {
  2212. "__id__": 75
  2213. },
  2214. "_opacity": 255,
  2215. "_color": {
  2216. "__type__": "cc.Color",
  2217. "r": 255,
  2218. "g": 255,
  2219. "b": 255,
  2220. "a": 255
  2221. },
  2222. "_contentSize": {
  2223. "__type__": "cc.Size",
  2224. "width": 80,
  2225. "height": 43
  2226. },
  2227. "_anchorPoint": {
  2228. "__type__": "cc.Vec2",
  2229. "x": 0.5,
  2230. "y": 0.5
  2231. },
  2232. "_position": {
  2233. "__type__": "cc.Vec3",
  2234. "x": 0,
  2235. "y": -135.644,
  2236. "z": 0
  2237. },
  2238. "_scale": {
  2239. "__type__": "cc.Vec3",
  2240. "x": 1.5,
  2241. "y": 1.5,
  2242. "z": 1
  2243. },
  2244. "_eulerAngles": {
  2245. "__type__": "cc.Vec3",
  2246. "x": 0,
  2247. "y": 0,
  2248. "z": 0
  2249. },
  2250. "_skewX": 0,
  2251. "_skewY": 0,
  2252. "_is3DNode": false,
  2253. "groupIndex": 0,
  2254. "_id": ""
  2255. },
  2256. {
  2257. "__type__": "cc.Node",
  2258. "_name": "Background",
  2259. "_objFlags": 0,
  2260. "_parent": {
  2261. "__id__": 66
  2262. },
  2263. "_children": [
  2264. {
  2265. "__id__": 68
  2266. }
  2267. ],
  2268. "_active": true,
  2269. "_level": 2,
  2270. "_components": [
  2271. {
  2272. "__id__": 71
  2273. },
  2274. {
  2275. "__id__": 72
  2276. }
  2277. ],
  2278. "_prefab": {
  2279. "__id__": 73
  2280. },
  2281. "_opacity": 255,
  2282. "_color": {
  2283. "__type__": "cc.Color",
  2284. "r": 255,
  2285. "g": 255,
  2286. "b": 255,
  2287. "a": 255
  2288. },
  2289. "_contentSize": {
  2290. "__type__": "cc.Size",
  2291. "width": 80,
  2292. "height": 43
  2293. },
  2294. "_anchorPoint": {
  2295. "__type__": "cc.Vec2",
  2296. "x": 0.5,
  2297. "y": 0.5
  2298. },
  2299. "_position": {
  2300. "__type__": "cc.Vec3",
  2301. "x": 0,
  2302. "y": 0,
  2303. "z": 0
  2304. },
  2305. "_scale": {
  2306. "__type__": "cc.Vec3",
  2307. "x": 1,
  2308. "y": 1,
  2309. "z": 1
  2310. },
  2311. "_eulerAngles": {
  2312. "__type__": "cc.Vec3",
  2313. "x": 0,
  2314. "y": 0,
  2315. "z": 0
  2316. },
  2317. "_skewX": 0,
  2318. "_skewY": 0,
  2319. "_is3DNode": false,
  2320. "groupIndex": 0,
  2321. "_id": ""
  2322. },
  2323. {
  2324. "__type__": "cc.Node",
  2325. "_name": "Label",
  2326. "_objFlags": 0,
  2327. "_parent": {
  2328. "__id__": 67
  2329. },
  2330. "_children": [],
  2331. "_active": true,
  2332. "_level": 3,
  2333. "_components": [
  2334. {
  2335. "__id__": 69
  2336. }
  2337. ],
  2338. "_prefab": {
  2339. "__id__": 70
  2340. },
  2341. "_opacity": 255,
  2342. "_color": {
  2343. "__type__": "cc.Color",
  2344. "r": 0,
  2345. "g": 0,
  2346. "b": 0,
  2347. "a": 255
  2348. },
  2349. "_contentSize": {
  2350. "__type__": "cc.Size",
  2351. "width": 100,
  2352. "height": 40
  2353. },
  2354. "_anchorPoint": {
  2355. "__type__": "cc.Vec2",
  2356. "x": 0.5,
  2357. "y": 0.5
  2358. },
  2359. "_position": {
  2360. "__type__": "cc.Vec3",
  2361. "x": 0,
  2362. "y": 0,
  2363. "z": 0
  2364. },
  2365. "_scale": {
  2366. "__type__": "cc.Vec3",
  2367. "x": 1,
  2368. "y": 1,
  2369. "z": 1
  2370. },
  2371. "_eulerAngles": {
  2372. "__type__": "cc.Vec3",
  2373. "x": 0,
  2374. "y": 0,
  2375. "z": 0
  2376. },
  2377. "_skewX": 0,
  2378. "_skewY": 0,
  2379. "_is3DNode": false,
  2380. "groupIndex": 0,
  2381. "_id": ""
  2382. },
  2383. {
  2384. "__type__": "cc.Label",
  2385. "_name": "",
  2386. "_objFlags": 0,
  2387. "node": {
  2388. "__id__": 68
  2389. },
  2390. "_enabled": true,
  2391. "_materials": [
  2392. {
  2393. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2394. }
  2395. ],
  2396. "_useOriginalSize": false,
  2397. "_string": "",
  2398. "_N$string": "",
  2399. "_fontSize": 20,
  2400. "_lineHeight": 40,
  2401. "_enableWrapText": false,
  2402. "_N$file": null,
  2403. "_isSystemFontUsed": true,
  2404. "_spacingX": 0,
  2405. "_batchAsBitmap": false,
  2406. "_N$horizontalAlign": 1,
  2407. "_N$verticalAlign": 1,
  2408. "_N$fontFamily": "Arial",
  2409. "_N$overflow": 1,
  2410. "_N$cacheMode": 0,
  2411. "_id": ""
  2412. },
  2413. {
  2414. "__type__": "cc.PrefabInfo",
  2415. "root": {
  2416. "__id__": 1
  2417. },
  2418. "asset": {
  2419. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  2420. },
  2421. "fileId": "96KhHZI4NLpJfQLOHj8sP3",
  2422. "sync": false
  2423. },
  2424. {
  2425. "__type__": "cc.Sprite",
  2426. "_name": "",
  2427. "_objFlags": 0,
  2428. "node": {
  2429. "__id__": 67
  2430. },
  2431. "_enabled": true,
  2432. "_materials": [
  2433. {
  2434. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2435. }
  2436. ],
  2437. "_srcBlendFactor": 770,
  2438. "_dstBlendFactor": 771,
  2439. "_spriteFrame": {
  2440. "__uuid__": "30b277f2-db20-4081-9ad1-f2e6be16bf10"
  2441. },
  2442. "_type": 1,
  2443. "_sizeMode": 0,
  2444. "_fillType": 0,
  2445. "_fillCenter": {
  2446. "__type__": "cc.Vec2",
  2447. "x": 0,
  2448. "y": 0
  2449. },
  2450. "_fillStart": 0,
  2451. "_fillRange": 0,
  2452. "_isTrimmedMode": true,
  2453. "_atlas": null,
  2454. "_id": ""
  2455. },
  2456. {
  2457. "__type__": "cc.Widget",
  2458. "_name": "",
  2459. "_objFlags": 0,
  2460. "node": {
  2461. "__id__": 67
  2462. },
  2463. "_enabled": true,
  2464. "alignMode": 0,
  2465. "_target": null,
  2466. "_alignFlags": 45,
  2467. "_left": 0,
  2468. "_right": 0,
  2469. "_top": 0,
  2470. "_bottom": 0,
  2471. "_verticalCenter": 0,
  2472. "_horizontalCenter": 0,
  2473. "_isAbsLeft": true,
  2474. "_isAbsRight": true,
  2475. "_isAbsTop": true,
  2476. "_isAbsBottom": true,
  2477. "_isAbsHorizontalCenter": true,
  2478. "_isAbsVerticalCenter": true,
  2479. "_originalWidth": 100,
  2480. "_originalHeight": 40,
  2481. "_id": ""
  2482. },
  2483. {
  2484. "__type__": "cc.PrefabInfo",
  2485. "root": {
  2486. "__id__": 1
  2487. },
  2488. "asset": {
  2489. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  2490. },
  2491. "fileId": "3fxBlbX8FCs54i81TBqZ3s",
  2492. "sync": false
  2493. },
  2494. {
  2495. "__type__": "cc.Button",
  2496. "_name": "",
  2497. "_objFlags": 0,
  2498. "node": {
  2499. "__id__": 66
  2500. },
  2501. "_enabled": true,
  2502. "duration": 0.1,
  2503. "zoomScale": 1.2,
  2504. "clickEvents": [
  2505. null
  2506. ],
  2507. "_N$interactable": true,
  2508. "_N$enableAutoGrayEffect": false,
  2509. "_N$transition": 2,
  2510. "transition": 2,
  2511. "_N$normalColor": {
  2512. "__type__": "cc.Color",
  2513. "r": 230,
  2514. "g": 230,
  2515. "b": 230,
  2516. "a": 255
  2517. },
  2518. "_N$pressedColor": {
  2519. "__type__": "cc.Color",
  2520. "r": 200,
  2521. "g": 200,
  2522. "b": 200,
  2523. "a": 255
  2524. },
  2525. "pressedColor": {
  2526. "__type__": "cc.Color",
  2527. "r": 200,
  2528. "g": 200,
  2529. "b": 200,
  2530. "a": 255
  2531. },
  2532. "_N$hoverColor": {
  2533. "__type__": "cc.Color",
  2534. "r": 255,
  2535. "g": 255,
  2536. "b": 255,
  2537. "a": 255
  2538. },
  2539. "hoverColor": {
  2540. "__type__": "cc.Color",
  2541. "r": 255,
  2542. "g": 255,
  2543. "b": 255,
  2544. "a": 255
  2545. },
  2546. "_N$disabledColor": {
  2547. "__type__": "cc.Color",
  2548. "r": 120,
  2549. "g": 120,
  2550. "b": 120,
  2551. "a": 200
  2552. },
  2553. "_N$normalSprite": {
  2554. "__uuid__": "30b277f2-db20-4081-9ad1-f2e6be16bf10"
  2555. },
  2556. "_N$pressedSprite": {
  2557. "__uuid__": "30b277f2-db20-4081-9ad1-f2e6be16bf10"
  2558. },
  2559. "pressedSprite": {
  2560. "__uuid__": "30b277f2-db20-4081-9ad1-f2e6be16bf10"
  2561. },
  2562. "_N$hoverSprite": {
  2563. "__uuid__": "30b277f2-db20-4081-9ad1-f2e6be16bf10"
  2564. },
  2565. "hoverSprite": {
  2566. "__uuid__": "30b277f2-db20-4081-9ad1-f2e6be16bf10"
  2567. },
  2568. "_N$disabledSprite": {
  2569. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2570. },
  2571. "_N$target": {
  2572. "__id__": 67
  2573. },
  2574. "_id": ""
  2575. },
  2576. {
  2577. "__type__": "cc.PrefabInfo",
  2578. "root": {
  2579. "__id__": 1
  2580. },
  2581. "asset": {
  2582. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  2583. },
  2584. "fileId": "38MmBi4r1KU6t98X0FIwu4",
  2585. "sync": false
  2586. },
  2587. {
  2588. "__type__": "cc.Sprite",
  2589. "_name": "",
  2590. "_objFlags": 0,
  2591. "node": {
  2592. "__id__": 6
  2593. },
  2594. "_enabled": true,
  2595. "_materials": [
  2596. {
  2597. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2598. }
  2599. ],
  2600. "_srcBlendFactor": 770,
  2601. "_dstBlendFactor": 771,
  2602. "_spriteFrame": {
  2603. "__uuid__": "6255e000-b232-46fd-9bb5-5b905fc61fe7"
  2604. },
  2605. "_type": 0,
  2606. "_sizeMode": 1,
  2607. "_fillType": 0,
  2608. "_fillCenter": {
  2609. "__type__": "cc.Vec2",
  2610. "x": 0,
  2611. "y": 0
  2612. },
  2613. "_fillStart": 0,
  2614. "_fillRange": 0,
  2615. "_isTrimmedMode": true,
  2616. "_atlas": null,
  2617. "_id": ""
  2618. },
  2619. {
  2620. "__type__": "cc.PrefabInfo",
  2621. "root": {
  2622. "__id__": 1
  2623. },
  2624. "asset": {
  2625. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  2626. },
  2627. "fileId": "451Y0R4WRMjqIHF30FJOis",
  2628. "sync": false
  2629. },
  2630. {
  2631. "__type__": "2fbecbi51RFK5CVmi4gkU3e",
  2632. "_name": "",
  2633. "_objFlags": 0,
  2634. "node": {
  2635. "__id__": 1
  2636. },
  2637. "_enabled": true,
  2638. "saleName": {
  2639. "__id__": 25
  2640. },
  2641. "saleAmount": {
  2642. "__id__": 33
  2643. },
  2644. "inputInviteValue": 1,
  2645. "_id": ""
  2646. },
  2647. {
  2648. "__type__": "cc.PrefabInfo",
  2649. "root": {
  2650. "__id__": 1
  2651. },
  2652. "asset": {
  2653. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  2654. },
  2655. "fileId": "85g0D4PO5BHrW+IrTKqTtn",
  2656. "sync": false
  2657. }
  2658. ]