setting.prefab 79 KB

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