level_list.prefab 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "level_list",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "level_list",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 26
  26. },
  27. {
  28. "__id__": 78
  29. },
  30. {
  31. "__id__": 158
  32. }
  33. ],
  34. "_active": true,
  35. "_components": [
  36. {
  37. "__id__": 164
  38. },
  39. {
  40. "__id__": 166
  41. },
  42. {
  43. "__id__": 168
  44. },
  45. {
  46. "__id__": 170
  47. }
  48. ],
  49. "_prefab": {
  50. "__id__": 172
  51. },
  52. "_lpos": {
  53. "__type__": "cc.Vec3",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0
  57. },
  58. "_lrot": {
  59. "__type__": "cc.Quat",
  60. "x": 0,
  61. "y": 0,
  62. "z": 0,
  63. "w": 1
  64. },
  65. "_lscale": {
  66. "__type__": "cc.Vec3",
  67. "x": 1,
  68. "y": 1,
  69. "z": 1
  70. },
  71. "_mobility": 0,
  72. "_layer": 33554432,
  73. "_euler": {
  74. "__type__": "cc.Vec3",
  75. "x": 0,
  76. "y": 0,
  77. "z": 0
  78. },
  79. "_id": ""
  80. },
  81. {
  82. "__type__": "cc.Node",
  83. "_name": "ScrollView",
  84. "_objFlags": 0,
  85. "__editorExtras__": {},
  86. "_parent": {
  87. "__id__": 1
  88. },
  89. "_children": [
  90. {
  91. "__id__": 3
  92. }
  93. ],
  94. "_active": true,
  95. "_components": [
  96. {
  97. "__id__": 19
  98. },
  99. {
  100. "__id__": 21
  101. },
  102. {
  103. "__id__": 23
  104. }
  105. ],
  106. "_prefab": {
  107. "__id__": 25
  108. },
  109. "_lpos": {
  110. "__type__": "cc.Vec3",
  111. "x": 0,
  112. "y": 0,
  113. "z": 0
  114. },
  115. "_lrot": {
  116. "__type__": "cc.Quat",
  117. "x": 0,
  118. "y": 0,
  119. "z": 0,
  120. "w": 1
  121. },
  122. "_lscale": {
  123. "__type__": "cc.Vec3",
  124. "x": 1,
  125. "y": 1,
  126. "z": 1
  127. },
  128. "_mobility": 0,
  129. "_layer": 33554432,
  130. "_euler": {
  131. "__type__": "cc.Vec3",
  132. "x": 0,
  133. "y": 0,
  134. "z": 0
  135. },
  136. "_id": ""
  137. },
  138. {
  139. "__type__": "cc.Node",
  140. "_name": "view",
  141. "_objFlags": 0,
  142. "__editorExtras__": {},
  143. "_parent": {
  144. "__id__": 2
  145. },
  146. "_children": [
  147. {
  148. "__id__": 4
  149. }
  150. ],
  151. "_active": true,
  152. "_components": [
  153. {
  154. "__id__": 10
  155. },
  156. {
  157. "__id__": 12
  158. },
  159. {
  160. "__id__": 14
  161. },
  162. {
  163. "__id__": 16
  164. }
  165. ],
  166. "_prefab": {
  167. "__id__": 18
  168. },
  169. "_lpos": {
  170. "__type__": "cc.Vec3",
  171. "x": 0,
  172. "y": 0,
  173. "z": 0
  174. },
  175. "_lrot": {
  176. "__type__": "cc.Quat",
  177. "x": 0,
  178. "y": 0,
  179. "z": 0,
  180. "w": 1
  181. },
  182. "_lscale": {
  183. "__type__": "cc.Vec3",
  184. "x": 1,
  185. "y": 1,
  186. "z": 1
  187. },
  188. "_mobility": 0,
  189. "_layer": 33554432,
  190. "_euler": {
  191. "__type__": "cc.Vec3",
  192. "x": 0,
  193. "y": 0,
  194. "z": 0
  195. },
  196. "_id": ""
  197. },
  198. {
  199. "__type__": "cc.Node",
  200. "_name": "content",
  201. "_objFlags": 0,
  202. "__editorExtras__": {},
  203. "_parent": {
  204. "__id__": 3
  205. },
  206. "_children": [],
  207. "_active": true,
  208. "_components": [
  209. {
  210. "__id__": 5
  211. },
  212. {
  213. "__id__": 7
  214. }
  215. ],
  216. "_prefab": {
  217. "__id__": 9
  218. },
  219. "_lpos": {
  220. "__type__": "cc.Vec3",
  221. "x": -10,
  222. "y": 259.09,
  223. "z": 0
  224. },
  225. "_lrot": {
  226. "__type__": "cc.Quat",
  227. "x": 0,
  228. "y": 0,
  229. "z": 0,
  230. "w": 1
  231. },
  232. "_lscale": {
  233. "__type__": "cc.Vec3",
  234. "x": 1,
  235. "y": 1,
  236. "z": 1
  237. },
  238. "_mobility": 0,
  239. "_layer": 33554432,
  240. "_euler": {
  241. "__type__": "cc.Vec3",
  242. "x": 0,
  243. "y": 0,
  244. "z": 0
  245. },
  246. "_id": ""
  247. },
  248. {
  249. "__type__": "cc.UITransform",
  250. "_name": "",
  251. "_objFlags": 0,
  252. "__editorExtras__": {},
  253. "node": {
  254. "__id__": 4
  255. },
  256. "_enabled": true,
  257. "__prefab": {
  258. "__id__": 6
  259. },
  260. "_contentSize": {
  261. "__type__": "cc.Size",
  262. "width": 220,
  263. "height": -10
  264. },
  265. "_anchorPoint": {
  266. "__type__": "cc.Vec2",
  267. "x": 0.5,
  268. "y": 1
  269. },
  270. "_id": ""
  271. },
  272. {
  273. "__type__": "cc.CompPrefabInfo",
  274. "fileId": "8aWRLIAr5DSpypZqFZdJGp"
  275. },
  276. {
  277. "__type__": "cc.Layout",
  278. "_name": "",
  279. "_objFlags": 0,
  280. "__editorExtras__": {},
  281. "node": {
  282. "__id__": 4
  283. },
  284. "_enabled": true,
  285. "__prefab": {
  286. "__id__": 8
  287. },
  288. "_resizeMode": 1,
  289. "_layoutType": 2,
  290. "_cellSize": {
  291. "__type__": "cc.Size",
  292. "width": 40,
  293. "height": 40
  294. },
  295. "_startAxis": 0,
  296. "_paddingLeft": 0,
  297. "_paddingRight": 0,
  298. "_paddingTop": 0,
  299. "_paddingBottom": 0,
  300. "_spacingX": 0,
  301. "_spacingY": 10,
  302. "_verticalDirection": 1,
  303. "_horizontalDirection": 0,
  304. "_constraint": 0,
  305. "_constraintNum": 2,
  306. "_affectedByScale": false,
  307. "_isAlign": false,
  308. "_id": ""
  309. },
  310. {
  311. "__type__": "cc.CompPrefabInfo",
  312. "fileId": "21MAFtpkFDdrfgbVJAaPAS"
  313. },
  314. {
  315. "__type__": "cc.PrefabInfo",
  316. "root": {
  317. "__id__": 1
  318. },
  319. "asset": {
  320. "__id__": 0
  321. },
  322. "fileId": "e98zVhyoBFtIHvlM8dQWHd",
  323. "instance": null,
  324. "targetOverrides": null,
  325. "nestedPrefabInstanceRoots": null
  326. },
  327. {
  328. "__type__": "cc.UITransform",
  329. "_name": "",
  330. "_objFlags": 0,
  331. "__editorExtras__": {},
  332. "node": {
  333. "__id__": 3
  334. },
  335. "_enabled": true,
  336. "__prefab": {
  337. "__id__": 11
  338. },
  339. "_contentSize": {
  340. "__type__": "cc.Size",
  341. "width": 375,
  342. "height": 600
  343. },
  344. "_anchorPoint": {
  345. "__type__": "cc.Vec2",
  346. "x": 0.5,
  347. "y": 0.5
  348. },
  349. "_id": ""
  350. },
  351. {
  352. "__type__": "cc.CompPrefabInfo",
  353. "fileId": "a5lIxYgahBgoMDAz/6J41Q"
  354. },
  355. {
  356. "__type__": "cc.Mask",
  357. "_name": "",
  358. "_objFlags": 0,
  359. "__editorExtras__": {},
  360. "node": {
  361. "__id__": 3
  362. },
  363. "_enabled": true,
  364. "__prefab": {
  365. "__id__": 13
  366. },
  367. "_type": 0,
  368. "_inverted": false,
  369. "_segments": 64,
  370. "_alphaThreshold": 0.1,
  371. "_id": ""
  372. },
  373. {
  374. "__type__": "cc.CompPrefabInfo",
  375. "fileId": "acex5ZtNxJM4hSKR3r6bLi"
  376. },
  377. {
  378. "__type__": "cc.Graphics",
  379. "_name": "",
  380. "_objFlags": 0,
  381. "__editorExtras__": {},
  382. "node": {
  383. "__id__": 3
  384. },
  385. "_enabled": true,
  386. "__prefab": {
  387. "__id__": 15
  388. },
  389. "_customMaterial": null,
  390. "_srcBlendFactor": 2,
  391. "_dstBlendFactor": 4,
  392. "_color": {
  393. "__type__": "cc.Color",
  394. "r": 255,
  395. "g": 255,
  396. "b": 255,
  397. "a": 255
  398. },
  399. "_lineWidth": 1,
  400. "_strokeColor": {
  401. "__type__": "cc.Color",
  402. "r": 0,
  403. "g": 0,
  404. "b": 0,
  405. "a": 255
  406. },
  407. "_lineJoin": 2,
  408. "_lineCap": 0,
  409. "_fillColor": {
  410. "__type__": "cc.Color",
  411. "r": 255,
  412. "g": 255,
  413. "b": 255,
  414. "a": 0
  415. },
  416. "_miterLimit": 10,
  417. "_id": ""
  418. },
  419. {
  420. "__type__": "cc.CompPrefabInfo",
  421. "fileId": "2aaKhOMh9Poo7/snj7NINV"
  422. },
  423. {
  424. "__type__": "cc.Widget",
  425. "_name": "",
  426. "_objFlags": 0,
  427. "__editorExtras__": {},
  428. "node": {
  429. "__id__": 3
  430. },
  431. "_enabled": true,
  432. "__prefab": {
  433. "__id__": 17
  434. },
  435. "_alignFlags": 45,
  436. "_target": null,
  437. "_left": 0,
  438. "_right": 0,
  439. "_top": 0,
  440. "_bottom": 0,
  441. "_horizontalCenter": 0,
  442. "_verticalCenter": 0,
  443. "_isAbsLeft": true,
  444. "_isAbsRight": true,
  445. "_isAbsTop": true,
  446. "_isAbsBottom": true,
  447. "_isAbsHorizontalCenter": true,
  448. "_isAbsVerticalCenter": true,
  449. "_originalWidth": 240,
  450. "_originalHeight": 250,
  451. "_alignMode": 2,
  452. "_lockFlags": 0,
  453. "_id": ""
  454. },
  455. {
  456. "__type__": "cc.CompPrefabInfo",
  457. "fileId": "e2BgtVoDVALoZmIxL3CkAT"
  458. },
  459. {
  460. "__type__": "cc.PrefabInfo",
  461. "root": {
  462. "__id__": 1
  463. },
  464. "asset": {
  465. "__id__": 0
  466. },
  467. "fileId": "3fQ99QLI1EC5zjgXjy7uuM",
  468. "instance": null,
  469. "targetOverrides": null,
  470. "nestedPrefabInstanceRoots": null
  471. },
  472. {
  473. "__type__": "cc.UITransform",
  474. "_name": "",
  475. "_objFlags": 0,
  476. "__editorExtras__": {},
  477. "node": {
  478. "__id__": 2
  479. },
  480. "_enabled": true,
  481. "__prefab": {
  482. "__id__": 20
  483. },
  484. "_contentSize": {
  485. "__type__": "cc.Size",
  486. "width": 375,
  487. "height": 600
  488. },
  489. "_anchorPoint": {
  490. "__type__": "cc.Vec2",
  491. "x": 0.5,
  492. "y": 0.5
  493. },
  494. "_id": ""
  495. },
  496. {
  497. "__type__": "cc.CompPrefabInfo",
  498. "fileId": "2ex2GwEXZH7Jd7eqAtZ0ww"
  499. },
  500. {
  501. "__type__": "cc.Sprite",
  502. "_name": "",
  503. "_objFlags": 0,
  504. "__editorExtras__": {},
  505. "node": {
  506. "__id__": 2
  507. },
  508. "_enabled": true,
  509. "__prefab": {
  510. "__id__": 22
  511. },
  512. "_customMaterial": null,
  513. "_srcBlendFactor": 2,
  514. "_dstBlendFactor": 4,
  515. "_color": {
  516. "__type__": "cc.Color",
  517. "r": 255,
  518. "g": 255,
  519. "b": 255,
  520. "a": 255
  521. },
  522. "_spriteFrame": {
  523. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  524. "__expectedType__": "cc.SpriteFrame"
  525. },
  526. "_type": 1,
  527. "_fillType": 0,
  528. "_sizeMode": 0,
  529. "_fillCenter": {
  530. "__type__": "cc.Vec2",
  531. "x": 0,
  532. "y": 0
  533. },
  534. "_fillStart": 0,
  535. "_fillRange": 0,
  536. "_isTrimmedMode": true,
  537. "_useGrayscale": false,
  538. "_atlas": null,
  539. "_id": ""
  540. },
  541. {
  542. "__type__": "cc.CompPrefabInfo",
  543. "fileId": "31oFeubr9CdKZVdZ8sOsTh"
  544. },
  545. {
  546. "__type__": "cc.ScrollView",
  547. "_name": "",
  548. "_objFlags": 0,
  549. "__editorExtras__": {},
  550. "node": {
  551. "__id__": 2
  552. },
  553. "_enabled": true,
  554. "__prefab": {
  555. "__id__": 24
  556. },
  557. "bounceDuration": 0.23,
  558. "brake": 0.75,
  559. "elastic": true,
  560. "inertia": true,
  561. "horizontal": false,
  562. "vertical": true,
  563. "cancelInnerEvents": true,
  564. "scrollEvents": [],
  565. "_content": {
  566. "__id__": 4
  567. },
  568. "_horizontalScrollBar": null,
  569. "_verticalScrollBar": null,
  570. "_id": ""
  571. },
  572. {
  573. "__type__": "cc.CompPrefabInfo",
  574. "fileId": "35kQCYmktATp9laRLZAOYR"
  575. },
  576. {
  577. "__type__": "cc.PrefabInfo",
  578. "root": {
  579. "__id__": 1
  580. },
  581. "asset": {
  582. "__id__": 0
  583. },
  584. "fileId": "3213oL8xdJi7PQLx917ZR4",
  585. "instance": null,
  586. "targetOverrides": null,
  587. "nestedPrefabInstanceRoots": null
  588. },
  589. {
  590. "__type__": "cc.Node",
  591. "_name": "top_menu",
  592. "_objFlags": 0,
  593. "__editorExtras__": {},
  594. "_parent": {
  595. "__id__": 1
  596. },
  597. "_children": [
  598. {
  599. "__id__": 27
  600. },
  601. {
  602. "__id__": 41
  603. },
  604. {
  605. "__id__": 61
  606. }
  607. ],
  608. "_active": true,
  609. "_components": [
  610. {
  611. "__id__": 75
  612. }
  613. ],
  614. "_prefab": {
  615. "__id__": 77
  616. },
  617. "_lpos": {
  618. "__type__": "cc.Vec3",
  619. "x": 0,
  620. "y": 330,
  621. "z": 0
  622. },
  623. "_lrot": {
  624. "__type__": "cc.Quat",
  625. "x": 0,
  626. "y": 0,
  627. "z": 0,
  628. "w": 1
  629. },
  630. "_lscale": {
  631. "__type__": "cc.Vec3",
  632. "x": 1,
  633. "y": 1,
  634. "z": 1
  635. },
  636. "_mobility": 0,
  637. "_layer": 33554432,
  638. "_euler": {
  639. "__type__": "cc.Vec3",
  640. "x": 0,
  641. "y": 0,
  642. "z": 0
  643. },
  644. "_id": ""
  645. },
  646. {
  647. "__type__": "cc.Node",
  648. "_name": "btn_back",
  649. "_objFlags": 0,
  650. "__editorExtras__": {},
  651. "_parent": {
  652. "__id__": 26
  653. },
  654. "_children": [
  655. {
  656. "__id__": 28
  657. }
  658. ],
  659. "_active": true,
  660. "_components": [
  661. {
  662. "__id__": 34
  663. },
  664. {
  665. "__id__": 36
  666. },
  667. {
  668. "__id__": 38
  669. }
  670. ],
  671. "_prefab": {
  672. "__id__": 40
  673. },
  674. "_lpos": {
  675. "__type__": "cc.Vec3",
  676. "x": -140,
  677. "y": 0,
  678. "z": 0
  679. },
  680. "_lrot": {
  681. "__type__": "cc.Quat",
  682. "x": 0,
  683. "y": 0,
  684. "z": 0,
  685. "w": 1
  686. },
  687. "_lscale": {
  688. "__type__": "cc.Vec3",
  689. "x": 1,
  690. "y": 1,
  691. "z": 1
  692. },
  693. "_mobility": 0,
  694. "_layer": 33554432,
  695. "_euler": {
  696. "__type__": "cc.Vec3",
  697. "x": 0,
  698. "y": 0,
  699. "z": 0
  700. },
  701. "_id": ""
  702. },
  703. {
  704. "__type__": "cc.Node",
  705. "_name": "Label",
  706. "_objFlags": 0,
  707. "__editorExtras__": {},
  708. "_parent": {
  709. "__id__": 27
  710. },
  711. "_children": [],
  712. "_active": true,
  713. "_components": [
  714. {
  715. "__id__": 29
  716. },
  717. {
  718. "__id__": 31
  719. }
  720. ],
  721. "_prefab": {
  722. "__id__": 33
  723. },
  724. "_lpos": {
  725. "__type__": "cc.Vec3",
  726. "x": 0,
  727. "y": 0,
  728. "z": 0
  729. },
  730. "_lrot": {
  731. "__type__": "cc.Quat",
  732. "x": 0,
  733. "y": 0,
  734. "z": 0,
  735. "w": 1
  736. },
  737. "_lscale": {
  738. "__type__": "cc.Vec3",
  739. "x": 1,
  740. "y": 1,
  741. "z": 1
  742. },
  743. "_mobility": 0,
  744. "_layer": 33554432,
  745. "_euler": {
  746. "__type__": "cc.Vec3",
  747. "x": 0,
  748. "y": 0,
  749. "z": 0
  750. },
  751. "_id": ""
  752. },
  753. {
  754. "__type__": "cc.UITransform",
  755. "_name": "",
  756. "_objFlags": 0,
  757. "__editorExtras__": {},
  758. "node": {
  759. "__id__": 28
  760. },
  761. "_enabled": true,
  762. "__prefab": {
  763. "__id__": 30
  764. },
  765. "_contentSize": {
  766. "__type__": "cc.Size",
  767. "width": 100,
  768. "height": 40
  769. },
  770. "_anchorPoint": {
  771. "__type__": "cc.Vec2",
  772. "x": 0.5,
  773. "y": 0.5
  774. },
  775. "_id": ""
  776. },
  777. {
  778. "__type__": "cc.CompPrefabInfo",
  779. "fileId": "80DjgNyzJE36tACPM04igk"
  780. },
  781. {
  782. "__type__": "cc.Label",
  783. "_name": "",
  784. "_objFlags": 0,
  785. "__editorExtras__": {},
  786. "node": {
  787. "__id__": 28
  788. },
  789. "_enabled": true,
  790. "__prefab": {
  791. "__id__": 32
  792. },
  793. "_customMaterial": null,
  794. "_srcBlendFactor": 2,
  795. "_dstBlendFactor": 4,
  796. "_color": {
  797. "__type__": "cc.Color",
  798. "r": 0,
  799. "g": 0,
  800. "b": 0,
  801. "a": 255
  802. },
  803. "_string": "返回",
  804. "_horizontalAlign": 1,
  805. "_verticalAlign": 1,
  806. "_actualFontSize": 20,
  807. "_fontSize": 20,
  808. "_fontFamily": "Arial",
  809. "_lineHeight": 40,
  810. "_overflow": 1,
  811. "_enableWrapText": false,
  812. "_font": null,
  813. "_isSystemFontUsed": true,
  814. "_spacingX": 0,
  815. "_isItalic": false,
  816. "_isBold": false,
  817. "_isUnderline": false,
  818. "_underlineHeight": 2,
  819. "_cacheMode": 0,
  820. "_id": ""
  821. },
  822. {
  823. "__type__": "cc.CompPrefabInfo",
  824. "fileId": "14uhp8Cl5G+Inys6WBCX5k"
  825. },
  826. {
  827. "__type__": "cc.PrefabInfo",
  828. "root": {
  829. "__id__": 1
  830. },
  831. "asset": {
  832. "__id__": 0
  833. },
  834. "fileId": "a3uTe8XhxM0oeu6OkYXdip",
  835. "instance": null,
  836. "targetOverrides": null,
  837. "nestedPrefabInstanceRoots": null
  838. },
  839. {
  840. "__type__": "cc.UITransform",
  841. "_name": "",
  842. "_objFlags": 0,
  843. "__editorExtras__": {},
  844. "node": {
  845. "__id__": 27
  846. },
  847. "_enabled": true,
  848. "__prefab": {
  849. "__id__": 35
  850. },
  851. "_contentSize": {
  852. "__type__": "cc.Size",
  853. "width": 100,
  854. "height": 40
  855. },
  856. "_anchorPoint": {
  857. "__type__": "cc.Vec2",
  858. "x": 0.5,
  859. "y": 0.5
  860. },
  861. "_id": ""
  862. },
  863. {
  864. "__type__": "cc.CompPrefabInfo",
  865. "fileId": "32tjxhUmpN9qiFU12I0Cyr"
  866. },
  867. {
  868. "__type__": "cc.Sprite",
  869. "_name": "",
  870. "_objFlags": 0,
  871. "__editorExtras__": {},
  872. "node": {
  873. "__id__": 27
  874. },
  875. "_enabled": true,
  876. "__prefab": {
  877. "__id__": 37
  878. },
  879. "_customMaterial": null,
  880. "_srcBlendFactor": 2,
  881. "_dstBlendFactor": 4,
  882. "_color": {
  883. "__type__": "cc.Color",
  884. "r": 255,
  885. "g": 255,
  886. "b": 255,
  887. "a": 255
  888. },
  889. "_spriteFrame": {
  890. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  891. "__expectedType__": "cc.SpriteFrame"
  892. },
  893. "_type": 1,
  894. "_fillType": 0,
  895. "_sizeMode": 0,
  896. "_fillCenter": {
  897. "__type__": "cc.Vec2",
  898. "x": 0,
  899. "y": 0
  900. },
  901. "_fillStart": 0,
  902. "_fillRange": 0,
  903. "_isTrimmedMode": true,
  904. "_useGrayscale": false,
  905. "_atlas": null,
  906. "_id": ""
  907. },
  908. {
  909. "__type__": "cc.CompPrefabInfo",
  910. "fileId": "02VKWYd9NPE7hKx2qjXhMp"
  911. },
  912. {
  913. "__type__": "cc.Button",
  914. "_name": "",
  915. "_objFlags": 0,
  916. "__editorExtras__": {},
  917. "node": {
  918. "__id__": 27
  919. },
  920. "_enabled": true,
  921. "__prefab": {
  922. "__id__": 39
  923. },
  924. "clickEvents": [],
  925. "_interactable": true,
  926. "_transition": 2,
  927. "_normalColor": {
  928. "__type__": "cc.Color",
  929. "r": 214,
  930. "g": 214,
  931. "b": 214,
  932. "a": 255
  933. },
  934. "_hoverColor": {
  935. "__type__": "cc.Color",
  936. "r": 211,
  937. "g": 211,
  938. "b": 211,
  939. "a": 255
  940. },
  941. "_pressedColor": {
  942. "__type__": "cc.Color",
  943. "r": 255,
  944. "g": 255,
  945. "b": 255,
  946. "a": 255
  947. },
  948. "_disabledColor": {
  949. "__type__": "cc.Color",
  950. "r": 124,
  951. "g": 124,
  952. "b": 124,
  953. "a": 255
  954. },
  955. "_normalSprite": {
  956. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  957. "__expectedType__": "cc.SpriteFrame"
  958. },
  959. "_hoverSprite": {
  960. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  961. "__expectedType__": "cc.SpriteFrame"
  962. },
  963. "_pressedSprite": {
  964. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  965. "__expectedType__": "cc.SpriteFrame"
  966. },
  967. "_disabledSprite": {
  968. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  969. "__expectedType__": "cc.SpriteFrame"
  970. },
  971. "_duration": 0.1,
  972. "_zoomScale": 1.2,
  973. "_target": {
  974. "__id__": 27
  975. },
  976. "_id": ""
  977. },
  978. {
  979. "__type__": "cc.CompPrefabInfo",
  980. "fileId": "80eFWjXXlIg76kcOydcvHQ"
  981. },
  982. {
  983. "__type__": "cc.PrefabInfo",
  984. "root": {
  985. "__id__": 1
  986. },
  987. "asset": {
  988. "__id__": 0
  989. },
  990. "fileId": "92+xHS+n9GE685TrmizwZF",
  991. "instance": null,
  992. "targetOverrides": null,
  993. "nestedPrefabInstanceRoots": null
  994. },
  995. {
  996. "__type__": "cc.Node",
  997. "_name": "level_search_editbox",
  998. "_objFlags": 0,
  999. "__editorExtras__": {},
  1000. "_parent": {
  1001. "__id__": 26
  1002. },
  1003. "_children": [
  1004. {
  1005. "__id__": 42
  1006. },
  1007. {
  1008. "__id__": 48
  1009. }
  1010. ],
  1011. "_active": true,
  1012. "_components": [
  1013. {
  1014. "__id__": 54
  1015. },
  1016. {
  1017. "__id__": 56
  1018. },
  1019. {
  1020. "__id__": 58
  1021. }
  1022. ],
  1023. "_prefab": {
  1024. "__id__": 60
  1025. },
  1026. "_lpos": {
  1027. "__type__": "cc.Vec3",
  1028. "x": 0,
  1029. "y": 0,
  1030. "z": 0
  1031. },
  1032. "_lrot": {
  1033. "__type__": "cc.Quat",
  1034. "x": 0,
  1035. "y": 0,
  1036. "z": 0,
  1037. "w": 1
  1038. },
  1039. "_lscale": {
  1040. "__type__": "cc.Vec3",
  1041. "x": 1,
  1042. "y": 1,
  1043. "z": 1
  1044. },
  1045. "_mobility": 0,
  1046. "_layer": 33554432,
  1047. "_euler": {
  1048. "__type__": "cc.Vec3",
  1049. "x": 0,
  1050. "y": 0,
  1051. "z": 0
  1052. },
  1053. "_id": ""
  1054. },
  1055. {
  1056. "__type__": "cc.Node",
  1057. "_name": "TEXT_LABEL",
  1058. "_objFlags": 0,
  1059. "__editorExtras__": {},
  1060. "_parent": {
  1061. "__id__": 41
  1062. },
  1063. "_children": [],
  1064. "_active": false,
  1065. "_components": [
  1066. {
  1067. "__id__": 43
  1068. },
  1069. {
  1070. "__id__": 45
  1071. }
  1072. ],
  1073. "_prefab": {
  1074. "__id__": 47
  1075. },
  1076. "_lpos": {
  1077. "__type__": "cc.Vec3",
  1078. "x": -48,
  1079. "y": 20,
  1080. "z": 0
  1081. },
  1082. "_lrot": {
  1083. "__type__": "cc.Quat",
  1084. "x": 0,
  1085. "y": 0,
  1086. "z": 0,
  1087. "w": 1
  1088. },
  1089. "_lscale": {
  1090. "__type__": "cc.Vec3",
  1091. "x": 1,
  1092. "y": 1,
  1093. "z": 1
  1094. },
  1095. "_mobility": 0,
  1096. "_layer": 33554432,
  1097. "_euler": {
  1098. "__type__": "cc.Vec3",
  1099. "x": 0,
  1100. "y": 0,
  1101. "z": 0
  1102. },
  1103. "_id": ""
  1104. },
  1105. {
  1106. "__type__": "cc.UITransform",
  1107. "_name": "",
  1108. "_objFlags": 0,
  1109. "__editorExtras__": {},
  1110. "node": {
  1111. "__id__": 42
  1112. },
  1113. "_enabled": true,
  1114. "__prefab": {
  1115. "__id__": 44
  1116. },
  1117. "_contentSize": {
  1118. "__type__": "cc.Size",
  1119. "width": 98,
  1120. "height": 40
  1121. },
  1122. "_anchorPoint": {
  1123. "__type__": "cc.Vec2",
  1124. "x": 0,
  1125. "y": 1
  1126. },
  1127. "_id": ""
  1128. },
  1129. {
  1130. "__type__": "cc.CompPrefabInfo",
  1131. "fileId": "62W8s5s3xNn7vDemu5awcO"
  1132. },
  1133. {
  1134. "__type__": "cc.Label",
  1135. "_name": "",
  1136. "_objFlags": 0,
  1137. "__editorExtras__": {},
  1138. "node": {
  1139. "__id__": 42
  1140. },
  1141. "_enabled": true,
  1142. "__prefab": {
  1143. "__id__": 46
  1144. },
  1145. "_customMaterial": null,
  1146. "_srcBlendFactor": 2,
  1147. "_dstBlendFactor": 4,
  1148. "_color": {
  1149. "__type__": "cc.Color",
  1150. "r": 255,
  1151. "g": 255,
  1152. "b": 255,
  1153. "a": 255
  1154. },
  1155. "_string": "",
  1156. "_horizontalAlign": 1,
  1157. "_verticalAlign": 1,
  1158. "_actualFontSize": 20,
  1159. "_fontSize": 20,
  1160. "_fontFamily": "Arial",
  1161. "_lineHeight": 40,
  1162. "_overflow": 1,
  1163. "_enableWrapText": false,
  1164. "_font": null,
  1165. "_isSystemFontUsed": true,
  1166. "_spacingX": 0,
  1167. "_isItalic": false,
  1168. "_isBold": false,
  1169. "_isUnderline": false,
  1170. "_underlineHeight": 2,
  1171. "_cacheMode": 0,
  1172. "_id": ""
  1173. },
  1174. {
  1175. "__type__": "cc.CompPrefabInfo",
  1176. "fileId": "e26OTM7h5IXImPJZFXHNMq"
  1177. },
  1178. {
  1179. "__type__": "cc.PrefabInfo",
  1180. "root": {
  1181. "__id__": 1
  1182. },
  1183. "asset": {
  1184. "__id__": 0
  1185. },
  1186. "fileId": "e8MHyPoONP5L80MwejitHo",
  1187. "instance": null,
  1188. "targetOverrides": null,
  1189. "nestedPrefabInstanceRoots": null
  1190. },
  1191. {
  1192. "__type__": "cc.Node",
  1193. "_name": "PLACEHOLDER_LABEL",
  1194. "_objFlags": 0,
  1195. "__editorExtras__": {},
  1196. "_parent": {
  1197. "__id__": 41
  1198. },
  1199. "_children": [],
  1200. "_active": true,
  1201. "_components": [
  1202. {
  1203. "__id__": 49
  1204. },
  1205. {
  1206. "__id__": 51
  1207. }
  1208. ],
  1209. "_prefab": {
  1210. "__id__": 53
  1211. },
  1212. "_lpos": {
  1213. "__type__": "cc.Vec3",
  1214. "x": -48,
  1215. "y": 20,
  1216. "z": 0
  1217. },
  1218. "_lrot": {
  1219. "__type__": "cc.Quat",
  1220. "x": 0,
  1221. "y": 0,
  1222. "z": 0,
  1223. "w": 1
  1224. },
  1225. "_lscale": {
  1226. "__type__": "cc.Vec3",
  1227. "x": 1,
  1228. "y": 1,
  1229. "z": 1
  1230. },
  1231. "_mobility": 0,
  1232. "_layer": 33554432,
  1233. "_euler": {
  1234. "__type__": "cc.Vec3",
  1235. "x": 0,
  1236. "y": 0,
  1237. "z": 0
  1238. },
  1239. "_id": ""
  1240. },
  1241. {
  1242. "__type__": "cc.UITransform",
  1243. "_name": "",
  1244. "_objFlags": 0,
  1245. "__editorExtras__": {},
  1246. "node": {
  1247. "__id__": 48
  1248. },
  1249. "_enabled": true,
  1250. "__prefab": {
  1251. "__id__": 50
  1252. },
  1253. "_contentSize": {
  1254. "__type__": "cc.Size",
  1255. "width": 98,
  1256. "height": 40
  1257. },
  1258. "_anchorPoint": {
  1259. "__type__": "cc.Vec2",
  1260. "x": 0,
  1261. "y": 1
  1262. },
  1263. "_id": ""
  1264. },
  1265. {
  1266. "__type__": "cc.CompPrefabInfo",
  1267. "fileId": "a1Yoc7o7FGV4c1UCDX/Hji"
  1268. },
  1269. {
  1270. "__type__": "cc.Label",
  1271. "_name": "",
  1272. "_objFlags": 0,
  1273. "__editorExtras__": {},
  1274. "node": {
  1275. "__id__": 48
  1276. },
  1277. "_enabled": true,
  1278. "__prefab": {
  1279. "__id__": 52
  1280. },
  1281. "_customMaterial": null,
  1282. "_srcBlendFactor": 2,
  1283. "_dstBlendFactor": 4,
  1284. "_color": {
  1285. "__type__": "cc.Color",
  1286. "r": 255,
  1287. "g": 255,
  1288. "b": 255,
  1289. "a": 255
  1290. },
  1291. "_string": "输入关卡",
  1292. "_horizontalAlign": 1,
  1293. "_verticalAlign": 1,
  1294. "_actualFontSize": 20,
  1295. "_fontSize": 20,
  1296. "_fontFamily": "Arial",
  1297. "_lineHeight": 40,
  1298. "_overflow": 1,
  1299. "_enableWrapText": false,
  1300. "_font": null,
  1301. "_isSystemFontUsed": true,
  1302. "_spacingX": 0,
  1303. "_isItalic": false,
  1304. "_isBold": false,
  1305. "_isUnderline": false,
  1306. "_underlineHeight": 2,
  1307. "_cacheMode": 0,
  1308. "_id": ""
  1309. },
  1310. {
  1311. "__type__": "cc.CompPrefabInfo",
  1312. "fileId": "35gTR8FIpILJXzQDfcuiMN"
  1313. },
  1314. {
  1315. "__type__": "cc.PrefabInfo",
  1316. "root": {
  1317. "__id__": 1
  1318. },
  1319. "asset": {
  1320. "__id__": 0
  1321. },
  1322. "fileId": "1a1HmSoqBPCI9BMRv8VYdj",
  1323. "instance": null,
  1324. "targetOverrides": null,
  1325. "nestedPrefabInstanceRoots": null
  1326. },
  1327. {
  1328. "__type__": "cc.UITransform",
  1329. "_name": "",
  1330. "_objFlags": 0,
  1331. "__editorExtras__": {},
  1332. "node": {
  1333. "__id__": 41
  1334. },
  1335. "_enabled": true,
  1336. "__prefab": {
  1337. "__id__": 55
  1338. },
  1339. "_contentSize": {
  1340. "__type__": "cc.Size",
  1341. "width": 100,
  1342. "height": 40
  1343. },
  1344. "_anchorPoint": {
  1345. "__type__": "cc.Vec2",
  1346. "x": 0.5,
  1347. "y": 0.5
  1348. },
  1349. "_id": ""
  1350. },
  1351. {
  1352. "__type__": "cc.CompPrefabInfo",
  1353. "fileId": "07SzMS+GhCnKGcH02nEr2G"
  1354. },
  1355. {
  1356. "__type__": "cc.Sprite",
  1357. "_name": "",
  1358. "_objFlags": 0,
  1359. "__editorExtras__": {},
  1360. "node": {
  1361. "__id__": 41
  1362. },
  1363. "_enabled": true,
  1364. "__prefab": {
  1365. "__id__": 57
  1366. },
  1367. "_customMaterial": null,
  1368. "_srcBlendFactor": 2,
  1369. "_dstBlendFactor": 4,
  1370. "_color": {
  1371. "__type__": "cc.Color",
  1372. "r": 255,
  1373. "g": 255,
  1374. "b": 255,
  1375. "a": 255
  1376. },
  1377. "_spriteFrame": {
  1378. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  1379. "__expectedType__": "cc.SpriteFrame"
  1380. },
  1381. "_type": 1,
  1382. "_fillType": 0,
  1383. "_sizeMode": 0,
  1384. "_fillCenter": {
  1385. "__type__": "cc.Vec2",
  1386. "x": 0,
  1387. "y": 0
  1388. },
  1389. "_fillStart": 0,
  1390. "_fillRange": 0,
  1391. "_isTrimmedMode": true,
  1392. "_useGrayscale": false,
  1393. "_atlas": null,
  1394. "_id": ""
  1395. },
  1396. {
  1397. "__type__": "cc.CompPrefabInfo",
  1398. "fileId": "ca2EhabfdLX4ZvKvVwY/HM"
  1399. },
  1400. {
  1401. "__type__": "cc.EditBox",
  1402. "_name": "",
  1403. "_objFlags": 0,
  1404. "__editorExtras__": {},
  1405. "node": {
  1406. "__id__": 41
  1407. },
  1408. "_enabled": true,
  1409. "__prefab": {
  1410. "__id__": 59
  1411. },
  1412. "editingDidBegan": [],
  1413. "textChanged": [],
  1414. "editingDidEnded": [],
  1415. "editingReturn": [],
  1416. "_textLabel": {
  1417. "__id__": 45
  1418. },
  1419. "_placeholderLabel": {
  1420. "__id__": 51
  1421. },
  1422. "_returnType": 0,
  1423. "_string": "",
  1424. "_tabIndex": 0,
  1425. "_backgroundImage": {
  1426. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  1427. "__expectedType__": "cc.SpriteFrame"
  1428. },
  1429. "_inputFlag": 5,
  1430. "_inputMode": 3,
  1431. "_maxLength": 8,
  1432. "_id": ""
  1433. },
  1434. {
  1435. "__type__": "cc.CompPrefabInfo",
  1436. "fileId": "6bpIOfVU9PhLr6wI2ktwx+"
  1437. },
  1438. {
  1439. "__type__": "cc.PrefabInfo",
  1440. "root": {
  1441. "__id__": 1
  1442. },
  1443. "asset": {
  1444. "__id__": 0
  1445. },
  1446. "fileId": "50/TVwbX5EcL6tOd9JZ1yD",
  1447. "instance": null,
  1448. "targetOverrides": null,
  1449. "nestedPrefabInstanceRoots": null
  1450. },
  1451. {
  1452. "__type__": "cc.Node",
  1453. "_name": "btn_search",
  1454. "_objFlags": 0,
  1455. "__editorExtras__": {},
  1456. "_parent": {
  1457. "__id__": 26
  1458. },
  1459. "_children": [
  1460. {
  1461. "__id__": 62
  1462. }
  1463. ],
  1464. "_active": true,
  1465. "_components": [
  1466. {
  1467. "__id__": 68
  1468. },
  1469. {
  1470. "__id__": 70
  1471. },
  1472. {
  1473. "__id__": 72
  1474. }
  1475. ],
  1476. "_prefab": {
  1477. "__id__": 74
  1478. },
  1479. "_lpos": {
  1480. "__type__": "cc.Vec3",
  1481. "x": 139.9999999999999,
  1482. "y": 0,
  1483. "z": 0
  1484. },
  1485. "_lrot": {
  1486. "__type__": "cc.Quat",
  1487. "x": 0,
  1488. "y": 0,
  1489. "z": 0,
  1490. "w": 1
  1491. },
  1492. "_lscale": {
  1493. "__type__": "cc.Vec3",
  1494. "x": 1,
  1495. "y": 1,
  1496. "z": 1
  1497. },
  1498. "_mobility": 0,
  1499. "_layer": 33554432,
  1500. "_euler": {
  1501. "__type__": "cc.Vec3",
  1502. "x": 0,
  1503. "y": 0,
  1504. "z": 0
  1505. },
  1506. "_id": ""
  1507. },
  1508. {
  1509. "__type__": "cc.Node",
  1510. "_name": "Label",
  1511. "_objFlags": 0,
  1512. "__editorExtras__": {},
  1513. "_parent": {
  1514. "__id__": 61
  1515. },
  1516. "_children": [],
  1517. "_active": true,
  1518. "_components": [
  1519. {
  1520. "__id__": 63
  1521. },
  1522. {
  1523. "__id__": 65
  1524. }
  1525. ],
  1526. "_prefab": {
  1527. "__id__": 67
  1528. },
  1529. "_lpos": {
  1530. "__type__": "cc.Vec3",
  1531. "x": 0,
  1532. "y": 0,
  1533. "z": 0
  1534. },
  1535. "_lrot": {
  1536. "__type__": "cc.Quat",
  1537. "x": 0,
  1538. "y": 0,
  1539. "z": 0,
  1540. "w": 1
  1541. },
  1542. "_lscale": {
  1543. "__type__": "cc.Vec3",
  1544. "x": 1,
  1545. "y": 1,
  1546. "z": 1
  1547. },
  1548. "_mobility": 0,
  1549. "_layer": 33554432,
  1550. "_euler": {
  1551. "__type__": "cc.Vec3",
  1552. "x": 0,
  1553. "y": 0,
  1554. "z": 0
  1555. },
  1556. "_id": ""
  1557. },
  1558. {
  1559. "__type__": "cc.UITransform",
  1560. "_name": "",
  1561. "_objFlags": 0,
  1562. "__editorExtras__": {},
  1563. "node": {
  1564. "__id__": 62
  1565. },
  1566. "_enabled": true,
  1567. "__prefab": {
  1568. "__id__": 64
  1569. },
  1570. "_contentSize": {
  1571. "__type__": "cc.Size",
  1572. "width": 100,
  1573. "height": 40
  1574. },
  1575. "_anchorPoint": {
  1576. "__type__": "cc.Vec2",
  1577. "x": 0.5,
  1578. "y": 0.5
  1579. },
  1580. "_id": ""
  1581. },
  1582. {
  1583. "__type__": "cc.CompPrefabInfo",
  1584. "fileId": "5exZaa59ZNGIz0iykPVM6V"
  1585. },
  1586. {
  1587. "__type__": "cc.Label",
  1588. "_name": "",
  1589. "_objFlags": 0,
  1590. "__editorExtras__": {},
  1591. "node": {
  1592. "__id__": 62
  1593. },
  1594. "_enabled": true,
  1595. "__prefab": {
  1596. "__id__": 66
  1597. },
  1598. "_customMaterial": null,
  1599. "_srcBlendFactor": 2,
  1600. "_dstBlendFactor": 4,
  1601. "_color": {
  1602. "__type__": "cc.Color",
  1603. "r": 0,
  1604. "g": 0,
  1605. "b": 0,
  1606. "a": 255
  1607. },
  1608. "_string": "搜索",
  1609. "_horizontalAlign": 1,
  1610. "_verticalAlign": 1,
  1611. "_actualFontSize": 20,
  1612. "_fontSize": 20,
  1613. "_fontFamily": "Arial",
  1614. "_lineHeight": 40,
  1615. "_overflow": 1,
  1616. "_enableWrapText": false,
  1617. "_font": null,
  1618. "_isSystemFontUsed": true,
  1619. "_spacingX": 0,
  1620. "_isItalic": false,
  1621. "_isBold": false,
  1622. "_isUnderline": false,
  1623. "_underlineHeight": 2,
  1624. "_cacheMode": 0,
  1625. "_id": ""
  1626. },
  1627. {
  1628. "__type__": "cc.CompPrefabInfo",
  1629. "fileId": "f27Ea7Bv9LkJ5oss9+ssfN"
  1630. },
  1631. {
  1632. "__type__": "cc.PrefabInfo",
  1633. "root": {
  1634. "__id__": 1
  1635. },
  1636. "asset": {
  1637. "__id__": 0
  1638. },
  1639. "fileId": "20EtsZd3hMx7vLHF2+akFP",
  1640. "instance": null,
  1641. "targetOverrides": null,
  1642. "nestedPrefabInstanceRoots": null
  1643. },
  1644. {
  1645. "__type__": "cc.UITransform",
  1646. "_name": "",
  1647. "_objFlags": 0,
  1648. "__editorExtras__": {},
  1649. "node": {
  1650. "__id__": 61
  1651. },
  1652. "_enabled": true,
  1653. "__prefab": {
  1654. "__id__": 69
  1655. },
  1656. "_contentSize": {
  1657. "__type__": "cc.Size",
  1658. "width": 100,
  1659. "height": 40
  1660. },
  1661. "_anchorPoint": {
  1662. "__type__": "cc.Vec2",
  1663. "x": 0.5,
  1664. "y": 0.5
  1665. },
  1666. "_id": ""
  1667. },
  1668. {
  1669. "__type__": "cc.CompPrefabInfo",
  1670. "fileId": "1d/2t4/p9Jt7LfR6j8o99i"
  1671. },
  1672. {
  1673. "__type__": "cc.Sprite",
  1674. "_name": "",
  1675. "_objFlags": 0,
  1676. "__editorExtras__": {},
  1677. "node": {
  1678. "__id__": 61
  1679. },
  1680. "_enabled": true,
  1681. "__prefab": {
  1682. "__id__": 71
  1683. },
  1684. "_customMaterial": null,
  1685. "_srcBlendFactor": 2,
  1686. "_dstBlendFactor": 4,
  1687. "_color": {
  1688. "__type__": "cc.Color",
  1689. "r": 255,
  1690. "g": 255,
  1691. "b": 255,
  1692. "a": 255
  1693. },
  1694. "_spriteFrame": {
  1695. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  1696. "__expectedType__": "cc.SpriteFrame"
  1697. },
  1698. "_type": 1,
  1699. "_fillType": 0,
  1700. "_sizeMode": 0,
  1701. "_fillCenter": {
  1702. "__type__": "cc.Vec2",
  1703. "x": 0,
  1704. "y": 0
  1705. },
  1706. "_fillStart": 0,
  1707. "_fillRange": 0,
  1708. "_isTrimmedMode": true,
  1709. "_useGrayscale": false,
  1710. "_atlas": null,
  1711. "_id": ""
  1712. },
  1713. {
  1714. "__type__": "cc.CompPrefabInfo",
  1715. "fileId": "04CZvjdY1MG799M3pPeDUj"
  1716. },
  1717. {
  1718. "__type__": "cc.Button",
  1719. "_name": "",
  1720. "_objFlags": 0,
  1721. "__editorExtras__": {},
  1722. "node": {
  1723. "__id__": 61
  1724. },
  1725. "_enabled": true,
  1726. "__prefab": {
  1727. "__id__": 73
  1728. },
  1729. "clickEvents": [],
  1730. "_interactable": true,
  1731. "_transition": 2,
  1732. "_normalColor": {
  1733. "__type__": "cc.Color",
  1734. "r": 214,
  1735. "g": 214,
  1736. "b": 214,
  1737. "a": 255
  1738. },
  1739. "_hoverColor": {
  1740. "__type__": "cc.Color",
  1741. "r": 211,
  1742. "g": 211,
  1743. "b": 211,
  1744. "a": 255
  1745. },
  1746. "_pressedColor": {
  1747. "__type__": "cc.Color",
  1748. "r": 255,
  1749. "g": 255,
  1750. "b": 255,
  1751. "a": 255
  1752. },
  1753. "_disabledColor": {
  1754. "__type__": "cc.Color",
  1755. "r": 124,
  1756. "g": 124,
  1757. "b": 124,
  1758. "a": 255
  1759. },
  1760. "_normalSprite": {
  1761. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  1762. "__expectedType__": "cc.SpriteFrame"
  1763. },
  1764. "_hoverSprite": {
  1765. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  1766. "__expectedType__": "cc.SpriteFrame"
  1767. },
  1768. "_pressedSprite": {
  1769. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  1770. "__expectedType__": "cc.SpriteFrame"
  1771. },
  1772. "_disabledSprite": {
  1773. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  1774. "__expectedType__": "cc.SpriteFrame"
  1775. },
  1776. "_duration": 0.1,
  1777. "_zoomScale": 1.2,
  1778. "_target": {
  1779. "__id__": 61
  1780. },
  1781. "_id": ""
  1782. },
  1783. {
  1784. "__type__": "cc.CompPrefabInfo",
  1785. "fileId": "30oS/mtZ5FQIw3Al3cMPTd"
  1786. },
  1787. {
  1788. "__type__": "cc.PrefabInfo",
  1789. "root": {
  1790. "__id__": 1
  1791. },
  1792. "asset": {
  1793. "__id__": 0
  1794. },
  1795. "fileId": "97EtUUXwhFwa8qgywCoba9",
  1796. "instance": null,
  1797. "targetOverrides": null,
  1798. "nestedPrefabInstanceRoots": null
  1799. },
  1800. {
  1801. "__type__": "cc.UITransform",
  1802. "_name": "",
  1803. "_objFlags": 0,
  1804. "__editorExtras__": {},
  1805. "node": {
  1806. "__id__": 26
  1807. },
  1808. "_enabled": true,
  1809. "__prefab": {
  1810. "__id__": 76
  1811. },
  1812. "_contentSize": {
  1813. "__type__": "cc.Size",
  1814. "width": 400,
  1815. "height": 50
  1816. },
  1817. "_anchorPoint": {
  1818. "__type__": "cc.Vec2",
  1819. "x": 0.5,
  1820. "y": 0.5
  1821. },
  1822. "_id": ""
  1823. },
  1824. {
  1825. "__type__": "cc.CompPrefabInfo",
  1826. "fileId": "40BEoUw4pDK53jv4cRdacu"
  1827. },
  1828. {
  1829. "__type__": "cc.PrefabInfo",
  1830. "root": {
  1831. "__id__": 1
  1832. },
  1833. "asset": {
  1834. "__id__": 0
  1835. },
  1836. "fileId": "44DWUyNCtMX7khTOYXlsi8",
  1837. "instance": null,
  1838. "targetOverrides": null,
  1839. "nestedPrefabInstanceRoots": null
  1840. },
  1841. {
  1842. "__type__": "cc.Node",
  1843. "_name": "bottom_menu",
  1844. "_objFlags": 0,
  1845. "__editorExtras__": {},
  1846. "_parent": {
  1847. "__id__": 1
  1848. },
  1849. "_children": [
  1850. {
  1851. "__id__": 79
  1852. },
  1853. {
  1854. "__id__": 93
  1855. },
  1856. {
  1857. "__id__": 107
  1858. },
  1859. {
  1860. "__id__": 127
  1861. },
  1862. {
  1863. "__id__": 141
  1864. }
  1865. ],
  1866. "_active": true,
  1867. "_components": [
  1868. {
  1869. "__id__": 155
  1870. }
  1871. ],
  1872. "_prefab": {
  1873. "__id__": 157
  1874. },
  1875. "_lpos": {
  1876. "__type__": "cc.Vec3",
  1877. "x": 0,
  1878. "y": -330,
  1879. "z": 0
  1880. },
  1881. "_lrot": {
  1882. "__type__": "cc.Quat",
  1883. "x": 0,
  1884. "y": 0,
  1885. "z": 0,
  1886. "w": 1
  1887. },
  1888. "_lscale": {
  1889. "__type__": "cc.Vec3",
  1890. "x": 1,
  1891. "y": 1,
  1892. "z": 1
  1893. },
  1894. "_mobility": 0,
  1895. "_layer": 33554432,
  1896. "_euler": {
  1897. "__type__": "cc.Vec3",
  1898. "x": 0,
  1899. "y": 0,
  1900. "z": 0
  1901. },
  1902. "_id": ""
  1903. },
  1904. {
  1905. "__type__": "cc.Node",
  1906. "_name": "btn_superior",
  1907. "_objFlags": 0,
  1908. "__editorExtras__": {},
  1909. "_parent": {
  1910. "__id__": 78
  1911. },
  1912. "_children": [
  1913. {
  1914. "__id__": 80
  1915. }
  1916. ],
  1917. "_active": true,
  1918. "_components": [
  1919. {
  1920. "__id__": 86
  1921. },
  1922. {
  1923. "__id__": 88
  1924. },
  1925. {
  1926. "__id__": 90
  1927. }
  1928. ],
  1929. "_prefab": {
  1930. "__id__": 92
  1931. },
  1932. "_lpos": {
  1933. "__type__": "cc.Vec3",
  1934. "x": -110,
  1935. "y": 0,
  1936. "z": 0
  1937. },
  1938. "_lrot": {
  1939. "__type__": "cc.Quat",
  1940. "x": 0,
  1941. "y": 0,
  1942. "z": 0,
  1943. "w": 1
  1944. },
  1945. "_lscale": {
  1946. "__type__": "cc.Vec3",
  1947. "x": 1,
  1948. "y": 1,
  1949. "z": 1
  1950. },
  1951. "_mobility": 0,
  1952. "_layer": 33554432,
  1953. "_euler": {
  1954. "__type__": "cc.Vec3",
  1955. "x": 0,
  1956. "y": 0,
  1957. "z": 0
  1958. },
  1959. "_id": ""
  1960. },
  1961. {
  1962. "__type__": "cc.Node",
  1963. "_name": "Label",
  1964. "_objFlags": 0,
  1965. "__editorExtras__": {},
  1966. "_parent": {
  1967. "__id__": 79
  1968. },
  1969. "_children": [],
  1970. "_active": true,
  1971. "_components": [
  1972. {
  1973. "__id__": 81
  1974. },
  1975. {
  1976. "__id__": 83
  1977. }
  1978. ],
  1979. "_prefab": {
  1980. "__id__": 85
  1981. },
  1982. "_lpos": {
  1983. "__type__": "cc.Vec3",
  1984. "x": 0,
  1985. "y": 0,
  1986. "z": 0
  1987. },
  1988. "_lrot": {
  1989. "__type__": "cc.Quat",
  1990. "x": 0,
  1991. "y": 0,
  1992. "z": 0,
  1993. "w": 1
  1994. },
  1995. "_lscale": {
  1996. "__type__": "cc.Vec3",
  1997. "x": 1,
  1998. "y": 1,
  1999. "z": 1
  2000. },
  2001. "_mobility": 0,
  2002. "_layer": 33554432,
  2003. "_euler": {
  2004. "__type__": "cc.Vec3",
  2005. "x": 0,
  2006. "y": 0,
  2007. "z": 0
  2008. },
  2009. "_id": ""
  2010. },
  2011. {
  2012. "__type__": "cc.UITransform",
  2013. "_name": "",
  2014. "_objFlags": 0,
  2015. "__editorExtras__": {},
  2016. "node": {
  2017. "__id__": 80
  2018. },
  2019. "_enabled": true,
  2020. "__prefab": {
  2021. "__id__": 82
  2022. },
  2023. "_contentSize": {
  2024. "__type__": "cc.Size",
  2025. "width": 100,
  2026. "height": 40
  2027. },
  2028. "_anchorPoint": {
  2029. "__type__": "cc.Vec2",
  2030. "x": 0.5,
  2031. "y": 0.5
  2032. },
  2033. "_id": ""
  2034. },
  2035. {
  2036. "__type__": "cc.CompPrefabInfo",
  2037. "fileId": "a9GiAjtbpLr49+3T5UderC"
  2038. },
  2039. {
  2040. "__type__": "cc.Label",
  2041. "_name": "",
  2042. "_objFlags": 0,
  2043. "__editorExtras__": {},
  2044. "node": {
  2045. "__id__": 80
  2046. },
  2047. "_enabled": true,
  2048. "__prefab": {
  2049. "__id__": 84
  2050. },
  2051. "_customMaterial": null,
  2052. "_srcBlendFactor": 2,
  2053. "_dstBlendFactor": 4,
  2054. "_color": {
  2055. "__type__": "cc.Color",
  2056. "r": 0,
  2057. "g": 0,
  2058. "b": 0,
  2059. "a": 255
  2060. },
  2061. "_string": "上一页",
  2062. "_horizontalAlign": 1,
  2063. "_verticalAlign": 1,
  2064. "_actualFontSize": 20,
  2065. "_fontSize": 20,
  2066. "_fontFamily": "Arial",
  2067. "_lineHeight": 40,
  2068. "_overflow": 1,
  2069. "_enableWrapText": false,
  2070. "_font": null,
  2071. "_isSystemFontUsed": true,
  2072. "_spacingX": 0,
  2073. "_isItalic": false,
  2074. "_isBold": false,
  2075. "_isUnderline": false,
  2076. "_underlineHeight": 2,
  2077. "_cacheMode": 0,
  2078. "_id": ""
  2079. },
  2080. {
  2081. "__type__": "cc.CompPrefabInfo",
  2082. "fileId": "6aB8E3l3dMBIZeW8m8f1Nu"
  2083. },
  2084. {
  2085. "__type__": "cc.PrefabInfo",
  2086. "root": {
  2087. "__id__": 1
  2088. },
  2089. "asset": {
  2090. "__id__": 0
  2091. },
  2092. "fileId": "6cucGTZERIkJkk37IaUrc5",
  2093. "instance": null,
  2094. "targetOverrides": null,
  2095. "nestedPrefabInstanceRoots": null
  2096. },
  2097. {
  2098. "__type__": "cc.UITransform",
  2099. "_name": "",
  2100. "_objFlags": 0,
  2101. "__editorExtras__": {},
  2102. "node": {
  2103. "__id__": 79
  2104. },
  2105. "_enabled": true,
  2106. "__prefab": {
  2107. "__id__": 87
  2108. },
  2109. "_contentSize": {
  2110. "__type__": "cc.Size",
  2111. "width": 100,
  2112. "height": 40
  2113. },
  2114. "_anchorPoint": {
  2115. "__type__": "cc.Vec2",
  2116. "x": 0.5,
  2117. "y": 0.5
  2118. },
  2119. "_id": ""
  2120. },
  2121. {
  2122. "__type__": "cc.CompPrefabInfo",
  2123. "fileId": "ddgNzCMHxLtJJpaAubPpuZ"
  2124. },
  2125. {
  2126. "__type__": "cc.Sprite",
  2127. "_name": "",
  2128. "_objFlags": 0,
  2129. "__editorExtras__": {},
  2130. "node": {
  2131. "__id__": 79
  2132. },
  2133. "_enabled": true,
  2134. "__prefab": {
  2135. "__id__": 89
  2136. },
  2137. "_customMaterial": null,
  2138. "_srcBlendFactor": 2,
  2139. "_dstBlendFactor": 4,
  2140. "_color": {
  2141. "__type__": "cc.Color",
  2142. "r": 255,
  2143. "g": 255,
  2144. "b": 255,
  2145. "a": 255
  2146. },
  2147. "_spriteFrame": {
  2148. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2149. "__expectedType__": "cc.SpriteFrame"
  2150. },
  2151. "_type": 1,
  2152. "_fillType": 0,
  2153. "_sizeMode": 0,
  2154. "_fillCenter": {
  2155. "__type__": "cc.Vec2",
  2156. "x": 0,
  2157. "y": 0
  2158. },
  2159. "_fillStart": 0,
  2160. "_fillRange": 0,
  2161. "_isTrimmedMode": true,
  2162. "_useGrayscale": false,
  2163. "_atlas": null,
  2164. "_id": ""
  2165. },
  2166. {
  2167. "__type__": "cc.CompPrefabInfo",
  2168. "fileId": "6bXM3E8OJNLp+UpK4eZScS"
  2169. },
  2170. {
  2171. "__type__": "cc.Button",
  2172. "_name": "",
  2173. "_objFlags": 0,
  2174. "__editorExtras__": {},
  2175. "node": {
  2176. "__id__": 79
  2177. },
  2178. "_enabled": true,
  2179. "__prefab": {
  2180. "__id__": 91
  2181. },
  2182. "clickEvents": [],
  2183. "_interactable": true,
  2184. "_transition": 2,
  2185. "_normalColor": {
  2186. "__type__": "cc.Color",
  2187. "r": 214,
  2188. "g": 214,
  2189. "b": 214,
  2190. "a": 255
  2191. },
  2192. "_hoverColor": {
  2193. "__type__": "cc.Color",
  2194. "r": 211,
  2195. "g": 211,
  2196. "b": 211,
  2197. "a": 255
  2198. },
  2199. "_pressedColor": {
  2200. "__type__": "cc.Color",
  2201. "r": 255,
  2202. "g": 255,
  2203. "b": 255,
  2204. "a": 255
  2205. },
  2206. "_disabledColor": {
  2207. "__type__": "cc.Color",
  2208. "r": 124,
  2209. "g": 124,
  2210. "b": 124,
  2211. "a": 255
  2212. },
  2213. "_normalSprite": {
  2214. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2215. "__expectedType__": "cc.SpriteFrame"
  2216. },
  2217. "_hoverSprite": {
  2218. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2219. "__expectedType__": "cc.SpriteFrame"
  2220. },
  2221. "_pressedSprite": {
  2222. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  2223. "__expectedType__": "cc.SpriteFrame"
  2224. },
  2225. "_disabledSprite": {
  2226. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  2227. "__expectedType__": "cc.SpriteFrame"
  2228. },
  2229. "_duration": 0.1,
  2230. "_zoomScale": 1.2,
  2231. "_target": {
  2232. "__id__": 79
  2233. },
  2234. "_id": ""
  2235. },
  2236. {
  2237. "__type__": "cc.CompPrefabInfo",
  2238. "fileId": "88Hxmt3HxF/6IXOHgqwcP2"
  2239. },
  2240. {
  2241. "__type__": "cc.PrefabInfo",
  2242. "root": {
  2243. "__id__": 1
  2244. },
  2245. "asset": {
  2246. "__id__": 0
  2247. },
  2248. "fileId": "913Xrlrj9CBI9jyNx7WFBZ",
  2249. "instance": null,
  2250. "targetOverrides": null,
  2251. "nestedPrefabInstanceRoots": null
  2252. },
  2253. {
  2254. "__type__": "cc.Node",
  2255. "_name": "btn_next",
  2256. "_objFlags": 0,
  2257. "__editorExtras__": {},
  2258. "_parent": {
  2259. "__id__": 78
  2260. },
  2261. "_children": [
  2262. {
  2263. "__id__": 94
  2264. }
  2265. ],
  2266. "_active": true,
  2267. "_components": [
  2268. {
  2269. "__id__": 100
  2270. },
  2271. {
  2272. "__id__": 102
  2273. },
  2274. {
  2275. "__id__": 104
  2276. }
  2277. ],
  2278. "_prefab": {
  2279. "__id__": 106
  2280. },
  2281. "_lpos": {
  2282. "__type__": "cc.Vec3",
  2283. "x": 109.99999999999989,
  2284. "y": 0,
  2285. "z": 0
  2286. },
  2287. "_lrot": {
  2288. "__type__": "cc.Quat",
  2289. "x": 0,
  2290. "y": 0,
  2291. "z": 0,
  2292. "w": 1
  2293. },
  2294. "_lscale": {
  2295. "__type__": "cc.Vec3",
  2296. "x": 1,
  2297. "y": 1,
  2298. "z": 1
  2299. },
  2300. "_mobility": 0,
  2301. "_layer": 33554432,
  2302. "_euler": {
  2303. "__type__": "cc.Vec3",
  2304. "x": 0,
  2305. "y": 0,
  2306. "z": 0
  2307. },
  2308. "_id": ""
  2309. },
  2310. {
  2311. "__type__": "cc.Node",
  2312. "_name": "Label",
  2313. "_objFlags": 0,
  2314. "__editorExtras__": {},
  2315. "_parent": {
  2316. "__id__": 93
  2317. },
  2318. "_children": [],
  2319. "_active": true,
  2320. "_components": [
  2321. {
  2322. "__id__": 95
  2323. },
  2324. {
  2325. "__id__": 97
  2326. }
  2327. ],
  2328. "_prefab": {
  2329. "__id__": 99
  2330. },
  2331. "_lpos": {
  2332. "__type__": "cc.Vec3",
  2333. "x": 0,
  2334. "y": 0,
  2335. "z": 0
  2336. },
  2337. "_lrot": {
  2338. "__type__": "cc.Quat",
  2339. "x": 0,
  2340. "y": 0,
  2341. "z": 0,
  2342. "w": 1
  2343. },
  2344. "_lscale": {
  2345. "__type__": "cc.Vec3",
  2346. "x": 1,
  2347. "y": 1,
  2348. "z": 1
  2349. },
  2350. "_mobility": 0,
  2351. "_layer": 33554432,
  2352. "_euler": {
  2353. "__type__": "cc.Vec3",
  2354. "x": 0,
  2355. "y": 0,
  2356. "z": 0
  2357. },
  2358. "_id": ""
  2359. },
  2360. {
  2361. "__type__": "cc.UITransform",
  2362. "_name": "",
  2363. "_objFlags": 0,
  2364. "__editorExtras__": {},
  2365. "node": {
  2366. "__id__": 94
  2367. },
  2368. "_enabled": true,
  2369. "__prefab": {
  2370. "__id__": 96
  2371. },
  2372. "_contentSize": {
  2373. "__type__": "cc.Size",
  2374. "width": 100,
  2375. "height": 40
  2376. },
  2377. "_anchorPoint": {
  2378. "__type__": "cc.Vec2",
  2379. "x": 0.5,
  2380. "y": 0.5
  2381. },
  2382. "_id": ""
  2383. },
  2384. {
  2385. "__type__": "cc.CompPrefabInfo",
  2386. "fileId": "83iuabyidOeKcgyTbbxW7t"
  2387. },
  2388. {
  2389. "__type__": "cc.Label",
  2390. "_name": "",
  2391. "_objFlags": 0,
  2392. "__editorExtras__": {},
  2393. "node": {
  2394. "__id__": 94
  2395. },
  2396. "_enabled": true,
  2397. "__prefab": {
  2398. "__id__": 98
  2399. },
  2400. "_customMaterial": null,
  2401. "_srcBlendFactor": 2,
  2402. "_dstBlendFactor": 4,
  2403. "_color": {
  2404. "__type__": "cc.Color",
  2405. "r": 0,
  2406. "g": 0,
  2407. "b": 0,
  2408. "a": 255
  2409. },
  2410. "_string": "下一页",
  2411. "_horizontalAlign": 1,
  2412. "_verticalAlign": 1,
  2413. "_actualFontSize": 20,
  2414. "_fontSize": 20,
  2415. "_fontFamily": "Arial",
  2416. "_lineHeight": 40,
  2417. "_overflow": 1,
  2418. "_enableWrapText": false,
  2419. "_font": null,
  2420. "_isSystemFontUsed": true,
  2421. "_spacingX": 0,
  2422. "_isItalic": false,
  2423. "_isBold": false,
  2424. "_isUnderline": false,
  2425. "_underlineHeight": 2,
  2426. "_cacheMode": 0,
  2427. "_id": ""
  2428. },
  2429. {
  2430. "__type__": "cc.CompPrefabInfo",
  2431. "fileId": "e4Qr4fmLZPGZS4YBKgu0Cv"
  2432. },
  2433. {
  2434. "__type__": "cc.PrefabInfo",
  2435. "root": {
  2436. "__id__": 1
  2437. },
  2438. "asset": {
  2439. "__id__": 0
  2440. },
  2441. "fileId": "82MTG1BWpEzL3Av1P6eUQ6",
  2442. "instance": null,
  2443. "targetOverrides": null,
  2444. "nestedPrefabInstanceRoots": null
  2445. },
  2446. {
  2447. "__type__": "cc.UITransform",
  2448. "_name": "",
  2449. "_objFlags": 0,
  2450. "__editorExtras__": {},
  2451. "node": {
  2452. "__id__": 93
  2453. },
  2454. "_enabled": true,
  2455. "__prefab": {
  2456. "__id__": 101
  2457. },
  2458. "_contentSize": {
  2459. "__type__": "cc.Size",
  2460. "width": 100,
  2461. "height": 40
  2462. },
  2463. "_anchorPoint": {
  2464. "__type__": "cc.Vec2",
  2465. "x": 0.5,
  2466. "y": 0.5
  2467. },
  2468. "_id": ""
  2469. },
  2470. {
  2471. "__type__": "cc.CompPrefabInfo",
  2472. "fileId": "0eSssSDPhGiJdFgsHBErMi"
  2473. },
  2474. {
  2475. "__type__": "cc.Sprite",
  2476. "_name": "",
  2477. "_objFlags": 0,
  2478. "__editorExtras__": {},
  2479. "node": {
  2480. "__id__": 93
  2481. },
  2482. "_enabled": true,
  2483. "__prefab": {
  2484. "__id__": 103
  2485. },
  2486. "_customMaterial": null,
  2487. "_srcBlendFactor": 2,
  2488. "_dstBlendFactor": 4,
  2489. "_color": {
  2490. "__type__": "cc.Color",
  2491. "r": 255,
  2492. "g": 255,
  2493. "b": 255,
  2494. "a": 255
  2495. },
  2496. "_spriteFrame": {
  2497. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2498. "__expectedType__": "cc.SpriteFrame"
  2499. },
  2500. "_type": 1,
  2501. "_fillType": 0,
  2502. "_sizeMode": 0,
  2503. "_fillCenter": {
  2504. "__type__": "cc.Vec2",
  2505. "x": 0,
  2506. "y": 0
  2507. },
  2508. "_fillStart": 0,
  2509. "_fillRange": 0,
  2510. "_isTrimmedMode": true,
  2511. "_useGrayscale": false,
  2512. "_atlas": null,
  2513. "_id": ""
  2514. },
  2515. {
  2516. "__type__": "cc.CompPrefabInfo",
  2517. "fileId": "f2/XMCwJRL7530swVFQjVc"
  2518. },
  2519. {
  2520. "__type__": "cc.Button",
  2521. "_name": "",
  2522. "_objFlags": 0,
  2523. "__editorExtras__": {},
  2524. "node": {
  2525. "__id__": 93
  2526. },
  2527. "_enabled": true,
  2528. "__prefab": {
  2529. "__id__": 105
  2530. },
  2531. "clickEvents": [],
  2532. "_interactable": true,
  2533. "_transition": 2,
  2534. "_normalColor": {
  2535. "__type__": "cc.Color",
  2536. "r": 214,
  2537. "g": 214,
  2538. "b": 214,
  2539. "a": 255
  2540. },
  2541. "_hoverColor": {
  2542. "__type__": "cc.Color",
  2543. "r": 211,
  2544. "g": 211,
  2545. "b": 211,
  2546. "a": 255
  2547. },
  2548. "_pressedColor": {
  2549. "__type__": "cc.Color",
  2550. "r": 255,
  2551. "g": 255,
  2552. "b": 255,
  2553. "a": 255
  2554. },
  2555. "_disabledColor": {
  2556. "__type__": "cc.Color",
  2557. "r": 124,
  2558. "g": 124,
  2559. "b": 124,
  2560. "a": 255
  2561. },
  2562. "_normalSprite": {
  2563. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2564. "__expectedType__": "cc.SpriteFrame"
  2565. },
  2566. "_hoverSprite": {
  2567. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2568. "__expectedType__": "cc.SpriteFrame"
  2569. },
  2570. "_pressedSprite": {
  2571. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  2572. "__expectedType__": "cc.SpriteFrame"
  2573. },
  2574. "_disabledSprite": {
  2575. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  2576. "__expectedType__": "cc.SpriteFrame"
  2577. },
  2578. "_duration": 0.1,
  2579. "_zoomScale": 1.2,
  2580. "_target": {
  2581. "__id__": 93
  2582. },
  2583. "_id": ""
  2584. },
  2585. {
  2586. "__type__": "cc.CompPrefabInfo",
  2587. "fileId": "0bZbtqqChJeYpyrKwlx4cG"
  2588. },
  2589. {
  2590. "__type__": "cc.PrefabInfo",
  2591. "root": {
  2592. "__id__": 1
  2593. },
  2594. "asset": {
  2595. "__id__": 0
  2596. },
  2597. "fileId": "75685S4hROQbTZJVhNjXor",
  2598. "instance": null,
  2599. "targetOverrides": null,
  2600. "nestedPrefabInstanceRoots": null
  2601. },
  2602. {
  2603. "__type__": "cc.Node",
  2604. "_name": "page_edit_box",
  2605. "_objFlags": 0,
  2606. "__editorExtras__": {},
  2607. "_parent": {
  2608. "__id__": 78
  2609. },
  2610. "_children": [
  2611. {
  2612. "__id__": 108
  2613. },
  2614. {
  2615. "__id__": 114
  2616. }
  2617. ],
  2618. "_active": true,
  2619. "_components": [
  2620. {
  2621. "__id__": 120
  2622. },
  2623. {
  2624. "__id__": 122
  2625. },
  2626. {
  2627. "__id__": 124
  2628. }
  2629. ],
  2630. "_prefab": {
  2631. "__id__": 126
  2632. },
  2633. "_lpos": {
  2634. "__type__": "cc.Vec3",
  2635. "x": 0,
  2636. "y": 0,
  2637. "z": 0
  2638. },
  2639. "_lrot": {
  2640. "__type__": "cc.Quat",
  2641. "x": 0,
  2642. "y": 0,
  2643. "z": 0,
  2644. "w": 1
  2645. },
  2646. "_lscale": {
  2647. "__type__": "cc.Vec3",
  2648. "x": 1,
  2649. "y": 1,
  2650. "z": 1
  2651. },
  2652. "_mobility": 0,
  2653. "_layer": 33554432,
  2654. "_euler": {
  2655. "__type__": "cc.Vec3",
  2656. "x": 0,
  2657. "y": 0,
  2658. "z": 0
  2659. },
  2660. "_id": ""
  2661. },
  2662. {
  2663. "__type__": "cc.Node",
  2664. "_name": "TEXT_LABEL",
  2665. "_objFlags": 0,
  2666. "__editorExtras__": {},
  2667. "_parent": {
  2668. "__id__": 107
  2669. },
  2670. "_children": [],
  2671. "_active": true,
  2672. "_components": [
  2673. {
  2674. "__id__": 109
  2675. },
  2676. {
  2677. "__id__": 111
  2678. }
  2679. ],
  2680. "_prefab": {
  2681. "__id__": 113
  2682. },
  2683. "_lpos": {
  2684. "__type__": "cc.Vec3",
  2685. "x": -48,
  2686. "y": 20,
  2687. "z": 0
  2688. },
  2689. "_lrot": {
  2690. "__type__": "cc.Quat",
  2691. "x": 0,
  2692. "y": 0,
  2693. "z": 0,
  2694. "w": 1
  2695. },
  2696. "_lscale": {
  2697. "__type__": "cc.Vec3",
  2698. "x": 1,
  2699. "y": 1,
  2700. "z": 1
  2701. },
  2702. "_mobility": 0,
  2703. "_layer": 33554432,
  2704. "_euler": {
  2705. "__type__": "cc.Vec3",
  2706. "x": 0,
  2707. "y": 0,
  2708. "z": 0
  2709. },
  2710. "_id": ""
  2711. },
  2712. {
  2713. "__type__": "cc.UITransform",
  2714. "_name": "",
  2715. "_objFlags": 0,
  2716. "__editorExtras__": {},
  2717. "node": {
  2718. "__id__": 108
  2719. },
  2720. "_enabled": true,
  2721. "__prefab": {
  2722. "__id__": 110
  2723. },
  2724. "_contentSize": {
  2725. "__type__": "cc.Size",
  2726. "width": 98,
  2727. "height": 40
  2728. },
  2729. "_anchorPoint": {
  2730. "__type__": "cc.Vec2",
  2731. "x": 0,
  2732. "y": 1
  2733. },
  2734. "_id": ""
  2735. },
  2736. {
  2737. "__type__": "cc.CompPrefabInfo",
  2738. "fileId": "73FRXeBQ9OQo9+xl4HjyFX"
  2739. },
  2740. {
  2741. "__type__": "cc.Label",
  2742. "_name": "",
  2743. "_objFlags": 0,
  2744. "__editorExtras__": {},
  2745. "node": {
  2746. "__id__": 108
  2747. },
  2748. "_enabled": true,
  2749. "__prefab": {
  2750. "__id__": 112
  2751. },
  2752. "_customMaterial": null,
  2753. "_srcBlendFactor": 2,
  2754. "_dstBlendFactor": 4,
  2755. "_color": {
  2756. "__type__": "cc.Color",
  2757. "r": 255,
  2758. "g": 255,
  2759. "b": 255,
  2760. "a": 255
  2761. },
  2762. "_string": "1",
  2763. "_horizontalAlign": 1,
  2764. "_verticalAlign": 1,
  2765. "_actualFontSize": 20,
  2766. "_fontSize": 20,
  2767. "_fontFamily": "Arial",
  2768. "_lineHeight": 40,
  2769. "_overflow": 1,
  2770. "_enableWrapText": false,
  2771. "_font": null,
  2772. "_isSystemFontUsed": true,
  2773. "_spacingX": 0,
  2774. "_isItalic": false,
  2775. "_isBold": false,
  2776. "_isUnderline": false,
  2777. "_underlineHeight": 2,
  2778. "_cacheMode": 0,
  2779. "_id": ""
  2780. },
  2781. {
  2782. "__type__": "cc.CompPrefabInfo",
  2783. "fileId": "4bRlNV889Ay7ZE6f+DXkW7"
  2784. },
  2785. {
  2786. "__type__": "cc.PrefabInfo",
  2787. "root": {
  2788. "__id__": 1
  2789. },
  2790. "asset": {
  2791. "__id__": 0
  2792. },
  2793. "fileId": "92t6e13cVGNKkh0h+Sa7C3",
  2794. "instance": null,
  2795. "targetOverrides": null,
  2796. "nestedPrefabInstanceRoots": null
  2797. },
  2798. {
  2799. "__type__": "cc.Node",
  2800. "_name": "PLACEHOLDER_LABEL",
  2801. "_objFlags": 0,
  2802. "__editorExtras__": {},
  2803. "_parent": {
  2804. "__id__": 107
  2805. },
  2806. "_children": [],
  2807. "_active": false,
  2808. "_components": [
  2809. {
  2810. "__id__": 115
  2811. },
  2812. {
  2813. "__id__": 117
  2814. }
  2815. ],
  2816. "_prefab": {
  2817. "__id__": 119
  2818. },
  2819. "_lpos": {
  2820. "__type__": "cc.Vec3",
  2821. "x": -48,
  2822. "y": 20,
  2823. "z": 0
  2824. },
  2825. "_lrot": {
  2826. "__type__": "cc.Quat",
  2827. "x": 0,
  2828. "y": 0,
  2829. "z": 0,
  2830. "w": 1
  2831. },
  2832. "_lscale": {
  2833. "__type__": "cc.Vec3",
  2834. "x": 1,
  2835. "y": 1,
  2836. "z": 1
  2837. },
  2838. "_mobility": 0,
  2839. "_layer": 33554432,
  2840. "_euler": {
  2841. "__type__": "cc.Vec3",
  2842. "x": 0,
  2843. "y": 0,
  2844. "z": 0
  2845. },
  2846. "_id": ""
  2847. },
  2848. {
  2849. "__type__": "cc.UITransform",
  2850. "_name": "",
  2851. "_objFlags": 0,
  2852. "__editorExtras__": {},
  2853. "node": {
  2854. "__id__": 114
  2855. },
  2856. "_enabled": true,
  2857. "__prefab": {
  2858. "__id__": 116
  2859. },
  2860. "_contentSize": {
  2861. "__type__": "cc.Size",
  2862. "width": 98,
  2863. "height": 40
  2864. },
  2865. "_anchorPoint": {
  2866. "__type__": "cc.Vec2",
  2867. "x": 0,
  2868. "y": 1
  2869. },
  2870. "_id": ""
  2871. },
  2872. {
  2873. "__type__": "cc.CompPrefabInfo",
  2874. "fileId": "9eU8p63HNMnZ3Q1lk7FrHg"
  2875. },
  2876. {
  2877. "__type__": "cc.Label",
  2878. "_name": "",
  2879. "_objFlags": 0,
  2880. "__editorExtras__": {},
  2881. "node": {
  2882. "__id__": 114
  2883. },
  2884. "_enabled": true,
  2885. "__prefab": {
  2886. "__id__": 118
  2887. },
  2888. "_customMaterial": null,
  2889. "_srcBlendFactor": 2,
  2890. "_dstBlendFactor": 4,
  2891. "_color": {
  2892. "__type__": "cc.Color",
  2893. "r": 255,
  2894. "g": 255,
  2895. "b": 255,
  2896. "a": 255
  2897. },
  2898. "_string": "输入页数",
  2899. "_horizontalAlign": 1,
  2900. "_verticalAlign": 1,
  2901. "_actualFontSize": 20,
  2902. "_fontSize": 20,
  2903. "_fontFamily": "Arial",
  2904. "_lineHeight": 40,
  2905. "_overflow": 1,
  2906. "_enableWrapText": false,
  2907. "_font": null,
  2908. "_isSystemFontUsed": true,
  2909. "_spacingX": 0,
  2910. "_isItalic": false,
  2911. "_isBold": false,
  2912. "_isUnderline": false,
  2913. "_underlineHeight": 2,
  2914. "_cacheMode": 0,
  2915. "_id": ""
  2916. },
  2917. {
  2918. "__type__": "cc.CompPrefabInfo",
  2919. "fileId": "45CS1va+9DT6FLR78Hvj/8"
  2920. },
  2921. {
  2922. "__type__": "cc.PrefabInfo",
  2923. "root": {
  2924. "__id__": 1
  2925. },
  2926. "asset": {
  2927. "__id__": 0
  2928. },
  2929. "fileId": "28IyGpz2xJDbz7NKhbWoDp",
  2930. "instance": null,
  2931. "targetOverrides": null,
  2932. "nestedPrefabInstanceRoots": null
  2933. },
  2934. {
  2935. "__type__": "cc.UITransform",
  2936. "_name": "",
  2937. "_objFlags": 0,
  2938. "__editorExtras__": {},
  2939. "node": {
  2940. "__id__": 107
  2941. },
  2942. "_enabled": true,
  2943. "__prefab": {
  2944. "__id__": 121
  2945. },
  2946. "_contentSize": {
  2947. "__type__": "cc.Size",
  2948. "width": 100,
  2949. "height": 40
  2950. },
  2951. "_anchorPoint": {
  2952. "__type__": "cc.Vec2",
  2953. "x": 0.5,
  2954. "y": 0.5
  2955. },
  2956. "_id": ""
  2957. },
  2958. {
  2959. "__type__": "cc.CompPrefabInfo",
  2960. "fileId": "1eMSZBaMdPP7OWwFeZUNza"
  2961. },
  2962. {
  2963. "__type__": "cc.Sprite",
  2964. "_name": "",
  2965. "_objFlags": 0,
  2966. "__editorExtras__": {},
  2967. "node": {
  2968. "__id__": 107
  2969. },
  2970. "_enabled": true,
  2971. "__prefab": {
  2972. "__id__": 123
  2973. },
  2974. "_customMaterial": null,
  2975. "_srcBlendFactor": 2,
  2976. "_dstBlendFactor": 4,
  2977. "_color": {
  2978. "__type__": "cc.Color",
  2979. "r": 255,
  2980. "g": 255,
  2981. "b": 255,
  2982. "a": 255
  2983. },
  2984. "_spriteFrame": {
  2985. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  2986. "__expectedType__": "cc.SpriteFrame"
  2987. },
  2988. "_type": 1,
  2989. "_fillType": 0,
  2990. "_sizeMode": 0,
  2991. "_fillCenter": {
  2992. "__type__": "cc.Vec2",
  2993. "x": 0,
  2994. "y": 0
  2995. },
  2996. "_fillStart": 0,
  2997. "_fillRange": 0,
  2998. "_isTrimmedMode": true,
  2999. "_useGrayscale": false,
  3000. "_atlas": null,
  3001. "_id": ""
  3002. },
  3003. {
  3004. "__type__": "cc.CompPrefabInfo",
  3005. "fileId": "4boYYlfklJKZZlgBC/JZks"
  3006. },
  3007. {
  3008. "__type__": "cc.EditBox",
  3009. "_name": "",
  3010. "_objFlags": 0,
  3011. "__editorExtras__": {},
  3012. "node": {
  3013. "__id__": 107
  3014. },
  3015. "_enabled": true,
  3016. "__prefab": {
  3017. "__id__": 125
  3018. },
  3019. "editingDidBegan": [],
  3020. "textChanged": [],
  3021. "editingDidEnded": [],
  3022. "editingReturn": [],
  3023. "_textLabel": {
  3024. "__id__": 111
  3025. },
  3026. "_placeholderLabel": {
  3027. "__id__": 117
  3028. },
  3029. "_returnType": 0,
  3030. "_string": "1",
  3031. "_tabIndex": 0,
  3032. "_backgroundImage": {
  3033. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  3034. "__expectedType__": "cc.SpriteFrame"
  3035. },
  3036. "_inputFlag": 5,
  3037. "_inputMode": 3,
  3038. "_maxLength": 8,
  3039. "_id": ""
  3040. },
  3041. {
  3042. "__type__": "cc.CompPrefabInfo",
  3043. "fileId": "716PrwwkVGSZl+m/bZZd4H"
  3044. },
  3045. {
  3046. "__type__": "cc.PrefabInfo",
  3047. "root": {
  3048. "__id__": 1
  3049. },
  3050. "asset": {
  3051. "__id__": 0
  3052. },
  3053. "fileId": "4dmnp48BVP8rEPRPQY3r8y",
  3054. "instance": null,
  3055. "targetOverrides": null,
  3056. "nestedPrefabInstanceRoots": null
  3057. },
  3058. {
  3059. "__type__": "cc.Node",
  3060. "_name": "btn_first_page",
  3061. "_objFlags": 0,
  3062. "__editorExtras__": {},
  3063. "_parent": {
  3064. "__id__": 78
  3065. },
  3066. "_children": [
  3067. {
  3068. "__id__": 128
  3069. }
  3070. ],
  3071. "_active": true,
  3072. "_components": [
  3073. {
  3074. "__id__": 134
  3075. },
  3076. {
  3077. "__id__": 136
  3078. },
  3079. {
  3080. "__id__": 138
  3081. }
  3082. ],
  3083. "_prefab": {
  3084. "__id__": 140
  3085. },
  3086. "_lpos": {
  3087. "__type__": "cc.Vec3",
  3088. "x": -220,
  3089. "y": 0,
  3090. "z": 0
  3091. },
  3092. "_lrot": {
  3093. "__type__": "cc.Quat",
  3094. "x": 0,
  3095. "y": 0,
  3096. "z": 0,
  3097. "w": 1
  3098. },
  3099. "_lscale": {
  3100. "__type__": "cc.Vec3",
  3101. "x": 1,
  3102. "y": 1,
  3103. "z": 1
  3104. },
  3105. "_mobility": 0,
  3106. "_layer": 33554432,
  3107. "_euler": {
  3108. "__type__": "cc.Vec3",
  3109. "x": 0,
  3110. "y": 0,
  3111. "z": 0
  3112. },
  3113. "_id": ""
  3114. },
  3115. {
  3116. "__type__": "cc.Node",
  3117. "_name": "Label",
  3118. "_objFlags": 0,
  3119. "__editorExtras__": {},
  3120. "_parent": {
  3121. "__id__": 127
  3122. },
  3123. "_children": [],
  3124. "_active": true,
  3125. "_components": [
  3126. {
  3127. "__id__": 129
  3128. },
  3129. {
  3130. "__id__": 131
  3131. }
  3132. ],
  3133. "_prefab": {
  3134. "__id__": 133
  3135. },
  3136. "_lpos": {
  3137. "__type__": "cc.Vec3",
  3138. "x": 0,
  3139. "y": 0,
  3140. "z": 0
  3141. },
  3142. "_lrot": {
  3143. "__type__": "cc.Quat",
  3144. "x": 0,
  3145. "y": 0,
  3146. "z": 0,
  3147. "w": 1
  3148. },
  3149. "_lscale": {
  3150. "__type__": "cc.Vec3",
  3151. "x": 1,
  3152. "y": 1,
  3153. "z": 1
  3154. },
  3155. "_mobility": 0,
  3156. "_layer": 33554432,
  3157. "_euler": {
  3158. "__type__": "cc.Vec3",
  3159. "x": 0,
  3160. "y": 0,
  3161. "z": 0
  3162. },
  3163. "_id": ""
  3164. },
  3165. {
  3166. "__type__": "cc.UITransform",
  3167. "_name": "",
  3168. "_objFlags": 0,
  3169. "__editorExtras__": {},
  3170. "node": {
  3171. "__id__": 128
  3172. },
  3173. "_enabled": true,
  3174. "__prefab": {
  3175. "__id__": 130
  3176. },
  3177. "_contentSize": {
  3178. "__type__": "cc.Size",
  3179. "width": 100,
  3180. "height": 40
  3181. },
  3182. "_anchorPoint": {
  3183. "__type__": "cc.Vec2",
  3184. "x": 0.5,
  3185. "y": 0.5
  3186. },
  3187. "_id": ""
  3188. },
  3189. {
  3190. "__type__": "cc.CompPrefabInfo",
  3191. "fileId": "01BJiZXo1AVrQAQaH8ibiw"
  3192. },
  3193. {
  3194. "__type__": "cc.Label",
  3195. "_name": "",
  3196. "_objFlags": 0,
  3197. "__editorExtras__": {},
  3198. "node": {
  3199. "__id__": 128
  3200. },
  3201. "_enabled": true,
  3202. "__prefab": {
  3203. "__id__": 132
  3204. },
  3205. "_customMaterial": null,
  3206. "_srcBlendFactor": 2,
  3207. "_dstBlendFactor": 4,
  3208. "_color": {
  3209. "__type__": "cc.Color",
  3210. "r": 0,
  3211. "g": 0,
  3212. "b": 0,
  3213. "a": 255
  3214. },
  3215. "_string": "第一页",
  3216. "_horizontalAlign": 1,
  3217. "_verticalAlign": 1,
  3218. "_actualFontSize": 20,
  3219. "_fontSize": 20,
  3220. "_fontFamily": "Arial",
  3221. "_lineHeight": 40,
  3222. "_overflow": 1,
  3223. "_enableWrapText": false,
  3224. "_font": null,
  3225. "_isSystemFontUsed": true,
  3226. "_spacingX": 0,
  3227. "_isItalic": false,
  3228. "_isBold": false,
  3229. "_isUnderline": false,
  3230. "_underlineHeight": 2,
  3231. "_cacheMode": 0,
  3232. "_id": ""
  3233. },
  3234. {
  3235. "__type__": "cc.CompPrefabInfo",
  3236. "fileId": "0bxG3rifxJT4tzRriQYpnJ"
  3237. },
  3238. {
  3239. "__type__": "cc.PrefabInfo",
  3240. "root": {
  3241. "__id__": 1
  3242. },
  3243. "asset": {
  3244. "__id__": 0
  3245. },
  3246. "fileId": "4aDYh0OrBMwK8Zdlm+c9+u",
  3247. "instance": null,
  3248. "targetOverrides": null,
  3249. "nestedPrefabInstanceRoots": null
  3250. },
  3251. {
  3252. "__type__": "cc.UITransform",
  3253. "_name": "",
  3254. "_objFlags": 0,
  3255. "__editorExtras__": {},
  3256. "node": {
  3257. "__id__": 127
  3258. },
  3259. "_enabled": true,
  3260. "__prefab": {
  3261. "__id__": 135
  3262. },
  3263. "_contentSize": {
  3264. "__type__": "cc.Size",
  3265. "width": 100,
  3266. "height": 40
  3267. },
  3268. "_anchorPoint": {
  3269. "__type__": "cc.Vec2",
  3270. "x": 0.5,
  3271. "y": 0.5
  3272. },
  3273. "_id": ""
  3274. },
  3275. {
  3276. "__type__": "cc.CompPrefabInfo",
  3277. "fileId": "e9Y3FfgWBCxIY6R2jCyiOi"
  3278. },
  3279. {
  3280. "__type__": "cc.Sprite",
  3281. "_name": "",
  3282. "_objFlags": 0,
  3283. "__editorExtras__": {},
  3284. "node": {
  3285. "__id__": 127
  3286. },
  3287. "_enabled": true,
  3288. "__prefab": {
  3289. "__id__": 137
  3290. },
  3291. "_customMaterial": null,
  3292. "_srcBlendFactor": 2,
  3293. "_dstBlendFactor": 4,
  3294. "_color": {
  3295. "__type__": "cc.Color",
  3296. "r": 255,
  3297. "g": 255,
  3298. "b": 255,
  3299. "a": 255
  3300. },
  3301. "_spriteFrame": {
  3302. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3303. "__expectedType__": "cc.SpriteFrame"
  3304. },
  3305. "_type": 1,
  3306. "_fillType": 0,
  3307. "_sizeMode": 0,
  3308. "_fillCenter": {
  3309. "__type__": "cc.Vec2",
  3310. "x": 0,
  3311. "y": 0
  3312. },
  3313. "_fillStart": 0,
  3314. "_fillRange": 0,
  3315. "_isTrimmedMode": true,
  3316. "_useGrayscale": false,
  3317. "_atlas": null,
  3318. "_id": ""
  3319. },
  3320. {
  3321. "__type__": "cc.CompPrefabInfo",
  3322. "fileId": "35arhtFhVHa7yPfsS1zzJF"
  3323. },
  3324. {
  3325. "__type__": "cc.Button",
  3326. "_name": "",
  3327. "_objFlags": 0,
  3328. "__editorExtras__": {},
  3329. "node": {
  3330. "__id__": 127
  3331. },
  3332. "_enabled": true,
  3333. "__prefab": {
  3334. "__id__": 139
  3335. },
  3336. "clickEvents": [],
  3337. "_interactable": true,
  3338. "_transition": 2,
  3339. "_normalColor": {
  3340. "__type__": "cc.Color",
  3341. "r": 214,
  3342. "g": 214,
  3343. "b": 214,
  3344. "a": 255
  3345. },
  3346. "_hoverColor": {
  3347. "__type__": "cc.Color",
  3348. "r": 211,
  3349. "g": 211,
  3350. "b": 211,
  3351. "a": 255
  3352. },
  3353. "_pressedColor": {
  3354. "__type__": "cc.Color",
  3355. "r": 255,
  3356. "g": 255,
  3357. "b": 255,
  3358. "a": 255
  3359. },
  3360. "_disabledColor": {
  3361. "__type__": "cc.Color",
  3362. "r": 124,
  3363. "g": 124,
  3364. "b": 124,
  3365. "a": 255
  3366. },
  3367. "_normalSprite": {
  3368. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3369. "__expectedType__": "cc.SpriteFrame"
  3370. },
  3371. "_hoverSprite": {
  3372. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3373. "__expectedType__": "cc.SpriteFrame"
  3374. },
  3375. "_pressedSprite": {
  3376. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3377. "__expectedType__": "cc.SpriteFrame"
  3378. },
  3379. "_disabledSprite": {
  3380. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3381. "__expectedType__": "cc.SpriteFrame"
  3382. },
  3383. "_duration": 0.1,
  3384. "_zoomScale": 1.2,
  3385. "_target": {
  3386. "__id__": 127
  3387. },
  3388. "_id": ""
  3389. },
  3390. {
  3391. "__type__": "cc.CompPrefabInfo",
  3392. "fileId": "b9WfQHmLRDYJQadShcmZ8X"
  3393. },
  3394. {
  3395. "__type__": "cc.PrefabInfo",
  3396. "root": {
  3397. "__id__": 1
  3398. },
  3399. "asset": {
  3400. "__id__": 0
  3401. },
  3402. "fileId": "feqiyEqmlH9Zoq/4Tn6wBn",
  3403. "instance": null,
  3404. "targetOverrides": null,
  3405. "nestedPrefabInstanceRoots": null
  3406. },
  3407. {
  3408. "__type__": "cc.Node",
  3409. "_name": "btn_last_page",
  3410. "_objFlags": 0,
  3411. "__editorExtras__": {},
  3412. "_parent": {
  3413. "__id__": 78
  3414. },
  3415. "_children": [
  3416. {
  3417. "__id__": 142
  3418. }
  3419. ],
  3420. "_active": true,
  3421. "_components": [
  3422. {
  3423. "__id__": 148
  3424. },
  3425. {
  3426. "__id__": 150
  3427. },
  3428. {
  3429. "__id__": 152
  3430. }
  3431. ],
  3432. "_prefab": {
  3433. "__id__": 154
  3434. },
  3435. "_lpos": {
  3436. "__type__": "cc.Vec3",
  3437. "x": 219.9999999999999,
  3438. "y": 0,
  3439. "z": 0
  3440. },
  3441. "_lrot": {
  3442. "__type__": "cc.Quat",
  3443. "x": 0,
  3444. "y": 0,
  3445. "z": 0,
  3446. "w": 1
  3447. },
  3448. "_lscale": {
  3449. "__type__": "cc.Vec3",
  3450. "x": 1,
  3451. "y": 1,
  3452. "z": 1
  3453. },
  3454. "_mobility": 0,
  3455. "_layer": 33554432,
  3456. "_euler": {
  3457. "__type__": "cc.Vec3",
  3458. "x": 0,
  3459. "y": 0,
  3460. "z": 0
  3461. },
  3462. "_id": ""
  3463. },
  3464. {
  3465. "__type__": "cc.Node",
  3466. "_name": "Label",
  3467. "_objFlags": 0,
  3468. "__editorExtras__": {},
  3469. "_parent": {
  3470. "__id__": 141
  3471. },
  3472. "_children": [],
  3473. "_active": true,
  3474. "_components": [
  3475. {
  3476. "__id__": 143
  3477. },
  3478. {
  3479. "__id__": 145
  3480. }
  3481. ],
  3482. "_prefab": {
  3483. "__id__": 147
  3484. },
  3485. "_lpos": {
  3486. "__type__": "cc.Vec3",
  3487. "x": 0,
  3488. "y": 0,
  3489. "z": 0
  3490. },
  3491. "_lrot": {
  3492. "__type__": "cc.Quat",
  3493. "x": 0,
  3494. "y": 0,
  3495. "z": 0,
  3496. "w": 1
  3497. },
  3498. "_lscale": {
  3499. "__type__": "cc.Vec3",
  3500. "x": 1,
  3501. "y": 1,
  3502. "z": 1
  3503. },
  3504. "_mobility": 0,
  3505. "_layer": 33554432,
  3506. "_euler": {
  3507. "__type__": "cc.Vec3",
  3508. "x": 0,
  3509. "y": 0,
  3510. "z": 0
  3511. },
  3512. "_id": ""
  3513. },
  3514. {
  3515. "__type__": "cc.UITransform",
  3516. "_name": "",
  3517. "_objFlags": 0,
  3518. "__editorExtras__": {},
  3519. "node": {
  3520. "__id__": 142
  3521. },
  3522. "_enabled": true,
  3523. "__prefab": {
  3524. "__id__": 144
  3525. },
  3526. "_contentSize": {
  3527. "__type__": "cc.Size",
  3528. "width": 100,
  3529. "height": 40
  3530. },
  3531. "_anchorPoint": {
  3532. "__type__": "cc.Vec2",
  3533. "x": 0.5,
  3534. "y": 0.5
  3535. },
  3536. "_id": ""
  3537. },
  3538. {
  3539. "__type__": "cc.CompPrefabInfo",
  3540. "fileId": "61VrxlL/BJFoBAZ5YTkqDJ"
  3541. },
  3542. {
  3543. "__type__": "cc.Label",
  3544. "_name": "",
  3545. "_objFlags": 0,
  3546. "__editorExtras__": {},
  3547. "node": {
  3548. "__id__": 142
  3549. },
  3550. "_enabled": true,
  3551. "__prefab": {
  3552. "__id__": 146
  3553. },
  3554. "_customMaterial": null,
  3555. "_srcBlendFactor": 2,
  3556. "_dstBlendFactor": 4,
  3557. "_color": {
  3558. "__type__": "cc.Color",
  3559. "r": 0,
  3560. "g": 0,
  3561. "b": 0,
  3562. "a": 255
  3563. },
  3564. "_string": "最后一页",
  3565. "_horizontalAlign": 1,
  3566. "_verticalAlign": 1,
  3567. "_actualFontSize": 20,
  3568. "_fontSize": 20,
  3569. "_fontFamily": "Arial",
  3570. "_lineHeight": 40,
  3571. "_overflow": 1,
  3572. "_enableWrapText": false,
  3573. "_font": null,
  3574. "_isSystemFontUsed": true,
  3575. "_spacingX": 0,
  3576. "_isItalic": false,
  3577. "_isBold": false,
  3578. "_isUnderline": false,
  3579. "_underlineHeight": 2,
  3580. "_cacheMode": 0,
  3581. "_id": ""
  3582. },
  3583. {
  3584. "__type__": "cc.CompPrefabInfo",
  3585. "fileId": "03KX8gFvZG5q3U0cIMo6wr"
  3586. },
  3587. {
  3588. "__type__": "cc.PrefabInfo",
  3589. "root": {
  3590. "__id__": 1
  3591. },
  3592. "asset": {
  3593. "__id__": 0
  3594. },
  3595. "fileId": "6c7u+jJLZPrY9iiiR7nGEv",
  3596. "instance": null,
  3597. "targetOverrides": null,
  3598. "nestedPrefabInstanceRoots": null
  3599. },
  3600. {
  3601. "__type__": "cc.UITransform",
  3602. "_name": "",
  3603. "_objFlags": 0,
  3604. "__editorExtras__": {},
  3605. "node": {
  3606. "__id__": 141
  3607. },
  3608. "_enabled": true,
  3609. "__prefab": {
  3610. "__id__": 149
  3611. },
  3612. "_contentSize": {
  3613. "__type__": "cc.Size",
  3614. "width": 100,
  3615. "height": 40
  3616. },
  3617. "_anchorPoint": {
  3618. "__type__": "cc.Vec2",
  3619. "x": 0.5,
  3620. "y": 0.5
  3621. },
  3622. "_id": ""
  3623. },
  3624. {
  3625. "__type__": "cc.CompPrefabInfo",
  3626. "fileId": "1bRzfh9QhDLKPrQ0+S/DXG"
  3627. },
  3628. {
  3629. "__type__": "cc.Sprite",
  3630. "_name": "",
  3631. "_objFlags": 0,
  3632. "__editorExtras__": {},
  3633. "node": {
  3634. "__id__": 141
  3635. },
  3636. "_enabled": true,
  3637. "__prefab": {
  3638. "__id__": 151
  3639. },
  3640. "_customMaterial": null,
  3641. "_srcBlendFactor": 2,
  3642. "_dstBlendFactor": 4,
  3643. "_color": {
  3644. "__type__": "cc.Color",
  3645. "r": 255,
  3646. "g": 255,
  3647. "b": 255,
  3648. "a": 255
  3649. },
  3650. "_spriteFrame": {
  3651. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3652. "__expectedType__": "cc.SpriteFrame"
  3653. },
  3654. "_type": 1,
  3655. "_fillType": 0,
  3656. "_sizeMode": 0,
  3657. "_fillCenter": {
  3658. "__type__": "cc.Vec2",
  3659. "x": 0,
  3660. "y": 0
  3661. },
  3662. "_fillStart": 0,
  3663. "_fillRange": 0,
  3664. "_isTrimmedMode": true,
  3665. "_useGrayscale": false,
  3666. "_atlas": null,
  3667. "_id": ""
  3668. },
  3669. {
  3670. "__type__": "cc.CompPrefabInfo",
  3671. "fileId": "32F8z1kE1L4Z6mawHiDH9M"
  3672. },
  3673. {
  3674. "__type__": "cc.Button",
  3675. "_name": "",
  3676. "_objFlags": 0,
  3677. "__editorExtras__": {},
  3678. "node": {
  3679. "__id__": 141
  3680. },
  3681. "_enabled": true,
  3682. "__prefab": {
  3683. "__id__": 153
  3684. },
  3685. "clickEvents": [],
  3686. "_interactable": true,
  3687. "_transition": 2,
  3688. "_normalColor": {
  3689. "__type__": "cc.Color",
  3690. "r": 214,
  3691. "g": 214,
  3692. "b": 214,
  3693. "a": 255
  3694. },
  3695. "_hoverColor": {
  3696. "__type__": "cc.Color",
  3697. "r": 211,
  3698. "g": 211,
  3699. "b": 211,
  3700. "a": 255
  3701. },
  3702. "_pressedColor": {
  3703. "__type__": "cc.Color",
  3704. "r": 255,
  3705. "g": 255,
  3706. "b": 255,
  3707. "a": 255
  3708. },
  3709. "_disabledColor": {
  3710. "__type__": "cc.Color",
  3711. "r": 124,
  3712. "g": 124,
  3713. "b": 124,
  3714. "a": 255
  3715. },
  3716. "_normalSprite": {
  3717. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3718. "__expectedType__": "cc.SpriteFrame"
  3719. },
  3720. "_hoverSprite": {
  3721. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3722. "__expectedType__": "cc.SpriteFrame"
  3723. },
  3724. "_pressedSprite": {
  3725. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3726. "__expectedType__": "cc.SpriteFrame"
  3727. },
  3728. "_disabledSprite": {
  3729. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3730. "__expectedType__": "cc.SpriteFrame"
  3731. },
  3732. "_duration": 0.1,
  3733. "_zoomScale": 1.2,
  3734. "_target": {
  3735. "__id__": 141
  3736. },
  3737. "_id": ""
  3738. },
  3739. {
  3740. "__type__": "cc.CompPrefabInfo",
  3741. "fileId": "71qZ+oX0tCrLtCUny0ipVq"
  3742. },
  3743. {
  3744. "__type__": "cc.PrefabInfo",
  3745. "root": {
  3746. "__id__": 1
  3747. },
  3748. "asset": {
  3749. "__id__": 0
  3750. },
  3751. "fileId": "b1Wb0TTN9K5Y+7Mtp3bbFP",
  3752. "instance": null,
  3753. "targetOverrides": null,
  3754. "nestedPrefabInstanceRoots": null
  3755. },
  3756. {
  3757. "__type__": "cc.UITransform",
  3758. "_name": "",
  3759. "_objFlags": 0,
  3760. "__editorExtras__": {},
  3761. "node": {
  3762. "__id__": 78
  3763. },
  3764. "_enabled": true,
  3765. "__prefab": {
  3766. "__id__": 156
  3767. },
  3768. "_contentSize": {
  3769. "__type__": "cc.Size",
  3770. "width": 550,
  3771. "height": 50
  3772. },
  3773. "_anchorPoint": {
  3774. "__type__": "cc.Vec2",
  3775. "x": 0.5,
  3776. "y": 0.5
  3777. },
  3778. "_id": ""
  3779. },
  3780. {
  3781. "__type__": "cc.CompPrefabInfo",
  3782. "fileId": "b51lIMshlOaLpx2/SjigeB"
  3783. },
  3784. {
  3785. "__type__": "cc.PrefabInfo",
  3786. "root": {
  3787. "__id__": 1
  3788. },
  3789. "asset": {
  3790. "__id__": 0
  3791. },
  3792. "fileId": "99NqqlAChLJJZ6gxjB/LwK",
  3793. "instance": null,
  3794. "targetOverrides": null,
  3795. "nestedPrefabInstanceRoots": null
  3796. },
  3797. {
  3798. "__type__": "cc.Node",
  3799. "_name": "total_page",
  3800. "_objFlags": 0,
  3801. "__editorExtras__": {},
  3802. "_parent": {
  3803. "__id__": 1
  3804. },
  3805. "_children": [],
  3806. "_active": true,
  3807. "_components": [
  3808. {
  3809. "__id__": 159
  3810. },
  3811. {
  3812. "__id__": 161
  3813. }
  3814. ],
  3815. "_prefab": {
  3816. "__id__": 163
  3817. },
  3818. "_lpos": {
  3819. "__type__": "cc.Vec3",
  3820. "x": 0,
  3821. "y": -379.071,
  3822. "z": 0
  3823. },
  3824. "_lrot": {
  3825. "__type__": "cc.Quat",
  3826. "x": 0,
  3827. "y": 0,
  3828. "z": 0,
  3829. "w": 1
  3830. },
  3831. "_lscale": {
  3832. "__type__": "cc.Vec3",
  3833. "x": 1,
  3834. "y": 1,
  3835. "z": 1
  3836. },
  3837. "_mobility": 0,
  3838. "_layer": 33554432,
  3839. "_euler": {
  3840. "__type__": "cc.Vec3",
  3841. "x": 0,
  3842. "y": 0,
  3843. "z": 0
  3844. },
  3845. "_id": ""
  3846. },
  3847. {
  3848. "__type__": "cc.UITransform",
  3849. "_name": "",
  3850. "_objFlags": 0,
  3851. "__editorExtras__": {},
  3852. "node": {
  3853. "__id__": 158
  3854. },
  3855. "_enabled": true,
  3856. "__prefab": {
  3857. "__id__": 160
  3858. },
  3859. "_contentSize": {
  3860. "__type__": "cc.Size",
  3861. "width": 51.11328125,
  3862. "height": 50.4
  3863. },
  3864. "_anchorPoint": {
  3865. "__type__": "cc.Vec2",
  3866. "x": 0.5,
  3867. "y": 0.5
  3868. },
  3869. "_id": ""
  3870. },
  3871. {
  3872. "__type__": "cc.CompPrefabInfo",
  3873. "fileId": "2dOteotjJCvJTntZTcTNWk"
  3874. },
  3875. {
  3876. "__type__": "cc.Label",
  3877. "_name": "",
  3878. "_objFlags": 0,
  3879. "__editorExtras__": {},
  3880. "node": {
  3881. "__id__": 158
  3882. },
  3883. "_enabled": true,
  3884. "__prefab": {
  3885. "__id__": 162
  3886. },
  3887. "_customMaterial": null,
  3888. "_srcBlendFactor": 2,
  3889. "_dstBlendFactor": 4,
  3890. "_color": {
  3891. "__type__": "cc.Color",
  3892. "r": 0,
  3893. "g": 0,
  3894. "b": 0,
  3895. "a": 255
  3896. },
  3897. "_string": "共 页",
  3898. "_horizontalAlign": 1,
  3899. "_verticalAlign": 1,
  3900. "_actualFontSize": 20,
  3901. "_fontSize": 20,
  3902. "_fontFamily": "Arial",
  3903. "_lineHeight": 40,
  3904. "_overflow": 0,
  3905. "_enableWrapText": true,
  3906. "_font": null,
  3907. "_isSystemFontUsed": true,
  3908. "_spacingX": 0,
  3909. "_isItalic": false,
  3910. "_isBold": false,
  3911. "_isUnderline": false,
  3912. "_underlineHeight": 2,
  3913. "_cacheMode": 0,
  3914. "_id": ""
  3915. },
  3916. {
  3917. "__type__": "cc.CompPrefabInfo",
  3918. "fileId": "54HNti+MtF/635hIOV/hYk"
  3919. },
  3920. {
  3921. "__type__": "cc.PrefabInfo",
  3922. "root": {
  3923. "__id__": 1
  3924. },
  3925. "asset": {
  3926. "__id__": 0
  3927. },
  3928. "fileId": "d3XH/Mn+5FPqGo909rO5nE",
  3929. "instance": null,
  3930. "targetOverrides": null,
  3931. "nestedPrefabInstanceRoots": null
  3932. },
  3933. {
  3934. "__type__": "cc.UITransform",
  3935. "_name": "",
  3936. "_objFlags": 0,
  3937. "__editorExtras__": {},
  3938. "node": {
  3939. "__id__": 1
  3940. },
  3941. "_enabled": true,
  3942. "__prefab": {
  3943. "__id__": 165
  3944. },
  3945. "_contentSize": {
  3946. "__type__": "cc.Size",
  3947. "width": 1920,
  3948. "height": 1080
  3949. },
  3950. "_anchorPoint": {
  3951. "__type__": "cc.Vec2",
  3952. "x": 0.5,
  3953. "y": 0.5
  3954. },
  3955. "_id": ""
  3956. },
  3957. {
  3958. "__type__": "cc.CompPrefabInfo",
  3959. "fileId": "56l+NLlMJOeJ6FrnY9oF21"
  3960. },
  3961. {
  3962. "__type__": "cc.Widget",
  3963. "_name": "",
  3964. "_objFlags": 0,
  3965. "__editorExtras__": {},
  3966. "node": {
  3967. "__id__": 1
  3968. },
  3969. "_enabled": true,
  3970. "__prefab": {
  3971. "__id__": 167
  3972. },
  3973. "_alignFlags": 45,
  3974. "_target": null,
  3975. "_left": 0,
  3976. "_right": 0,
  3977. "_top": 0,
  3978. "_bottom": 0,
  3979. "_horizontalCenter": 0,
  3980. "_verticalCenter": 0,
  3981. "_isAbsLeft": true,
  3982. "_isAbsRight": true,
  3983. "_isAbsTop": true,
  3984. "_isAbsBottom": true,
  3985. "_isAbsHorizontalCenter": true,
  3986. "_isAbsVerticalCenter": true,
  3987. "_originalWidth": 100,
  3988. "_originalHeight": 100,
  3989. "_alignMode": 2,
  3990. "_lockFlags": 0,
  3991. "_id": ""
  3992. },
  3993. {
  3994. "__type__": "cc.CompPrefabInfo",
  3995. "fileId": "e6nkAlL51PWojRDoPJCaI8"
  3996. },
  3997. {
  3998. "__type__": "cc.Sprite",
  3999. "_name": "",
  4000. "_objFlags": 0,
  4001. "__editorExtras__": {},
  4002. "node": {
  4003. "__id__": 1
  4004. },
  4005. "_enabled": true,
  4006. "__prefab": {
  4007. "__id__": 169
  4008. },
  4009. "_customMaterial": null,
  4010. "_srcBlendFactor": 2,
  4011. "_dstBlendFactor": 4,
  4012. "_color": {
  4013. "__type__": "cc.Color",
  4014. "r": 255,
  4015. "g": 255,
  4016. "b": 255,
  4017. "a": 255
  4018. },
  4019. "_spriteFrame": {
  4020. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  4021. "__expectedType__": "cc.SpriteFrame"
  4022. },
  4023. "_type": 0,
  4024. "_fillType": 0,
  4025. "_sizeMode": 0,
  4026. "_fillCenter": {
  4027. "__type__": "cc.Vec2",
  4028. "x": 0,
  4029. "y": 0
  4030. },
  4031. "_fillStart": 0,
  4032. "_fillRange": 0,
  4033. "_isTrimmedMode": true,
  4034. "_useGrayscale": false,
  4035. "_atlas": null,
  4036. "_id": ""
  4037. },
  4038. {
  4039. "__type__": "cc.CompPrefabInfo",
  4040. "fileId": "e3txn578FFOIv+PAozNNZS"
  4041. },
  4042. {
  4043. "__type__": "e935e8XwndN97a+ycD+XuAh",
  4044. "_name": "",
  4045. "_objFlags": 0,
  4046. "__editorExtras__": {},
  4047. "node": {
  4048. "__id__": 1
  4049. },
  4050. "_enabled": true,
  4051. "__prefab": {
  4052. "__id__": 171
  4053. },
  4054. "game_page": null,
  4055. "btn_cancel": {
  4056. "__id__": 27
  4057. },
  4058. "btn_p": {
  4059. "__id__": 79
  4060. },
  4061. "btn_n": {
  4062. "__id__": 93
  4063. },
  4064. "btn_first": {
  4065. "__id__": 127
  4066. },
  4067. "btn_last": {
  4068. "__id__": 141
  4069. },
  4070. "btn_search": {
  4071. "__id__": 61
  4072. },
  4073. "content": {
  4074. "__id__": 4
  4075. },
  4076. "item_prefab": {
  4077. "__uuid__": "e0903480-6086-4f89-be39-3ee3bd78c017",
  4078. "__expectedType__": "cc.Prefab"
  4079. },
  4080. "lab_total_page": {
  4081. "__id__": 158
  4082. },
  4083. "page_editbox": {
  4084. "__id__": 124
  4085. },
  4086. "level_editbox": {
  4087. "__id__": 58
  4088. },
  4089. "_id": ""
  4090. },
  4091. {
  4092. "__type__": "cc.CompPrefabInfo",
  4093. "fileId": "c0jCcjGjBGNokGQItd4ax/"
  4094. },
  4095. {
  4096. "__type__": "cc.PrefabInfo",
  4097. "root": {
  4098. "__id__": 1
  4099. },
  4100. "asset": {
  4101. "__id__": 0
  4102. },
  4103. "fileId": "e2Js/PfCRCoK/ZvwUwCNQt",
  4104. "instance": null,
  4105. "targetOverrides": []
  4106. }
  4107. ]