setting.prefab 83 KB

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