UI_Rank.prefab 74 KB

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