ui_ranking.prefab 69 KB

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