setting.prefab 83 KB

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