e0830e04-5351-46ec-a738-db981ae5aed6.json 78 KB

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