TopCell.prefab 53 KB

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