DreamPopular.prefab 44 KB

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