food_view.prefab 44 KB

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