setting.prefab 79 KB

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