d31cc54e-787f-4ee1-9766-2fbf0e1a3b39.json 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "YzUserPrivacyPannel",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "YzUserPrivacyPannel",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. },
  26. {
  27. "__id__": 53
  28. },
  29. {
  30. "__id__": 113
  31. }
  32. ],
  33. "_active": true,
  34. "_level": 1,
  35. "_components": [
  36. {
  37. "__id__": 147
  38. },
  39. {
  40. "__id__": 148
  41. },
  42. {
  43. "__id__": 149
  44. }
  45. ],
  46. "_prefab": {
  47. "__id__": 150
  48. },
  49. "_opacity": 255,
  50. "_color": {
  51. "__type__": "cc.Color",
  52. "r": 255,
  53. "g": 255,
  54. "b": 255,
  55. "a": 255
  56. },
  57. "_contentSize": {
  58. "__type__": "cc.Size",
  59. "width": 1080,
  60. "height": 1920
  61. },
  62. "_anchorPoint": {
  63. "__type__": "cc.Vec2",
  64. "x": 0.5,
  65. "y": 0.5
  66. },
  67. "_quat": {
  68. "__type__": "cc.Quat",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0,
  72. "w": 1
  73. },
  74. "_skewX": 0,
  75. "_skewY": 0,
  76. "groupIndex": 0,
  77. "_id": "",
  78. "_trs": {
  79. "__type__": "TypedArray",
  80. "ctor": "Float64Array",
  81. "array": [
  82. 540,
  83. 960,
  84. 0,
  85. 0,
  86. 0,
  87. 0,
  88. 1,
  89. 1,
  90. 1,
  91. 1
  92. ]
  93. }
  94. },
  95. {
  96. "__type__": "cc.Node",
  97. "_name": "Mask",
  98. "_objFlags": 0,
  99. "_parent": {
  100. "__id__": 1
  101. },
  102. "_children": [],
  103. "_active": true,
  104. "_level": 2,
  105. "_components": [
  106. {
  107. "__id__": 3
  108. },
  109. {
  110. "__id__": 4
  111. },
  112. {
  113. "__id__": 5
  114. }
  115. ],
  116. "_prefab": {
  117. "__id__": 6
  118. },
  119. "_opacity": 120,
  120. "_color": {
  121. "__type__": "cc.Color",
  122. "r": 0,
  123. "g": 0,
  124. "b": 0,
  125. "a": 255
  126. },
  127. "_contentSize": {
  128. "__type__": "cc.Size",
  129. "width": 1080,
  130. "height": 1920
  131. },
  132. "_anchorPoint": {
  133. "__type__": "cc.Vec2",
  134. "x": 0.5,
  135. "y": 0.5
  136. },
  137. "_quat": {
  138. "__type__": "cc.Quat",
  139. "x": 0,
  140. "y": 0,
  141. "z": 0,
  142. "w": 1
  143. },
  144. "_skewX": 0,
  145. "_skewY": 0,
  146. "groupIndex": 0,
  147. "_id": "",
  148. "_trs": {
  149. "__type__": "TypedArray",
  150. "ctor": "Float64Array",
  151. "array": [
  152. 0,
  153. 0,
  154. 0,
  155. 0,
  156. 0,
  157. 0,
  158. 1,
  159. 1,
  160. 1,
  161. 1
  162. ]
  163. }
  164. },
  165. {
  166. "__type__": "cc.Sprite",
  167. "_name": "",
  168. "_objFlags": 0,
  169. "node": {
  170. "__id__": 2
  171. },
  172. "_enabled": true,
  173. "_spriteFrame": {
  174. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  175. },
  176. "_type": 0,
  177. "_sizeMode": 0,
  178. "_fillType": 0,
  179. "_fillCenter": {
  180. "__type__": "cc.Vec2",
  181. "x": 0,
  182. "y": 0
  183. },
  184. "_fillStart": 0,
  185. "_fillRange": 0,
  186. "_isTrimmedMode": true,
  187. "_state": 0,
  188. "_atlas": null,
  189. "_srcBlendFactor": 770,
  190. "_dstBlendFactor": 771,
  191. "_id": ""
  192. },
  193. {
  194. "__type__": "cc.Widget",
  195. "_name": "",
  196. "_objFlags": 0,
  197. "node": {
  198. "__id__": 2
  199. },
  200. "_enabled": true,
  201. "alignMode": 1,
  202. "_target": null,
  203. "_alignFlags": 45,
  204. "_left": 0,
  205. "_right": 0,
  206. "_top": 0,
  207. "_bottom": 0,
  208. "_verticalCenter": 0,
  209. "_horizontalCenter": 0,
  210. "_isAbsLeft": true,
  211. "_isAbsRight": true,
  212. "_isAbsTop": true,
  213. "_isAbsBottom": true,
  214. "_isAbsHorizontalCenter": true,
  215. "_isAbsVerticalCenter": true,
  216. "_originalWidth": 100,
  217. "_originalHeight": 100,
  218. "_id": ""
  219. },
  220. {
  221. "__type__": "cc.BlockInputEvents",
  222. "_name": "",
  223. "_objFlags": 0,
  224. "node": {
  225. "__id__": 2
  226. },
  227. "_enabled": true,
  228. "_id": ""
  229. },
  230. {
  231. "__type__": "cc.PrefabInfo",
  232. "root": {
  233. "__id__": 1
  234. },
  235. "asset": {
  236. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  237. },
  238. "fileId": "11HiXsrMlBS7jklFgweZ9u",
  239. "sync": false
  240. },
  241. {
  242. "__type__": "cc.Node",
  243. "_name": "Panel",
  244. "_objFlags": 0,
  245. "_parent": {
  246. "__id__": 1
  247. },
  248. "_children": [
  249. {
  250. "__id__": 8
  251. },
  252. {
  253. "__id__": 12
  254. },
  255. {
  256. "__id__": 15
  257. },
  258. {
  259. "__id__": 27
  260. },
  261. {
  262. "__id__": 39
  263. },
  264. {
  265. "__id__": 43
  266. },
  267. {
  268. "__id__": 46
  269. }
  270. ],
  271. "_active": true,
  272. "_level": 0,
  273. "_components": [
  274. {
  275. "__id__": 51
  276. }
  277. ],
  278. "_prefab": {
  279. "__id__": 52
  280. },
  281. "_opacity": 255,
  282. "_color": {
  283. "__type__": "cc.Color",
  284. "r": 255,
  285. "g": 255,
  286. "b": 255,
  287. "a": 255
  288. },
  289. "_contentSize": {
  290. "__type__": "cc.Size",
  291. "width": 884,
  292. "height": 721
  293. },
  294. "_anchorPoint": {
  295. "__type__": "cc.Vec2",
  296. "x": 0.5,
  297. "y": 0.5
  298. },
  299. "_quat": {
  300. "__type__": "cc.Quat",
  301. "x": 0,
  302. "y": 0,
  303. "z": 0,
  304. "w": 1
  305. },
  306. "_skewX": 0,
  307. "_skewY": 0,
  308. "groupIndex": 0,
  309. "_id": "",
  310. "_trs": {
  311. "__type__": "TypedArray",
  312. "ctor": "Float64Array",
  313. "array": [
  314. 0,
  315. 71,
  316. 0,
  317. 0,
  318. 0,
  319. 0,
  320. 1,
  321. 1,
  322. 1,
  323. 1
  324. ]
  325. }
  326. },
  327. {
  328. "__type__": "cc.Node",
  329. "_name": "titleLbl",
  330. "_objFlags": 0,
  331. "_parent": {
  332. "__id__": 7
  333. },
  334. "_children": [],
  335. "_active": true,
  336. "_level": 1,
  337. "_components": [
  338. {
  339. "__id__": 9
  340. },
  341. {
  342. "__id__": 10
  343. }
  344. ],
  345. "_prefab": {
  346. "__id__": 11
  347. },
  348. "_opacity": 255,
  349. "_color": {
  350. "__type__": "cc.Color",
  351. "r": 0,
  352. "g": 0,
  353. "b": 0,
  354. "a": 255
  355. },
  356. "_contentSize": {
  357. "__type__": "cc.Size",
  358. "width": 480,
  359. "height": 65
  360. },
  361. "_anchorPoint": {
  362. "__type__": "cc.Vec2",
  363. "x": 0.5,
  364. "y": 0.5
  365. },
  366. "_quat": {
  367. "__type__": "cc.Quat",
  368. "x": 0,
  369. "y": 0,
  370. "z": 0,
  371. "w": 1
  372. },
  373. "_skewX": 0,
  374. "_skewY": 0,
  375. "groupIndex": 0,
  376. "_id": "",
  377. "_trs": {
  378. "__type__": "TypedArray",
  379. "ctor": "Float64Array",
  380. "array": [
  381. 0,
  382. 237.5,
  383. 0,
  384. 0,
  385. 0,
  386. 0,
  387. 1,
  388. 1,
  389. 1,
  390. 1
  391. ]
  392. }
  393. },
  394. {
  395. "__type__": "cc.Label",
  396. "_name": "",
  397. "_objFlags": 0,
  398. "node": {
  399. "__id__": 8
  400. },
  401. "_enabled": true,
  402. "_useOriginalSize": false,
  403. "_string": "我们保护您的隐私",
  404. "_N$string": "我们保护您的隐私",
  405. "_fontSize": 60,
  406. "_lineHeight": 65,
  407. "_enableWrapText": true,
  408. "_N$file": null,
  409. "_isSystemFontUsed": true,
  410. "_spacingX": 0,
  411. "_batchAsBitmap": false,
  412. "_N$horizontalAlign": 1,
  413. "_N$verticalAlign": 1,
  414. "_N$fontFamily": "Arial",
  415. "_N$overflow": 0,
  416. "_N$cacheMode": 0,
  417. "_id": ""
  418. },
  419. {
  420. "__type__": "cc.Widget",
  421. "_name": "",
  422. "_objFlags": 0,
  423. "node": {
  424. "__id__": 8
  425. },
  426. "_enabled": true,
  427. "alignMode": 1,
  428. "_target": null,
  429. "_alignFlags": 1,
  430. "_left": 0,
  431. "_right": 0,
  432. "_top": 90.5,
  433. "_bottom": 0,
  434. "_verticalCenter": 0,
  435. "_horizontalCenter": 0,
  436. "_isAbsLeft": true,
  437. "_isAbsRight": true,
  438. "_isAbsTop": true,
  439. "_isAbsBottom": true,
  440. "_isAbsHorizontalCenter": true,
  441. "_isAbsVerticalCenter": true,
  442. "_originalWidth": 0,
  443. "_originalHeight": 0,
  444. "_id": ""
  445. },
  446. {
  447. "__type__": "cc.PrefabInfo",
  448. "root": {
  449. "__id__": 1
  450. },
  451. "asset": {
  452. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  453. },
  454. "fileId": "28p0Ew0llNdIjB5zIHKGeg",
  455. "sync": false
  456. },
  457. {
  458. "__type__": "cc.Node",
  459. "_name": "content_1",
  460. "_objFlags": 0,
  461. "_parent": {
  462. "__id__": 7
  463. },
  464. "_children": [],
  465. "_active": true,
  466. "_level": 1,
  467. "_components": [
  468. {
  469. "__id__": 13
  470. }
  471. ],
  472. "_prefab": {
  473. "__id__": 14
  474. },
  475. "_opacity": 160,
  476. "_color": {
  477. "__type__": "cc.Color",
  478. "r": 0,
  479. "g": 0,
  480. "b": 0,
  481. "a": 255
  482. },
  483. "_contentSize": {
  484. "__type__": "cc.Size",
  485. "width": 800,
  486. "height": 160
  487. },
  488. "_anchorPoint": {
  489. "__type__": "cc.Vec2",
  490. "x": 0.5,
  491. "y": 0.5
  492. },
  493. "_quat": {
  494. "__type__": "cc.Quat",
  495. "x": 0,
  496. "y": 0,
  497. "z": 0,
  498. "w": 1
  499. },
  500. "_skewX": 0,
  501. "_skewY": 0,
  502. "groupIndex": 0,
  503. "_id": "",
  504. "_trs": {
  505. "__type__": "TypedArray",
  506. "ctor": "Float64Array",
  507. "array": [
  508. 0,
  509. 50,
  510. 0,
  511. 0,
  512. 0,
  513. 0,
  514. 1,
  515. 1,
  516. 1,
  517. 1
  518. ]
  519. }
  520. },
  521. {
  522. "__type__": "cc.Label",
  523. "_name": "",
  524. "_objFlags": 0,
  525. "node": {
  526. "__id__": 12
  527. },
  528. "_enabled": true,
  529. "_useOriginalSize": false,
  530. "_string": "欢迎您使用本游戏,我们将严格遵守相关的法律法规和隐私政策以保护您的个人信息。",
  531. "_N$string": "欢迎您使用本游戏,我们将严格遵守相关的法律法规和隐私政策以保护您的个人信息。",
  532. "_fontSize": 40,
  533. "_lineHeight": 80,
  534. "_enableWrapText": true,
  535. "_N$file": null,
  536. "_isSystemFontUsed": true,
  537. "_spacingX": 0,
  538. "_batchAsBitmap": false,
  539. "_N$horizontalAlign": 0,
  540. "_N$verticalAlign": 1,
  541. "_N$fontFamily": "Arial",
  542. "_N$overflow": 3,
  543. "_N$cacheMode": 0,
  544. "_id": ""
  545. },
  546. {
  547. "__type__": "cc.PrefabInfo",
  548. "root": {
  549. "__id__": 1
  550. },
  551. "asset": {
  552. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  553. },
  554. "fileId": "82DCaVDbVNSZTdzV39PtJv",
  555. "sync": false
  556. },
  557. {
  558. "__type__": "cc.Node",
  559. "_name": "CancelBtn",
  560. "_objFlags": 0,
  561. "_parent": {
  562. "__id__": 7
  563. },
  564. "_children": [
  565. {
  566. "__id__": 16
  567. }
  568. ],
  569. "_active": true,
  570. "_level": 1,
  571. "_components": [
  572. {
  573. "__id__": 23
  574. },
  575. {
  576. "__id__": 25
  577. }
  578. ],
  579. "_prefab": {
  580. "__id__": 26
  581. },
  582. "_opacity": 255,
  583. "_color": {
  584. "__type__": "cc.Color",
  585. "r": 255,
  586. "g": 255,
  587. "b": 255,
  588. "a": 255
  589. },
  590. "_contentSize": {
  591. "__type__": "cc.Size",
  592. "width": 350,
  593. "height": 121
  594. },
  595. "_anchorPoint": {
  596. "__type__": "cc.Vec2",
  597. "x": 0.5,
  598. "y": 0.5
  599. },
  600. "_quat": {
  601. "__type__": "cc.Quat",
  602. "x": 0,
  603. "y": 0,
  604. "z": 0,
  605. "w": 1
  606. },
  607. "_skewX": 0,
  608. "_skewY": 0,
  609. "groupIndex": 0,
  610. "_id": "",
  611. "_trs": {
  612. "__type__": "TypedArray",
  613. "ctor": "Float64Array",
  614. "array": [
  615. -223,
  616. -275,
  617. 0,
  618. 0,
  619. 0,
  620. 0,
  621. 1,
  622. 1,
  623. 1,
  624. 1
  625. ]
  626. }
  627. },
  628. {
  629. "__type__": "cc.Node",
  630. "_name": "Background",
  631. "_objFlags": 0,
  632. "_parent": {
  633. "__id__": 15
  634. },
  635. "_children": [
  636. {
  637. "__id__": 17
  638. }
  639. ],
  640. "_active": true,
  641. "_level": 0,
  642. "_components": [
  643. {
  644. "__id__": 20
  645. },
  646. {
  647. "__id__": 21
  648. }
  649. ],
  650. "_prefab": {
  651. "__id__": 22
  652. },
  653. "_opacity": 255,
  654. "_color": {
  655. "__type__": "cc.Color",
  656. "r": 255,
  657. "g": 255,
  658. "b": 255,
  659. "a": 255
  660. },
  661. "_contentSize": {
  662. "__type__": "cc.Size",
  663. "width": 350,
  664. "height": 121
  665. },
  666. "_anchorPoint": {
  667. "__type__": "cc.Vec2",
  668. "x": 0.5,
  669. "y": 0.5
  670. },
  671. "_quat": {
  672. "__type__": "cc.Quat",
  673. "x": 0,
  674. "y": 0,
  675. "z": 0,
  676. "w": 1
  677. },
  678. "_skewX": 0,
  679. "_skewY": 0,
  680. "groupIndex": 0,
  681. "_id": "",
  682. "_trs": {
  683. "__type__": "TypedArray",
  684. "ctor": "Float64Array",
  685. "array": [
  686. 0,
  687. 0,
  688. 0,
  689. 0,
  690. 0,
  691. 0,
  692. 1,
  693. 1,
  694. 1,
  695. 1
  696. ]
  697. }
  698. },
  699. {
  700. "__type__": "cc.Node",
  701. "_name": "Label",
  702. "_objFlags": 0,
  703. "_parent": {
  704. "__id__": 16
  705. },
  706. "_children": [],
  707. "_active": true,
  708. "_level": 0,
  709. "_components": [
  710. {
  711. "__id__": 18
  712. }
  713. ],
  714. "_prefab": {
  715. "__id__": 19
  716. },
  717. "_opacity": 255,
  718. "_color": {
  719. "__type__": "cc.Color",
  720. "r": 0,
  721. "g": 0,
  722. "b": 0,
  723. "a": 255
  724. },
  725. "_contentSize": {
  726. "__type__": "cc.Size",
  727. "width": 100,
  728. "height": 50
  729. },
  730. "_anchorPoint": {
  731. "__type__": "cc.Vec2",
  732. "x": 0.5,
  733. "y": 0.5
  734. },
  735. "_quat": {
  736. "__type__": "cc.Quat",
  737. "x": 0,
  738. "y": 0,
  739. "z": 0,
  740. "w": 1
  741. },
  742. "_skewX": 0,
  743. "_skewY": 0,
  744. "groupIndex": 0,
  745. "_id": "",
  746. "_trs": {
  747. "__type__": "TypedArray",
  748. "ctor": "Float64Array",
  749. "array": [
  750. 0,
  751. 0,
  752. 0,
  753. 0,
  754. 0,
  755. 0,
  756. 1,
  757. 1,
  758. 1,
  759. 1
  760. ]
  761. }
  762. },
  763. {
  764. "__type__": "cc.Label",
  765. "_name": "",
  766. "_objFlags": 0,
  767. "node": {
  768. "__id__": 17
  769. },
  770. "_enabled": true,
  771. "_useOriginalSize": false,
  772. "_string": "拒绝",
  773. "_N$string": "拒绝",
  774. "_fontSize": 40,
  775. "_lineHeight": 50,
  776. "_enableWrapText": false,
  777. "_N$file": null,
  778. "_isSystemFontUsed": true,
  779. "_spacingX": 0,
  780. "_batchAsBitmap": false,
  781. "_N$horizontalAlign": 1,
  782. "_N$verticalAlign": 1,
  783. "_N$fontFamily": "Arial",
  784. "_N$overflow": 1,
  785. "_N$cacheMode": 1,
  786. "_id": ""
  787. },
  788. {
  789. "__type__": "cc.PrefabInfo",
  790. "root": {
  791. "__id__": 1
  792. },
  793. "asset": {
  794. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  795. },
  796. "fileId": "2duQ/m8R1OsqzcAZ7COs6W",
  797. "sync": false
  798. },
  799. {
  800. "__type__": "cc.Sprite",
  801. "_name": "",
  802. "_objFlags": 0,
  803. "node": {
  804. "__id__": 16
  805. },
  806. "_enabled": true,
  807. "_spriteFrame": {
  808. "__uuid__": "0b7132a5-7e69-4797-916f-77ceb276fa4c"
  809. },
  810. "_type": 0,
  811. "_sizeMode": 0,
  812. "_fillType": 0,
  813. "_fillCenter": {
  814. "__type__": "cc.Vec2",
  815. "x": 0,
  816. "y": 0
  817. },
  818. "_fillStart": 0,
  819. "_fillRange": 0,
  820. "_isTrimmedMode": true,
  821. "_state": 0,
  822. "_atlas": null,
  823. "_srcBlendFactor": 770,
  824. "_dstBlendFactor": 771,
  825. "_id": ""
  826. },
  827. {
  828. "__type__": "cc.Widget",
  829. "_name": "",
  830. "_objFlags": 0,
  831. "node": {
  832. "__id__": 16
  833. },
  834. "_enabled": true,
  835. "alignMode": 0,
  836. "_target": null,
  837. "_alignFlags": 45,
  838. "_left": 0,
  839. "_right": 0,
  840. "_top": 0,
  841. "_bottom": 0,
  842. "_verticalCenter": 0,
  843. "_horizontalCenter": 0,
  844. "_isAbsLeft": true,
  845. "_isAbsRight": true,
  846. "_isAbsTop": true,
  847. "_isAbsBottom": true,
  848. "_isAbsHorizontalCenter": true,
  849. "_isAbsVerticalCenter": true,
  850. "_originalWidth": 100,
  851. "_originalHeight": 40,
  852. "_id": ""
  853. },
  854. {
  855. "__type__": "cc.PrefabInfo",
  856. "root": {
  857. "__id__": 1
  858. },
  859. "asset": {
  860. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  861. },
  862. "fileId": "d2EtykpZlI6bCQf6XwPdxG",
  863. "sync": false
  864. },
  865. {
  866. "__type__": "cc.Button",
  867. "_name": "",
  868. "_objFlags": 0,
  869. "node": {
  870. "__id__": 15
  871. },
  872. "_enabled": true,
  873. "duration": 0.1,
  874. "zoomScale": 1.2,
  875. "clickEvents": [
  876. {
  877. "__id__": 24
  878. }
  879. ],
  880. "_N$interactable": true,
  881. "_N$enableAutoGrayEffect": false,
  882. "_N$transition": 1,
  883. "transition": 1,
  884. "_N$normalColor": {
  885. "__type__": "cc.Color",
  886. "r": 255,
  887. "g": 255,
  888. "b": 255,
  889. "a": 255
  890. },
  891. "_N$pressedColor": {
  892. "__type__": "cc.Color",
  893. "r": 200,
  894. "g": 200,
  895. "b": 200,
  896. "a": 255
  897. },
  898. "pressedColor": {
  899. "__type__": "cc.Color",
  900. "r": 200,
  901. "g": 200,
  902. "b": 200,
  903. "a": 255
  904. },
  905. "_N$hoverColor": {
  906. "__type__": "cc.Color",
  907. "r": 255,
  908. "g": 255,
  909. "b": 255,
  910. "a": 255
  911. },
  912. "hoverColor": {
  913. "__type__": "cc.Color",
  914. "r": 255,
  915. "g": 255,
  916. "b": 255,
  917. "a": 255
  918. },
  919. "_N$disabledColor": {
  920. "__type__": "cc.Color",
  921. "r": 120,
  922. "g": 120,
  923. "b": 120,
  924. "a": 200
  925. },
  926. "_N$normalSprite": {
  927. "__uuid__": "aa15a88e-ff1d-43de-a91e-00bc3e6d46b2"
  928. },
  929. "_N$pressedSprite": {
  930. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  931. },
  932. "pressedSprite": {
  933. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  934. },
  935. "_N$hoverSprite": {
  936. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  937. },
  938. "hoverSprite": {
  939. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  940. },
  941. "_N$disabledSprite": {
  942. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  943. },
  944. "_N$target": {
  945. "__id__": 16
  946. },
  947. "_id": ""
  948. },
  949. {
  950. "__type__": "cc.ClickEvent",
  951. "target": {
  952. "__id__": 1
  953. },
  954. "component": "",
  955. "_componentId": "d0717GZecVL5p3tNcXpk9rY",
  956. "handler": "onCloseClickListener",
  957. "customEventData": ""
  958. },
  959. {
  960. "__type__": "cc.Widget",
  961. "_name": "",
  962. "_objFlags": 0,
  963. "node": {
  964. "__id__": 15
  965. },
  966. "_enabled": true,
  967. "alignMode": 1,
  968. "_target": null,
  969. "_alignFlags": 12,
  970. "_left": 44,
  971. "_right": 0,
  972. "_top": 0,
  973. "_bottom": 25,
  974. "_verticalCenter": 0,
  975. "_horizontalCenter": 0,
  976. "_isAbsLeft": true,
  977. "_isAbsRight": true,
  978. "_isAbsTop": true,
  979. "_isAbsBottom": true,
  980. "_isAbsHorizontalCenter": true,
  981. "_isAbsVerticalCenter": true,
  982. "_originalWidth": 0,
  983. "_originalHeight": 0,
  984. "_id": ""
  985. },
  986. {
  987. "__type__": "cc.PrefabInfo",
  988. "root": {
  989. "__id__": 1
  990. },
  991. "asset": {
  992. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  993. },
  994. "fileId": "635Ou9aVlEtqWMQkI5QWQm",
  995. "sync": false
  996. },
  997. {
  998. "__type__": "cc.Node",
  999. "_name": "OKBtn",
  1000. "_objFlags": 0,
  1001. "_parent": {
  1002. "__id__": 7
  1003. },
  1004. "_children": [
  1005. {
  1006. "__id__": 28
  1007. }
  1008. ],
  1009. "_active": true,
  1010. "_level": 1,
  1011. "_components": [
  1012. {
  1013. "__id__": 35
  1014. },
  1015. {
  1016. "__id__": 37
  1017. }
  1018. ],
  1019. "_prefab": {
  1020. "__id__": 38
  1021. },
  1022. "_opacity": 255,
  1023. "_color": {
  1024. "__type__": "cc.Color",
  1025. "r": 255,
  1026. "g": 255,
  1027. "b": 255,
  1028. "a": 255
  1029. },
  1030. "_contentSize": {
  1031. "__type__": "cc.Size",
  1032. "width": 350,
  1033. "height": 121
  1034. },
  1035. "_anchorPoint": {
  1036. "__type__": "cc.Vec2",
  1037. "x": 0.5,
  1038. "y": 0.5
  1039. },
  1040. "_quat": {
  1041. "__type__": "cc.Quat",
  1042. "x": 0,
  1043. "y": 0,
  1044. "z": 0,
  1045. "w": 1
  1046. },
  1047. "_skewX": 0,
  1048. "_skewY": 0,
  1049. "groupIndex": 0,
  1050. "_id": "",
  1051. "_trs": {
  1052. "__type__": "TypedArray",
  1053. "ctor": "Float64Array",
  1054. "array": [
  1055. 226,
  1056. -276,
  1057. 0,
  1058. 0,
  1059. 0,
  1060. 0,
  1061. 1,
  1062. 1,
  1063. 1,
  1064. 1
  1065. ]
  1066. }
  1067. },
  1068. {
  1069. "__type__": "cc.Node",
  1070. "_name": "Background",
  1071. "_objFlags": 0,
  1072. "_parent": {
  1073. "__id__": 27
  1074. },
  1075. "_children": [
  1076. {
  1077. "__id__": 29
  1078. }
  1079. ],
  1080. "_active": true,
  1081. "_level": 0,
  1082. "_components": [
  1083. {
  1084. "__id__": 32
  1085. },
  1086. {
  1087. "__id__": 33
  1088. }
  1089. ],
  1090. "_prefab": {
  1091. "__id__": 34
  1092. },
  1093. "_opacity": 255,
  1094. "_color": {
  1095. "__type__": "cc.Color",
  1096. "r": 65,
  1097. "g": 143,
  1098. "b": 244,
  1099. "a": 255
  1100. },
  1101. "_contentSize": {
  1102. "__type__": "cc.Size",
  1103. "width": 350,
  1104. "height": 121
  1105. },
  1106. "_anchorPoint": {
  1107. "__type__": "cc.Vec2",
  1108. "x": 0.5,
  1109. "y": 0.5
  1110. },
  1111. "_quat": {
  1112. "__type__": "cc.Quat",
  1113. "x": 0,
  1114. "y": 0,
  1115. "z": 0,
  1116. "w": 1
  1117. },
  1118. "_skewX": 0,
  1119. "_skewY": 0,
  1120. "groupIndex": 0,
  1121. "_id": "",
  1122. "_trs": {
  1123. "__type__": "TypedArray",
  1124. "ctor": "Float64Array",
  1125. "array": [
  1126. 0,
  1127. 0,
  1128. 0,
  1129. 0,
  1130. 0,
  1131. 0,
  1132. 1,
  1133. 1,
  1134. 1,
  1135. 1
  1136. ]
  1137. }
  1138. },
  1139. {
  1140. "__type__": "cc.Node",
  1141. "_name": "Label",
  1142. "_objFlags": 0,
  1143. "_parent": {
  1144. "__id__": 28
  1145. },
  1146. "_children": [],
  1147. "_active": true,
  1148. "_level": 0,
  1149. "_components": [
  1150. {
  1151. "__id__": 30
  1152. }
  1153. ],
  1154. "_prefab": {
  1155. "__id__": 31
  1156. },
  1157. "_opacity": 255,
  1158. "_color": {
  1159. "__type__": "cc.Color",
  1160. "r": 255,
  1161. "g": 255,
  1162. "b": 255,
  1163. "a": 255
  1164. },
  1165. "_contentSize": {
  1166. "__type__": "cc.Size",
  1167. "width": 300,
  1168. "height": 50
  1169. },
  1170. "_anchorPoint": {
  1171. "__type__": "cc.Vec2",
  1172. "x": 0.5,
  1173. "y": 0.5
  1174. },
  1175. "_quat": {
  1176. "__type__": "cc.Quat",
  1177. "x": 0,
  1178. "y": 0,
  1179. "z": 0,
  1180. "w": 1
  1181. },
  1182. "_skewX": 0,
  1183. "_skewY": 0,
  1184. "groupIndex": 0,
  1185. "_id": "",
  1186. "_trs": {
  1187. "__type__": "TypedArray",
  1188. "ctor": "Float64Array",
  1189. "array": [
  1190. 0,
  1191. 0,
  1192. 0,
  1193. 0,
  1194. 0,
  1195. 0,
  1196. 1,
  1197. 1,
  1198. 1,
  1199. 1
  1200. ]
  1201. }
  1202. },
  1203. {
  1204. "__type__": "cc.Label",
  1205. "_name": "",
  1206. "_objFlags": 0,
  1207. "node": {
  1208. "__id__": 29
  1209. },
  1210. "_enabled": true,
  1211. "_useOriginalSize": false,
  1212. "_string": "同意",
  1213. "_N$string": "同意",
  1214. "_fontSize": 40,
  1215. "_lineHeight": 50,
  1216. "_enableWrapText": false,
  1217. "_N$file": null,
  1218. "_isSystemFontUsed": true,
  1219. "_spacingX": 0,
  1220. "_batchAsBitmap": false,
  1221. "_N$horizontalAlign": 1,
  1222. "_N$verticalAlign": 1,
  1223. "_N$fontFamily": "Arial",
  1224. "_N$overflow": 1,
  1225. "_N$cacheMode": 1,
  1226. "_id": ""
  1227. },
  1228. {
  1229. "__type__": "cc.PrefabInfo",
  1230. "root": {
  1231. "__id__": 1
  1232. },
  1233. "asset": {
  1234. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  1235. },
  1236. "fileId": "c5ipOKI3ZOKIMsAfCeQdlg",
  1237. "sync": false
  1238. },
  1239. {
  1240. "__type__": "cc.Sprite",
  1241. "_name": "",
  1242. "_objFlags": 0,
  1243. "node": {
  1244. "__id__": 28
  1245. },
  1246. "_enabled": true,
  1247. "_spriteFrame": {
  1248. "__uuid__": "0b7132a5-7e69-4797-916f-77ceb276fa4c"
  1249. },
  1250. "_type": 0,
  1251. "_sizeMode": 0,
  1252. "_fillType": 0,
  1253. "_fillCenter": {
  1254. "__type__": "cc.Vec2",
  1255. "x": 0,
  1256. "y": 0
  1257. },
  1258. "_fillStart": 0,
  1259. "_fillRange": 0,
  1260. "_isTrimmedMode": true,
  1261. "_state": 0,
  1262. "_atlas": null,
  1263. "_srcBlendFactor": 770,
  1264. "_dstBlendFactor": 771,
  1265. "_id": ""
  1266. },
  1267. {
  1268. "__type__": "cc.Widget",
  1269. "_name": "",
  1270. "_objFlags": 0,
  1271. "node": {
  1272. "__id__": 28
  1273. },
  1274. "_enabled": true,
  1275. "alignMode": 0,
  1276. "_target": null,
  1277. "_alignFlags": 45,
  1278. "_left": 0,
  1279. "_right": 0,
  1280. "_top": 0,
  1281. "_bottom": 0,
  1282. "_verticalCenter": 0,
  1283. "_horizontalCenter": 0,
  1284. "_isAbsLeft": true,
  1285. "_isAbsRight": true,
  1286. "_isAbsTop": true,
  1287. "_isAbsBottom": true,
  1288. "_isAbsHorizontalCenter": true,
  1289. "_isAbsVerticalCenter": true,
  1290. "_originalWidth": 100,
  1291. "_originalHeight": 40,
  1292. "_id": ""
  1293. },
  1294. {
  1295. "__type__": "cc.PrefabInfo",
  1296. "root": {
  1297. "__id__": 1
  1298. },
  1299. "asset": {
  1300. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  1301. },
  1302. "fileId": "fe4KaPWopLnJkbuW1x4i2i",
  1303. "sync": false
  1304. },
  1305. {
  1306. "__type__": "cc.Button",
  1307. "_name": "",
  1308. "_objFlags": 0,
  1309. "node": {
  1310. "__id__": 27
  1311. },
  1312. "_enabled": true,
  1313. "duration": 0.1,
  1314. "zoomScale": 1.2,
  1315. "clickEvents": [
  1316. {
  1317. "__id__": 36
  1318. }
  1319. ],
  1320. "_N$interactable": true,
  1321. "_N$enableAutoGrayEffect": false,
  1322. "_N$transition": 1,
  1323. "transition": 1,
  1324. "_N$normalColor": {
  1325. "__type__": "cc.Color",
  1326. "r": 65,
  1327. "g": 143,
  1328. "b": 244,
  1329. "a": 255
  1330. },
  1331. "_N$pressedColor": {
  1332. "__type__": "cc.Color",
  1333. "r": 200,
  1334. "g": 200,
  1335. "b": 200,
  1336. "a": 255
  1337. },
  1338. "pressedColor": {
  1339. "__type__": "cc.Color",
  1340. "r": 200,
  1341. "g": 200,
  1342. "b": 200,
  1343. "a": 255
  1344. },
  1345. "_N$hoverColor": {
  1346. "__type__": "cc.Color",
  1347. "r": 200,
  1348. "g": 200,
  1349. "b": 200,
  1350. "a": 255
  1351. },
  1352. "hoverColor": {
  1353. "__type__": "cc.Color",
  1354. "r": 200,
  1355. "g": 200,
  1356. "b": 200,
  1357. "a": 255
  1358. },
  1359. "_N$disabledColor": {
  1360. "__type__": "cc.Color",
  1361. "r": 120,
  1362. "g": 120,
  1363. "b": 120,
  1364. "a": 200
  1365. },
  1366. "_N$normalSprite": {
  1367. "__uuid__": "0b7132a5-7e69-4797-916f-77ceb276fa4c"
  1368. },
  1369. "_N$pressedSprite": {
  1370. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1371. },
  1372. "pressedSprite": {
  1373. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1374. },
  1375. "_N$hoverSprite": {
  1376. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1377. },
  1378. "hoverSprite": {
  1379. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1380. },
  1381. "_N$disabledSprite": {
  1382. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1383. },
  1384. "_N$target": {
  1385. "__id__": 28
  1386. },
  1387. "_id": ""
  1388. },
  1389. {
  1390. "__type__": "cc.ClickEvent",
  1391. "target": {
  1392. "__id__": 1
  1393. },
  1394. "component": "",
  1395. "_componentId": "d0717GZecVL5p3tNcXpk9rY",
  1396. "handler": "onOKClickListener",
  1397. "customEventData": ""
  1398. },
  1399. {
  1400. "__type__": "cc.Widget",
  1401. "_name": "",
  1402. "_objFlags": 0,
  1403. "node": {
  1404. "__id__": 27
  1405. },
  1406. "_enabled": true,
  1407. "alignMode": 1,
  1408. "_target": null,
  1409. "_alignFlags": 36,
  1410. "_left": 0,
  1411. "_right": 41,
  1412. "_top": 0,
  1413. "_bottom": 24,
  1414. "_verticalCenter": 0,
  1415. "_horizontalCenter": 0,
  1416. "_isAbsLeft": true,
  1417. "_isAbsRight": true,
  1418. "_isAbsTop": true,
  1419. "_isAbsBottom": true,
  1420. "_isAbsHorizontalCenter": true,
  1421. "_isAbsVerticalCenter": true,
  1422. "_originalWidth": 0,
  1423. "_originalHeight": 0,
  1424. "_id": ""
  1425. },
  1426. {
  1427. "__type__": "cc.PrefabInfo",
  1428. "root": {
  1429. "__id__": 1
  1430. },
  1431. "asset": {
  1432. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  1433. },
  1434. "fileId": "addqw+j/pEn4eXt0H4zhEU",
  1435. "sync": false
  1436. },
  1437. {
  1438. "__type__": "cc.Node",
  1439. "_name": "subject",
  1440. "_objFlags": 0,
  1441. "_parent": {
  1442. "__id__": 7
  1443. },
  1444. "_children": [],
  1445. "_active": false,
  1446. "_level": 1,
  1447. "_components": [
  1448. {
  1449. "__id__": 40
  1450. },
  1451. {
  1452. "__id__": 41
  1453. }
  1454. ],
  1455. "_prefab": {
  1456. "__id__": 42
  1457. },
  1458. "_opacity": 255,
  1459. "_color": {
  1460. "__type__": "cc.Color",
  1461. "r": 0,
  1462. "g": 0,
  1463. "b": 0,
  1464. "a": 255
  1465. },
  1466. "_contentSize": {
  1467. "__type__": "cc.Size",
  1468. "width": 800,
  1469. "height": 55
  1470. },
  1471. "_anchorPoint": {
  1472. "__type__": "cc.Vec2",
  1473. "x": 0.5,
  1474. "y": 0.5
  1475. },
  1476. "_quat": {
  1477. "__type__": "cc.Quat",
  1478. "x": 0,
  1479. "y": 0,
  1480. "z": 0,
  1481. "w": 1
  1482. },
  1483. "_skewX": 0,
  1484. "_skewY": 0,
  1485. "groupIndex": 0,
  1486. "_id": "",
  1487. "_trs": {
  1488. "__type__": "TypedArray",
  1489. "ctor": "Float64Array",
  1490. "array": [
  1491. 0,
  1492. -40,
  1493. 0,
  1494. 0,
  1495. 0,
  1496. 0,
  1497. 1,
  1498. 1,
  1499. 1,
  1500. 1
  1501. ]
  1502. }
  1503. },
  1504. {
  1505. "__type__": "cc.Label",
  1506. "_name": "",
  1507. "_objFlags": 0,
  1508. "node": {
  1509. "__id__": 39
  1510. },
  1511. "_enabled": true,
  1512. "_useOriginalSize": false,
  1513. "_string": "subject",
  1514. "_N$string": "subject",
  1515. "_fontSize": 40,
  1516. "_lineHeight": 55,
  1517. "_enableWrapText": true,
  1518. "_N$file": null,
  1519. "_isSystemFontUsed": true,
  1520. "_spacingX": 0,
  1521. "_batchAsBitmap": false,
  1522. "_N$horizontalAlign": 1,
  1523. "_N$verticalAlign": 1,
  1524. "_N$fontFamily": "Arial",
  1525. "_N$overflow": 2,
  1526. "_N$cacheMode": 0,
  1527. "_id": ""
  1528. },
  1529. {
  1530. "__type__": "cc.Widget",
  1531. "_name": "",
  1532. "_objFlags": 0,
  1533. "node": {
  1534. "__id__": 39
  1535. },
  1536. "_enabled": true,
  1537. "alignMode": 1,
  1538. "_target": null,
  1539. "_alignFlags": 1,
  1540. "_left": 0,
  1541. "_right": 0,
  1542. "_top": 373,
  1543. "_bottom": 0,
  1544. "_verticalCenter": 0,
  1545. "_horizontalCenter": 0,
  1546. "_isAbsLeft": true,
  1547. "_isAbsRight": true,
  1548. "_isAbsTop": true,
  1549. "_isAbsBottom": true,
  1550. "_isAbsHorizontalCenter": true,
  1551. "_isAbsVerticalCenter": true,
  1552. "_originalWidth": 0,
  1553. "_originalHeight": 0,
  1554. "_id": ""
  1555. },
  1556. {
  1557. "__type__": "cc.PrefabInfo",
  1558. "root": {
  1559. "__id__": 1
  1560. },
  1561. "asset": {
  1562. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  1563. },
  1564. "fileId": "4bJSY/srJA1Z7I2lsmUdXl",
  1565. "sync": false
  1566. },
  1567. {
  1568. "__type__": "cc.Node",
  1569. "_name": "New Label",
  1570. "_objFlags": 0,
  1571. "_parent": {
  1572. "__id__": 7
  1573. },
  1574. "_children": [],
  1575. "_active": true,
  1576. "_level": 1,
  1577. "_components": [
  1578. {
  1579. "__id__": 44
  1580. }
  1581. ],
  1582. "_prefab": {
  1583. "__id__": 45
  1584. },
  1585. "_opacity": 80,
  1586. "_color": {
  1587. "__type__": "cc.Color",
  1588. "r": 0,
  1589. "g": 0,
  1590. "b": 0,
  1591. "a": 255
  1592. },
  1593. "_contentSize": {
  1594. "__type__": "cc.Size",
  1595. "width": 280,
  1596. "height": 45
  1597. },
  1598. "_anchorPoint": {
  1599. "__type__": "cc.Vec2",
  1600. "x": 0.5,
  1601. "y": 0.5
  1602. },
  1603. "_quat": {
  1604. "__type__": "cc.Quat",
  1605. "x": 0,
  1606. "y": 0,
  1607. "z": 0,
  1608. "w": 1
  1609. },
  1610. "_skewX": 0,
  1611. "_skewY": 0,
  1612. "groupIndex": 0,
  1613. "_id": "",
  1614. "_trs": {
  1615. "__type__": "TypedArray",
  1616. "ctor": "Float64Array",
  1617. "array": [
  1618. -113,
  1619. -109,
  1620. 0,
  1621. 0,
  1622. 0,
  1623. 0,
  1624. 1,
  1625. 1,
  1626. 1,
  1627. 1
  1628. ]
  1629. }
  1630. },
  1631. {
  1632. "__type__": "cc.Label",
  1633. "_name": "",
  1634. "_objFlags": 0,
  1635. "node": {
  1636. "__id__": 43
  1637. },
  1638. "_enabled": true,
  1639. "_useOriginalSize": false,
  1640. "_string": "请您阅读并同意",
  1641. "_N$string": "请您阅读并同意",
  1642. "_fontSize": 40,
  1643. "_lineHeight": 45,
  1644. "_enableWrapText": true,
  1645. "_N$file": null,
  1646. "_isSystemFontUsed": true,
  1647. "_spacingX": 0,
  1648. "_batchAsBitmap": false,
  1649. "_N$horizontalAlign": 1,
  1650. "_N$verticalAlign": 1,
  1651. "_N$fontFamily": "Arial",
  1652. "_N$overflow": 0,
  1653. "_N$cacheMode": 0,
  1654. "_id": ""
  1655. },
  1656. {
  1657. "__type__": "cc.PrefabInfo",
  1658. "root": {
  1659. "__id__": 1
  1660. },
  1661. "asset": {
  1662. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  1663. },
  1664. "fileId": "99JveUuMFC9IYCqJVGz5AC",
  1665. "sync": false
  1666. },
  1667. {
  1668. "__type__": "cc.Node",
  1669. "_name": "New Label",
  1670. "_objFlags": 0,
  1671. "_parent": {
  1672. "__id__": 7
  1673. },
  1674. "_children": [],
  1675. "_active": true,
  1676. "_level": 1,
  1677. "_components": [
  1678. {
  1679. "__id__": 47
  1680. },
  1681. {
  1682. "__id__": 48
  1683. }
  1684. ],
  1685. "_prefab": {
  1686. "__id__": 50
  1687. },
  1688. "_opacity": 120,
  1689. "_color": {
  1690. "__type__": "cc.Color",
  1691. "r": 65,
  1692. "g": 143,
  1693. "b": 244,
  1694. "a": 255
  1695. },
  1696. "_contentSize": {
  1697. "__type__": "cc.Size",
  1698. "width": 240,
  1699. "height": 45
  1700. },
  1701. "_anchorPoint": {
  1702. "__type__": "cc.Vec2",
  1703. "x": 0.5,
  1704. "y": 0.5
  1705. },
  1706. "_quat": {
  1707. "__type__": "cc.Quat",
  1708. "x": 0,
  1709. "y": 0,
  1710. "z": 0,
  1711. "w": 1
  1712. },
  1713. "_skewX": 0,
  1714. "_skewY": 0,
  1715. "groupIndex": 0,
  1716. "_id": "",
  1717. "_trs": {
  1718. "__type__": "TypedArray",
  1719. "ctor": "Float64Array",
  1720. "array": [
  1721. 154,
  1722. -109,
  1723. 0,
  1724. 0,
  1725. 0,
  1726. 0,
  1727. 1,
  1728. 1,
  1729. 1,
  1730. 1
  1731. ]
  1732. }
  1733. },
  1734. {
  1735. "__type__": "cc.Label",
  1736. "_name": "",
  1737. "_objFlags": 0,
  1738. "node": {
  1739. "__id__": 46
  1740. },
  1741. "_enabled": true,
  1742. "_useOriginalSize": false,
  1743. "_string": "《隐私协议》",
  1744. "_N$string": "《隐私协议》",
  1745. "_fontSize": 40,
  1746. "_lineHeight": 45,
  1747. "_enableWrapText": true,
  1748. "_N$file": null,
  1749. "_isSystemFontUsed": true,
  1750. "_spacingX": 0,
  1751. "_batchAsBitmap": false,
  1752. "_N$horizontalAlign": 1,
  1753. "_N$verticalAlign": 1,
  1754. "_N$fontFamily": "Arial",
  1755. "_N$overflow": 0,
  1756. "_N$cacheMode": 0,
  1757. "_id": ""
  1758. },
  1759. {
  1760. "__type__": "cc.Button",
  1761. "_name": "",
  1762. "_objFlags": 0,
  1763. "node": {
  1764. "__id__": 46
  1765. },
  1766. "_enabled": true,
  1767. "duration": 0.1,
  1768. "zoomScale": 1.2,
  1769. "clickEvents": [
  1770. {
  1771. "__id__": 49
  1772. }
  1773. ],
  1774. "_N$interactable": true,
  1775. "_N$enableAutoGrayEffect": false,
  1776. "_N$transition": 0,
  1777. "transition": 0,
  1778. "_N$normalColor": {
  1779. "__type__": "cc.Color",
  1780. "r": 65,
  1781. "g": 143,
  1782. "b": 244,
  1783. "a": 255
  1784. },
  1785. "_N$pressedColor": {
  1786. "__type__": "cc.Color",
  1787. "r": 200,
  1788. "g": 200,
  1789. "b": 200,
  1790. "a": 255
  1791. },
  1792. "pressedColor": {
  1793. "__type__": "cc.Color",
  1794. "r": 200,
  1795. "g": 200,
  1796. "b": 200,
  1797. "a": 255
  1798. },
  1799. "_N$hoverColor": {
  1800. "__type__": "cc.Color",
  1801. "r": 200,
  1802. "g": 200,
  1803. "b": 200,
  1804. "a": 255
  1805. },
  1806. "hoverColor": {
  1807. "__type__": "cc.Color",
  1808. "r": 200,
  1809. "g": 200,
  1810. "b": 200,
  1811. "a": 255
  1812. },
  1813. "_N$disabledColor": {
  1814. "__type__": "cc.Color",
  1815. "r": 120,
  1816. "g": 120,
  1817. "b": 120,
  1818. "a": 200
  1819. },
  1820. "_N$normalSprite": {
  1821. "__uuid__": "0b7132a5-7e69-4797-916f-77ceb276fa4c"
  1822. },
  1823. "_N$pressedSprite": {
  1824. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1825. },
  1826. "pressedSprite": {
  1827. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1828. },
  1829. "_N$hoverSprite": {
  1830. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1831. },
  1832. "hoverSprite": {
  1833. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1834. },
  1835. "_N$disabledSprite": {
  1836. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1837. },
  1838. "_N$target": null,
  1839. "_id": ""
  1840. },
  1841. {
  1842. "__type__": "cc.ClickEvent",
  1843. "target": {
  1844. "__id__": 1
  1845. },
  1846. "component": "",
  1847. "_componentId": "d0717GZecVL5p3tNcXpk9rY",
  1848. "handler": "onJumpDescBtnClickListner",
  1849. "customEventData": ""
  1850. },
  1851. {
  1852. "__type__": "cc.PrefabInfo",
  1853. "root": {
  1854. "__id__": 1
  1855. },
  1856. "asset": {
  1857. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  1858. },
  1859. "fileId": "17Tb16Ff5OQ605kba7gVbO",
  1860. "sync": false
  1861. },
  1862. {
  1863. "__type__": "cc.Sprite",
  1864. "_name": "",
  1865. "_objFlags": 0,
  1866. "node": {
  1867. "__id__": 7
  1868. },
  1869. "_enabled": true,
  1870. "_spriteFrame": {
  1871. "__uuid__": "e84ecc2f-b130-4763-8bea-d1c80fd607fb"
  1872. },
  1873. "_type": 1,
  1874. "_sizeMode": 0,
  1875. "_fillType": 0,
  1876. "_fillCenter": {
  1877. "__type__": "cc.Vec2",
  1878. "x": 0,
  1879. "y": 0
  1880. },
  1881. "_fillStart": 0,
  1882. "_fillRange": 0,
  1883. "_isTrimmedMode": true,
  1884. "_state": 0,
  1885. "_atlas": {
  1886. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  1887. },
  1888. "_srcBlendFactor": 770,
  1889. "_dstBlendFactor": 771,
  1890. "_id": ""
  1891. },
  1892. {
  1893. "__type__": "cc.PrefabInfo",
  1894. "root": {
  1895. "__id__": 1
  1896. },
  1897. "asset": {
  1898. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  1899. },
  1900. "fileId": "45kpbD29xNlb33REJAQXSW",
  1901. "sync": false
  1902. },
  1903. {
  1904. "__type__": "cc.Node",
  1905. "_name": "PrivacyDesc",
  1906. "_objFlags": 0,
  1907. "_parent": {
  1908. "__id__": 1
  1909. },
  1910. "_children": [
  1911. {
  1912. "__id__": 54
  1913. }
  1914. ],
  1915. "_active": false,
  1916. "_level": 2,
  1917. "_components": [
  1918. {
  1919. "__id__": 109
  1920. },
  1921. {
  1922. "__id__": 110
  1923. },
  1924. {
  1925. "__id__": 111
  1926. }
  1927. ],
  1928. "_prefab": {
  1929. "__id__": 112
  1930. },
  1931. "_opacity": 255,
  1932. "_color": {
  1933. "__type__": "cc.Color",
  1934. "r": 255,
  1935. "g": 255,
  1936. "b": 255,
  1937. "a": 255
  1938. },
  1939. "_contentSize": {
  1940. "__type__": "cc.Size",
  1941. "width": 1080,
  1942. "height": 1920
  1943. },
  1944. "_anchorPoint": {
  1945. "__type__": "cc.Vec2",
  1946. "x": 0.5,
  1947. "y": 0.5
  1948. },
  1949. "_quat": {
  1950. "__type__": "cc.Quat",
  1951. "x": 0,
  1952. "y": 0,
  1953. "z": 0,
  1954. "w": 1
  1955. },
  1956. "_skewX": 0,
  1957. "_skewY": 0,
  1958. "groupIndex": 0,
  1959. "_id": "",
  1960. "_trs": {
  1961. "__type__": "TypedArray",
  1962. "ctor": "Float64Array",
  1963. "array": [
  1964. 0,
  1965. 0,
  1966. 0,
  1967. 0,
  1968. 0,
  1969. 0,
  1970. 1,
  1971. 1,
  1972. 1,
  1973. 1
  1974. ]
  1975. }
  1976. },
  1977. {
  1978. "__type__": "cc.Node",
  1979. "_name": "view",
  1980. "_objFlags": 0,
  1981. "_parent": {
  1982. "__id__": 53
  1983. },
  1984. "_children": [
  1985. {
  1986. "__id__": 55
  1987. },
  1988. {
  1989. "__id__": 97
  1990. },
  1991. {
  1992. "__id__": 103
  1993. }
  1994. ],
  1995. "_active": true,
  1996. "_level": 0,
  1997. "_components": [
  1998. {
  1999. "__id__": 106
  2000. },
  2001. {
  2002. "__id__": 107
  2003. }
  2004. ],
  2005. "_prefab": {
  2006. "__id__": 108
  2007. },
  2008. "_opacity": 255,
  2009. "_color": {
  2010. "__type__": "cc.Color",
  2011. "r": 255,
  2012. "g": 255,
  2013. "b": 255,
  2014. "a": 255
  2015. },
  2016. "_contentSize": {
  2017. "__type__": "cc.Size",
  2018. "width": 1080,
  2019. "height": 1920
  2020. },
  2021. "_anchorPoint": {
  2022. "__type__": "cc.Vec2",
  2023. "x": 0.5,
  2024. "y": 0.5
  2025. },
  2026. "_quat": {
  2027. "__type__": "cc.Quat",
  2028. "x": 0,
  2029. "y": 0,
  2030. "z": 0,
  2031. "w": 1
  2032. },
  2033. "_skewX": 0,
  2034. "_skewY": 0,
  2035. "groupIndex": 0,
  2036. "_id": "",
  2037. "_trs": {
  2038. "__type__": "TypedArray",
  2039. "ctor": "Float64Array",
  2040. "array": [
  2041. 0,
  2042. 0,
  2043. 0,
  2044. 0,
  2045. 0,
  2046. 0,
  2047. 1,
  2048. 1,
  2049. 1,
  2050. 1
  2051. ]
  2052. }
  2053. },
  2054. {
  2055. "__type__": "cc.Node",
  2056. "_name": "content",
  2057. "_objFlags": 0,
  2058. "_parent": {
  2059. "__id__": 54
  2060. },
  2061. "_children": [
  2062. {
  2063. "__id__": 56
  2064. },
  2065. {
  2066. "__id__": 67
  2067. }
  2068. ],
  2069. "_active": true,
  2070. "_level": 0,
  2071. "_components": [
  2072. {
  2073. "__id__": 94
  2074. },
  2075. {
  2076. "__id__": 95
  2077. }
  2078. ],
  2079. "_prefab": {
  2080. "__id__": 96
  2081. },
  2082. "_opacity": 255,
  2083. "_color": {
  2084. "__type__": "cc.Color",
  2085. "r": 255,
  2086. "g": 255,
  2087. "b": 255,
  2088. "a": 255
  2089. },
  2090. "_contentSize": {
  2091. "__type__": "cc.Size",
  2092. "width": 1080,
  2093. "height": 500
  2094. },
  2095. "_anchorPoint": {
  2096. "__type__": "cc.Vec2",
  2097. "x": 0.5,
  2098. "y": 1
  2099. },
  2100. "_quat": {
  2101. "__type__": "cc.Quat",
  2102. "x": 0,
  2103. "y": 0,
  2104. "z": 0,
  2105. "w": 1
  2106. },
  2107. "_skewX": 0,
  2108. "_skewY": 0,
  2109. "groupIndex": 0,
  2110. "_id": "",
  2111. "_trs": {
  2112. "__type__": "TypedArray",
  2113. "ctor": "Float64Array",
  2114. "array": [
  2115. 0,
  2116. 960,
  2117. 0,
  2118. 0,
  2119. 0,
  2120. 0,
  2121. 1,
  2122. 1,
  2123. 1,
  2124. 1
  2125. ]
  2126. }
  2127. },
  2128. {
  2129. "__type__": "cc.Node",
  2130. "_name": "ContactInfo",
  2131. "_objFlags": 0,
  2132. "_parent": {
  2133. "__id__": 55
  2134. },
  2135. "_children": [
  2136. {
  2137. "__id__": 57
  2138. },
  2139. {
  2140. "__id__": 61
  2141. }
  2142. ],
  2143. "_active": false,
  2144. "_level": 1,
  2145. "_components": [
  2146. {
  2147. "__id__": 65
  2148. }
  2149. ],
  2150. "_prefab": {
  2151. "__id__": 66
  2152. },
  2153. "_opacity": 255,
  2154. "_color": {
  2155. "__type__": "cc.Color",
  2156. "r": 255,
  2157. "g": 255,
  2158. "b": 255,
  2159. "a": 255
  2160. },
  2161. "_contentSize": {
  2162. "__type__": "cc.Size",
  2163. "width": 1080,
  2164. "height": 200
  2165. },
  2166. "_anchorPoint": {
  2167. "__type__": "cc.Vec2",
  2168. "x": 0.5,
  2169. "y": 0.5
  2170. },
  2171. "_quat": {
  2172. "__type__": "cc.Quat",
  2173. "x": 0,
  2174. "y": 0,
  2175. "z": 0,
  2176. "w": 1
  2177. },
  2178. "_skewX": 0,
  2179. "_skewY": 0,
  2180. "groupIndex": 0,
  2181. "_id": "",
  2182. "_trs": {
  2183. "__type__": "TypedArray",
  2184. "ctor": "Float64Array",
  2185. "array": [
  2186. 0,
  2187. -170,
  2188. 0,
  2189. 0,
  2190. 0,
  2191. 0,
  2192. 1,
  2193. 1,
  2194. 1,
  2195. 1
  2196. ]
  2197. }
  2198. },
  2199. {
  2200. "__type__": "cc.Node",
  2201. "_name": "subject",
  2202. "_objFlags": 0,
  2203. "_parent": {
  2204. "__id__": 56
  2205. },
  2206. "_children": [],
  2207. "_active": true,
  2208. "_level": 2,
  2209. "_components": [
  2210. {
  2211. "__id__": 58
  2212. },
  2213. {
  2214. "__id__": 59
  2215. }
  2216. ],
  2217. "_prefab": {
  2218. "__id__": 60
  2219. },
  2220. "_opacity": 255,
  2221. "_color": {
  2222. "__type__": "cc.Color",
  2223. "r": 0,
  2224. "g": 0,
  2225. "b": 0,
  2226. "a": 255
  2227. },
  2228. "_contentSize": {
  2229. "__type__": "cc.Size",
  2230. "width": 0,
  2231. "height": 45
  2232. },
  2233. "_anchorPoint": {
  2234. "__type__": "cc.Vec2",
  2235. "x": 0,
  2236. "y": 0.5
  2237. },
  2238. "_quat": {
  2239. "__type__": "cc.Quat",
  2240. "x": 0,
  2241. "y": 0,
  2242. "z": 0,
  2243. "w": 1
  2244. },
  2245. "_skewX": 0,
  2246. "_skewY": 0,
  2247. "groupIndex": 0,
  2248. "_id": "",
  2249. "_trs": {
  2250. "__type__": "TypedArray",
  2251. "ctor": "Float64Array",
  2252. "array": [
  2253. -514,
  2254. 28,
  2255. 0,
  2256. 0,
  2257. 0,
  2258. 0,
  2259. 1,
  2260. 1,
  2261. 1,
  2262. 1
  2263. ]
  2264. }
  2265. },
  2266. {
  2267. "__type__": "cc.Label",
  2268. "_name": "",
  2269. "_objFlags": 0,
  2270. "node": {
  2271. "__id__": 57
  2272. },
  2273. "_enabled": true,
  2274. "_useOriginalSize": false,
  2275. "_string": "",
  2276. "_N$string": "",
  2277. "_fontSize": 40,
  2278. "_lineHeight": 45,
  2279. "_enableWrapText": true,
  2280. "_N$file": null,
  2281. "_isSystemFontUsed": true,
  2282. "_spacingX": 0,
  2283. "_batchAsBitmap": false,
  2284. "_N$horizontalAlign": 2,
  2285. "_N$verticalAlign": 1,
  2286. "_N$fontFamily": "Arial",
  2287. "_N$overflow": 0,
  2288. "_N$cacheMode": 0,
  2289. "_id": ""
  2290. },
  2291. {
  2292. "__type__": "cc.Widget",
  2293. "_name": "",
  2294. "_objFlags": 0,
  2295. "node": {
  2296. "__id__": 57
  2297. },
  2298. "_enabled": true,
  2299. "alignMode": 1,
  2300. "_target": null,
  2301. "_alignFlags": 8,
  2302. "_left": 26,
  2303. "_right": 0,
  2304. "_top": 0,
  2305. "_bottom": 0,
  2306. "_verticalCenter": 0,
  2307. "_horizontalCenter": 0,
  2308. "_isAbsLeft": true,
  2309. "_isAbsRight": true,
  2310. "_isAbsTop": true,
  2311. "_isAbsBottom": true,
  2312. "_isAbsHorizontalCenter": true,
  2313. "_isAbsVerticalCenter": true,
  2314. "_originalWidth": 0,
  2315. "_originalHeight": 0,
  2316. "_id": ""
  2317. },
  2318. {
  2319. "__type__": "cc.PrefabInfo",
  2320. "root": {
  2321. "__id__": 1
  2322. },
  2323. "asset": {
  2324. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  2325. },
  2326. "fileId": "4dCfGLF4pH1pwcDEQmONiv",
  2327. "sync": false
  2328. },
  2329. {
  2330. "__type__": "cc.Node",
  2331. "_name": "contact",
  2332. "_objFlags": 0,
  2333. "_parent": {
  2334. "__id__": 56
  2335. },
  2336. "_children": [],
  2337. "_active": true,
  2338. "_level": 2,
  2339. "_components": [
  2340. {
  2341. "__id__": 62
  2342. },
  2343. {
  2344. "__id__": 63
  2345. }
  2346. ],
  2347. "_prefab": {
  2348. "__id__": 64
  2349. },
  2350. "_opacity": 255,
  2351. "_color": {
  2352. "__type__": "cc.Color",
  2353. "r": 0,
  2354. "g": 0,
  2355. "b": 0,
  2356. "a": 255
  2357. },
  2358. "_contentSize": {
  2359. "__type__": "cc.Size",
  2360. "width": 0,
  2361. "height": 45
  2362. },
  2363. "_anchorPoint": {
  2364. "__type__": "cc.Vec2",
  2365. "x": 0,
  2366. "y": 0.5
  2367. },
  2368. "_quat": {
  2369. "__type__": "cc.Quat",
  2370. "x": 0,
  2371. "y": 0,
  2372. "z": 0,
  2373. "w": 1
  2374. },
  2375. "_skewX": 0,
  2376. "_skewY": 0,
  2377. "groupIndex": 0,
  2378. "_id": "",
  2379. "_trs": {
  2380. "__type__": "TypedArray",
  2381. "ctor": "Float64Array",
  2382. "array": [
  2383. -514,
  2384. -45,
  2385. 0,
  2386. 0,
  2387. 0,
  2388. 0,
  2389. 1,
  2390. 1,
  2391. 1,
  2392. 1
  2393. ]
  2394. }
  2395. },
  2396. {
  2397. "__type__": "cc.Label",
  2398. "_name": "",
  2399. "_objFlags": 0,
  2400. "node": {
  2401. "__id__": 61
  2402. },
  2403. "_enabled": true,
  2404. "_useOriginalSize": false,
  2405. "_string": "",
  2406. "_N$string": "",
  2407. "_fontSize": 40,
  2408. "_lineHeight": 45,
  2409. "_enableWrapText": true,
  2410. "_N$file": null,
  2411. "_isSystemFontUsed": true,
  2412. "_spacingX": 0,
  2413. "_batchAsBitmap": false,
  2414. "_N$horizontalAlign": 2,
  2415. "_N$verticalAlign": 1,
  2416. "_N$fontFamily": "Arial",
  2417. "_N$overflow": 0,
  2418. "_N$cacheMode": 0,
  2419. "_id": ""
  2420. },
  2421. {
  2422. "__type__": "cc.Widget",
  2423. "_name": "",
  2424. "_objFlags": 0,
  2425. "node": {
  2426. "__id__": 61
  2427. },
  2428. "_enabled": true,
  2429. "alignMode": 1,
  2430. "_target": null,
  2431. "_alignFlags": 8,
  2432. "_left": 26,
  2433. "_right": 0,
  2434. "_top": 0,
  2435. "_bottom": 0,
  2436. "_verticalCenter": 0,
  2437. "_horizontalCenter": 0,
  2438. "_isAbsLeft": true,
  2439. "_isAbsRight": true,
  2440. "_isAbsTop": true,
  2441. "_isAbsBottom": true,
  2442. "_isAbsHorizontalCenter": true,
  2443. "_isAbsVerticalCenter": true,
  2444. "_originalWidth": 0,
  2445. "_originalHeight": 0,
  2446. "_id": ""
  2447. },
  2448. {
  2449. "__type__": "cc.PrefabInfo",
  2450. "root": {
  2451. "__id__": 1
  2452. },
  2453. "asset": {
  2454. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  2455. },
  2456. "fileId": "a4Ssqy4FBP6Z6ZN4ybmrTD",
  2457. "sync": false
  2458. },
  2459. {
  2460. "__type__": "cc.Widget",
  2461. "_name": "",
  2462. "_objFlags": 0,
  2463. "node": {
  2464. "__id__": 56
  2465. },
  2466. "_enabled": true,
  2467. "alignMode": 1,
  2468. "_target": null,
  2469. "_alignFlags": 40,
  2470. "_left": 0,
  2471. "_right": 0,
  2472. "_top": 0,
  2473. "_bottom": 0,
  2474. "_verticalCenter": 0,
  2475. "_horizontalCenter": 0,
  2476. "_isAbsLeft": true,
  2477. "_isAbsRight": true,
  2478. "_isAbsTop": true,
  2479. "_isAbsBottom": true,
  2480. "_isAbsHorizontalCenter": true,
  2481. "_isAbsVerticalCenter": true,
  2482. "_originalWidth": 0,
  2483. "_originalHeight": 0,
  2484. "_id": ""
  2485. },
  2486. {
  2487. "__type__": "cc.PrefabInfo",
  2488. "root": {
  2489. "__id__": 1
  2490. },
  2491. "asset": {
  2492. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  2493. },
  2494. "fileId": "daQPGdcwVNabF/h1la16+s",
  2495. "sync": false
  2496. },
  2497. {
  2498. "__type__": "cc.Node",
  2499. "_name": "choiseNode",
  2500. "_objFlags": 0,
  2501. "_parent": {
  2502. "__id__": 55
  2503. },
  2504. "_children": [
  2505. {
  2506. "__id__": 68
  2507. },
  2508. {
  2509. "__id__": 80
  2510. }
  2511. ],
  2512. "_active": false,
  2513. "_level": 1,
  2514. "_components": [
  2515. {
  2516. "__id__": 92
  2517. }
  2518. ],
  2519. "_prefab": {
  2520. "__id__": 93
  2521. },
  2522. "_opacity": 255,
  2523. "_color": {
  2524. "__type__": "cc.Color",
  2525. "r": 255,
  2526. "g": 255,
  2527. "b": 255,
  2528. "a": 255
  2529. },
  2530. "_contentSize": {
  2531. "__type__": "cc.Size",
  2532. "width": 1080,
  2533. "height": 200
  2534. },
  2535. "_anchorPoint": {
  2536. "__type__": "cc.Vec2",
  2537. "x": 0.5,
  2538. "y": 0.5
  2539. },
  2540. "_quat": {
  2541. "__type__": "cc.Quat",
  2542. "x": 0,
  2543. "y": 0,
  2544. "z": 0,
  2545. "w": 1
  2546. },
  2547. "_skewX": 0,
  2548. "_skewY": 0,
  2549. "groupIndex": 0,
  2550. "_id": "",
  2551. "_trs": {
  2552. "__type__": "TypedArray",
  2553. "ctor": "Float64Array",
  2554. "array": [
  2555. 0,
  2556. -370,
  2557. 0,
  2558. 0,
  2559. 0,
  2560. 0,
  2561. 1,
  2562. 1,
  2563. 1,
  2564. 1
  2565. ]
  2566. }
  2567. },
  2568. {
  2569. "__type__": "cc.Node",
  2570. "_name": "CancelBtn",
  2571. "_objFlags": 0,
  2572. "_parent": {
  2573. "__id__": 67
  2574. },
  2575. "_children": [
  2576. {
  2577. "__id__": 69
  2578. }
  2579. ],
  2580. "_active": true,
  2581. "_level": 2,
  2582. "_components": [
  2583. {
  2584. "__id__": 76
  2585. },
  2586. {
  2587. "__id__": 78
  2588. }
  2589. ],
  2590. "_prefab": {
  2591. "__id__": 79
  2592. },
  2593. "_opacity": 255,
  2594. "_color": {
  2595. "__type__": "cc.Color",
  2596. "r": 255,
  2597. "g": 255,
  2598. "b": 255,
  2599. "a": 255
  2600. },
  2601. "_contentSize": {
  2602. "__type__": "cc.Size",
  2603. "width": 350,
  2604. "height": 121
  2605. },
  2606. "_anchorPoint": {
  2607. "__type__": "cc.Vec2",
  2608. "x": 0.5,
  2609. "y": 0.5
  2610. },
  2611. "_quat": {
  2612. "__type__": "cc.Quat",
  2613. "x": 0,
  2614. "y": 0,
  2615. "z": 0,
  2616. "w": 1
  2617. },
  2618. "_skewX": 0,
  2619. "_skewY": 0,
  2620. "groupIndex": 0,
  2621. "_id": "",
  2622. "_trs": {
  2623. "__type__": "TypedArray",
  2624. "ctor": "Float64Array",
  2625. "array": [
  2626. -224,
  2627. 0,
  2628. 0,
  2629. 0,
  2630. 0,
  2631. 0,
  2632. 1,
  2633. 1,
  2634. 1,
  2635. 1
  2636. ]
  2637. }
  2638. },
  2639. {
  2640. "__type__": "cc.Node",
  2641. "_name": "Background",
  2642. "_objFlags": 0,
  2643. "_parent": {
  2644. "__id__": 68
  2645. },
  2646. "_children": [
  2647. {
  2648. "__id__": 70
  2649. }
  2650. ],
  2651. "_active": true,
  2652. "_level": 0,
  2653. "_components": [
  2654. {
  2655. "__id__": 73
  2656. },
  2657. {
  2658. "__id__": 74
  2659. }
  2660. ],
  2661. "_prefab": {
  2662. "__id__": 75
  2663. },
  2664. "_opacity": 255,
  2665. "_color": {
  2666. "__type__": "cc.Color",
  2667. "r": 255,
  2668. "g": 255,
  2669. "b": 255,
  2670. "a": 255
  2671. },
  2672. "_contentSize": {
  2673. "__type__": "cc.Size",
  2674. "width": 350,
  2675. "height": 121
  2676. },
  2677. "_anchorPoint": {
  2678. "__type__": "cc.Vec2",
  2679. "x": 0.5,
  2680. "y": 0.5
  2681. },
  2682. "_quat": {
  2683. "__type__": "cc.Quat",
  2684. "x": 0,
  2685. "y": 0,
  2686. "z": 0,
  2687. "w": 1
  2688. },
  2689. "_skewX": 0,
  2690. "_skewY": 0,
  2691. "groupIndex": 0,
  2692. "_id": "",
  2693. "_trs": {
  2694. "__type__": "TypedArray",
  2695. "ctor": "Float64Array",
  2696. "array": [
  2697. 0,
  2698. 0,
  2699. 0,
  2700. 0,
  2701. 0,
  2702. 0,
  2703. 1,
  2704. 1,
  2705. 1,
  2706. 1
  2707. ]
  2708. }
  2709. },
  2710. {
  2711. "__type__": "cc.Node",
  2712. "_name": "Label",
  2713. "_objFlags": 0,
  2714. "_parent": {
  2715. "__id__": 69
  2716. },
  2717. "_children": [],
  2718. "_active": true,
  2719. "_level": 0,
  2720. "_components": [
  2721. {
  2722. "__id__": 71
  2723. }
  2724. ],
  2725. "_prefab": {
  2726. "__id__": 72
  2727. },
  2728. "_opacity": 255,
  2729. "_color": {
  2730. "__type__": "cc.Color",
  2731. "r": 0,
  2732. "g": 0,
  2733. "b": 0,
  2734. "a": 255
  2735. },
  2736. "_contentSize": {
  2737. "__type__": "cc.Size",
  2738. "width": 100,
  2739. "height": 50
  2740. },
  2741. "_anchorPoint": {
  2742. "__type__": "cc.Vec2",
  2743. "x": 0.5,
  2744. "y": 0.5
  2745. },
  2746. "_quat": {
  2747. "__type__": "cc.Quat",
  2748. "x": 0,
  2749. "y": 0,
  2750. "z": 0,
  2751. "w": 1
  2752. },
  2753. "_skewX": 0,
  2754. "_skewY": 0,
  2755. "groupIndex": 0,
  2756. "_id": "",
  2757. "_trs": {
  2758. "__type__": "TypedArray",
  2759. "ctor": "Float64Array",
  2760. "array": [
  2761. 0,
  2762. 0,
  2763. 0,
  2764. 0,
  2765. 0,
  2766. 0,
  2767. 1,
  2768. 1,
  2769. 1,
  2770. 1
  2771. ]
  2772. }
  2773. },
  2774. {
  2775. "__type__": "cc.Label",
  2776. "_name": "",
  2777. "_objFlags": 0,
  2778. "node": {
  2779. "__id__": 70
  2780. },
  2781. "_enabled": true,
  2782. "_useOriginalSize": false,
  2783. "_string": "拒绝",
  2784. "_N$string": "拒绝",
  2785. "_fontSize": 40,
  2786. "_lineHeight": 50,
  2787. "_enableWrapText": false,
  2788. "_N$file": null,
  2789. "_isSystemFontUsed": true,
  2790. "_spacingX": 0,
  2791. "_batchAsBitmap": false,
  2792. "_N$horizontalAlign": 1,
  2793. "_N$verticalAlign": 1,
  2794. "_N$fontFamily": "Arial",
  2795. "_N$overflow": 1,
  2796. "_N$cacheMode": 1,
  2797. "_id": ""
  2798. },
  2799. {
  2800. "__type__": "cc.PrefabInfo",
  2801. "root": {
  2802. "__id__": 1
  2803. },
  2804. "asset": {
  2805. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  2806. },
  2807. "fileId": "4ew5VxzCdHLpI6dBsdy22g",
  2808. "sync": false
  2809. },
  2810. {
  2811. "__type__": "cc.Sprite",
  2812. "_name": "",
  2813. "_objFlags": 0,
  2814. "node": {
  2815. "__id__": 69
  2816. },
  2817. "_enabled": true,
  2818. "_spriteFrame": {
  2819. "__uuid__": "0b7132a5-7e69-4797-916f-77ceb276fa4c"
  2820. },
  2821. "_type": 0,
  2822. "_sizeMode": 0,
  2823. "_fillType": 0,
  2824. "_fillCenter": {
  2825. "__type__": "cc.Vec2",
  2826. "x": 0,
  2827. "y": 0
  2828. },
  2829. "_fillStart": 0,
  2830. "_fillRange": 0,
  2831. "_isTrimmedMode": true,
  2832. "_state": 0,
  2833. "_atlas": null,
  2834. "_srcBlendFactor": 770,
  2835. "_dstBlendFactor": 771,
  2836. "_id": ""
  2837. },
  2838. {
  2839. "__type__": "cc.Widget",
  2840. "_name": "",
  2841. "_objFlags": 0,
  2842. "node": {
  2843. "__id__": 69
  2844. },
  2845. "_enabled": true,
  2846. "alignMode": 0,
  2847. "_target": null,
  2848. "_alignFlags": 45,
  2849. "_left": 0,
  2850. "_right": 0,
  2851. "_top": 0,
  2852. "_bottom": 0,
  2853. "_verticalCenter": 0,
  2854. "_horizontalCenter": 0,
  2855. "_isAbsLeft": true,
  2856. "_isAbsRight": true,
  2857. "_isAbsTop": true,
  2858. "_isAbsBottom": true,
  2859. "_isAbsHorizontalCenter": true,
  2860. "_isAbsVerticalCenter": true,
  2861. "_originalWidth": 100,
  2862. "_originalHeight": 40,
  2863. "_id": ""
  2864. },
  2865. {
  2866. "__type__": "cc.PrefabInfo",
  2867. "root": {
  2868. "__id__": 1
  2869. },
  2870. "asset": {
  2871. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  2872. },
  2873. "fileId": "66A/HiXZpMkb5wmqKmZk4f",
  2874. "sync": false
  2875. },
  2876. {
  2877. "__type__": "cc.Button",
  2878. "_name": "",
  2879. "_objFlags": 0,
  2880. "node": {
  2881. "__id__": 68
  2882. },
  2883. "_enabled": true,
  2884. "duration": 0.1,
  2885. "zoomScale": 1.2,
  2886. "clickEvents": [
  2887. {
  2888. "__id__": 77
  2889. }
  2890. ],
  2891. "_N$interactable": true,
  2892. "_N$enableAutoGrayEffect": false,
  2893. "_N$transition": 1,
  2894. "transition": 1,
  2895. "_N$normalColor": {
  2896. "__type__": "cc.Color",
  2897. "r": 255,
  2898. "g": 255,
  2899. "b": 255,
  2900. "a": 255
  2901. },
  2902. "_N$pressedColor": {
  2903. "__type__": "cc.Color",
  2904. "r": 200,
  2905. "g": 200,
  2906. "b": 200,
  2907. "a": 255
  2908. },
  2909. "pressedColor": {
  2910. "__type__": "cc.Color",
  2911. "r": 200,
  2912. "g": 200,
  2913. "b": 200,
  2914. "a": 255
  2915. },
  2916. "_N$hoverColor": {
  2917. "__type__": "cc.Color",
  2918. "r": 200,
  2919. "g": 200,
  2920. "b": 200,
  2921. "a": 255
  2922. },
  2923. "hoverColor": {
  2924. "__type__": "cc.Color",
  2925. "r": 200,
  2926. "g": 200,
  2927. "b": 200,
  2928. "a": 255
  2929. },
  2930. "_N$disabledColor": {
  2931. "__type__": "cc.Color",
  2932. "r": 120,
  2933. "g": 120,
  2934. "b": 120,
  2935. "a": 200
  2936. },
  2937. "_N$normalSprite": {
  2938. "__uuid__": "aa15a88e-ff1d-43de-a91e-00bc3e6d46b2"
  2939. },
  2940. "_N$pressedSprite": {
  2941. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2942. },
  2943. "pressedSprite": {
  2944. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2945. },
  2946. "_N$hoverSprite": {
  2947. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2948. },
  2949. "hoverSprite": {
  2950. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2951. },
  2952. "_N$disabledSprite": {
  2953. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2954. },
  2955. "_N$target": {
  2956. "__id__": 69
  2957. },
  2958. "_id": ""
  2959. },
  2960. {
  2961. "__type__": "cc.ClickEvent",
  2962. "target": {
  2963. "__id__": 1
  2964. },
  2965. "component": "",
  2966. "_componentId": "d0717GZecVL5p3tNcXpk9rY",
  2967. "handler": "onCloseClickListener",
  2968. "customEventData": ""
  2969. },
  2970. {
  2971. "__type__": "cc.Widget",
  2972. "_name": "",
  2973. "_objFlags": 0,
  2974. "node": {
  2975. "__id__": 68
  2976. },
  2977. "_enabled": true,
  2978. "alignMode": 1,
  2979. "_target": null,
  2980. "_alignFlags": 12,
  2981. "_left": 141,
  2982. "_right": 0,
  2983. "_top": 0,
  2984. "_bottom": 39.5,
  2985. "_verticalCenter": 0,
  2986. "_horizontalCenter": 0,
  2987. "_isAbsLeft": true,
  2988. "_isAbsRight": true,
  2989. "_isAbsTop": true,
  2990. "_isAbsBottom": true,
  2991. "_isAbsHorizontalCenter": true,
  2992. "_isAbsVerticalCenter": true,
  2993. "_originalWidth": 0,
  2994. "_originalHeight": 0,
  2995. "_id": ""
  2996. },
  2997. {
  2998. "__type__": "cc.PrefabInfo",
  2999. "root": {
  3000. "__id__": 1
  3001. },
  3002. "asset": {
  3003. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  3004. },
  3005. "fileId": "888Ml4WXpIXrCs5MYzJ3+V",
  3006. "sync": false
  3007. },
  3008. {
  3009. "__type__": "cc.Node",
  3010. "_name": "OKBtn",
  3011. "_objFlags": 0,
  3012. "_parent": {
  3013. "__id__": 67
  3014. },
  3015. "_children": [
  3016. {
  3017. "__id__": 81
  3018. }
  3019. ],
  3020. "_active": true,
  3021. "_level": 2,
  3022. "_components": [
  3023. {
  3024. "__id__": 88
  3025. },
  3026. {
  3027. "__id__": 90
  3028. }
  3029. ],
  3030. "_prefab": {
  3031. "__id__": 91
  3032. },
  3033. "_opacity": 255,
  3034. "_color": {
  3035. "__type__": "cc.Color",
  3036. "r": 255,
  3037. "g": 255,
  3038. "b": 255,
  3039. "a": 255
  3040. },
  3041. "_contentSize": {
  3042. "__type__": "cc.Size",
  3043. "width": 350,
  3044. "height": 121
  3045. },
  3046. "_anchorPoint": {
  3047. "__type__": "cc.Vec2",
  3048. "x": 0.5,
  3049. "y": 0.5
  3050. },
  3051. "_quat": {
  3052. "__type__": "cc.Quat",
  3053. "x": 0,
  3054. "y": 0,
  3055. "z": 0,
  3056. "w": 1
  3057. },
  3058. "_skewX": 0,
  3059. "_skewY": 0,
  3060. "groupIndex": 0,
  3061. "_id": "",
  3062. "_trs": {
  3063. "__type__": "TypedArray",
  3064. "ctor": "Float64Array",
  3065. "array": [
  3066. 220,
  3067. 0,
  3068. 0,
  3069. 0,
  3070. 0,
  3071. 0,
  3072. 1,
  3073. 1,
  3074. 1,
  3075. 1
  3076. ]
  3077. }
  3078. },
  3079. {
  3080. "__type__": "cc.Node",
  3081. "_name": "Background",
  3082. "_objFlags": 0,
  3083. "_parent": {
  3084. "__id__": 80
  3085. },
  3086. "_children": [
  3087. {
  3088. "__id__": 82
  3089. }
  3090. ],
  3091. "_active": true,
  3092. "_level": 0,
  3093. "_components": [
  3094. {
  3095. "__id__": 85
  3096. },
  3097. {
  3098. "__id__": 86
  3099. }
  3100. ],
  3101. "_prefab": {
  3102. "__id__": 87
  3103. },
  3104. "_opacity": 255,
  3105. "_color": {
  3106. "__type__": "cc.Color",
  3107. "r": 238,
  3108. "g": 135,
  3109. "b": 56,
  3110. "a": 255
  3111. },
  3112. "_contentSize": {
  3113. "__type__": "cc.Size",
  3114. "width": 350,
  3115. "height": 121
  3116. },
  3117. "_anchorPoint": {
  3118. "__type__": "cc.Vec2",
  3119. "x": 0.5,
  3120. "y": 0.5
  3121. },
  3122. "_quat": {
  3123. "__type__": "cc.Quat",
  3124. "x": 0,
  3125. "y": 0,
  3126. "z": 0,
  3127. "w": 1
  3128. },
  3129. "_skewX": 0,
  3130. "_skewY": 0,
  3131. "groupIndex": 0,
  3132. "_id": "",
  3133. "_trs": {
  3134. "__type__": "TypedArray",
  3135. "ctor": "Float64Array",
  3136. "array": [
  3137. 0,
  3138. 0,
  3139. 0,
  3140. 0,
  3141. 0,
  3142. 0,
  3143. 1,
  3144. 1,
  3145. 1,
  3146. 1
  3147. ]
  3148. }
  3149. },
  3150. {
  3151. "__type__": "cc.Node",
  3152. "_name": "Label",
  3153. "_objFlags": 0,
  3154. "_parent": {
  3155. "__id__": 81
  3156. },
  3157. "_children": [],
  3158. "_active": true,
  3159. "_level": 0,
  3160. "_components": [
  3161. {
  3162. "__id__": 83
  3163. }
  3164. ],
  3165. "_prefab": {
  3166. "__id__": 84
  3167. },
  3168. "_opacity": 255,
  3169. "_color": {
  3170. "__type__": "cc.Color",
  3171. "r": 255,
  3172. "g": 255,
  3173. "b": 255,
  3174. "a": 255
  3175. },
  3176. "_contentSize": {
  3177. "__type__": "cc.Size",
  3178. "width": 300,
  3179. "height": 50
  3180. },
  3181. "_anchorPoint": {
  3182. "__type__": "cc.Vec2",
  3183. "x": 0.5,
  3184. "y": 0.5
  3185. },
  3186. "_quat": {
  3187. "__type__": "cc.Quat",
  3188. "x": 0,
  3189. "y": 0,
  3190. "z": 0,
  3191. "w": 1
  3192. },
  3193. "_skewX": 0,
  3194. "_skewY": 0,
  3195. "groupIndex": 0,
  3196. "_id": "",
  3197. "_trs": {
  3198. "__type__": "TypedArray",
  3199. "ctor": "Float64Array",
  3200. "array": [
  3201. 0,
  3202. 0,
  3203. 0,
  3204. 0,
  3205. 0,
  3206. 0,
  3207. 1,
  3208. 1,
  3209. 1,
  3210. 1
  3211. ]
  3212. }
  3213. },
  3214. {
  3215. "__type__": "cc.Label",
  3216. "_name": "",
  3217. "_objFlags": 0,
  3218. "node": {
  3219. "__id__": 82
  3220. },
  3221. "_enabled": true,
  3222. "_useOriginalSize": false,
  3223. "_string": "同意",
  3224. "_N$string": "同意",
  3225. "_fontSize": 40,
  3226. "_lineHeight": 50,
  3227. "_enableWrapText": false,
  3228. "_N$file": null,
  3229. "_isSystemFontUsed": true,
  3230. "_spacingX": 0,
  3231. "_batchAsBitmap": false,
  3232. "_N$horizontalAlign": 1,
  3233. "_N$verticalAlign": 1,
  3234. "_N$fontFamily": "Arial",
  3235. "_N$overflow": 1,
  3236. "_N$cacheMode": 1,
  3237. "_id": ""
  3238. },
  3239. {
  3240. "__type__": "cc.PrefabInfo",
  3241. "root": {
  3242. "__id__": 1
  3243. },
  3244. "asset": {
  3245. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  3246. },
  3247. "fileId": "6a0IlJYhNNR4ID4Yzu+PyL",
  3248. "sync": false
  3249. },
  3250. {
  3251. "__type__": "cc.Sprite",
  3252. "_name": "",
  3253. "_objFlags": 0,
  3254. "node": {
  3255. "__id__": 81
  3256. },
  3257. "_enabled": true,
  3258. "_spriteFrame": {
  3259. "__uuid__": "0b7132a5-7e69-4797-916f-77ceb276fa4c"
  3260. },
  3261. "_type": 0,
  3262. "_sizeMode": 0,
  3263. "_fillType": 0,
  3264. "_fillCenter": {
  3265. "__type__": "cc.Vec2",
  3266. "x": 0,
  3267. "y": 0
  3268. },
  3269. "_fillStart": 0,
  3270. "_fillRange": 0,
  3271. "_isTrimmedMode": true,
  3272. "_state": 0,
  3273. "_atlas": null,
  3274. "_srcBlendFactor": 770,
  3275. "_dstBlendFactor": 771,
  3276. "_id": ""
  3277. },
  3278. {
  3279. "__type__": "cc.Widget",
  3280. "_name": "",
  3281. "_objFlags": 0,
  3282. "node": {
  3283. "__id__": 81
  3284. },
  3285. "_enabled": true,
  3286. "alignMode": 0,
  3287. "_target": null,
  3288. "_alignFlags": 45,
  3289. "_left": 0,
  3290. "_right": 0,
  3291. "_top": 0,
  3292. "_bottom": 0,
  3293. "_verticalCenter": 0,
  3294. "_horizontalCenter": 0,
  3295. "_isAbsLeft": true,
  3296. "_isAbsRight": true,
  3297. "_isAbsTop": true,
  3298. "_isAbsBottom": true,
  3299. "_isAbsHorizontalCenter": true,
  3300. "_isAbsVerticalCenter": true,
  3301. "_originalWidth": 100,
  3302. "_originalHeight": 40,
  3303. "_id": ""
  3304. },
  3305. {
  3306. "__type__": "cc.PrefabInfo",
  3307. "root": {
  3308. "__id__": 1
  3309. },
  3310. "asset": {
  3311. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  3312. },
  3313. "fileId": "74OTytaKVNloJZSWYmmZCm",
  3314. "sync": false
  3315. },
  3316. {
  3317. "__type__": "cc.Button",
  3318. "_name": "",
  3319. "_objFlags": 0,
  3320. "node": {
  3321. "__id__": 80
  3322. },
  3323. "_enabled": true,
  3324. "duration": 0.1,
  3325. "zoomScale": 1.2,
  3326. "clickEvents": [
  3327. {
  3328. "__id__": 89
  3329. }
  3330. ],
  3331. "_N$interactable": true,
  3332. "_N$enableAutoGrayEffect": false,
  3333. "_N$transition": 1,
  3334. "transition": 1,
  3335. "_N$normalColor": {
  3336. "__type__": "cc.Color",
  3337. "r": 238,
  3338. "g": 135,
  3339. "b": 56,
  3340. "a": 255
  3341. },
  3342. "_N$pressedColor": {
  3343. "__type__": "cc.Color",
  3344. "r": 200,
  3345. "g": 200,
  3346. "b": 200,
  3347. "a": 255
  3348. },
  3349. "pressedColor": {
  3350. "__type__": "cc.Color",
  3351. "r": 200,
  3352. "g": 200,
  3353. "b": 200,
  3354. "a": 255
  3355. },
  3356. "_N$hoverColor": {
  3357. "__type__": "cc.Color",
  3358. "r": 200,
  3359. "g": 200,
  3360. "b": 200,
  3361. "a": 255
  3362. },
  3363. "hoverColor": {
  3364. "__type__": "cc.Color",
  3365. "r": 200,
  3366. "g": 200,
  3367. "b": 200,
  3368. "a": 255
  3369. },
  3370. "_N$disabledColor": {
  3371. "__type__": "cc.Color",
  3372. "r": 120,
  3373. "g": 120,
  3374. "b": 120,
  3375. "a": 200
  3376. },
  3377. "_N$normalSprite": {
  3378. "__uuid__": "0b7132a5-7e69-4797-916f-77ceb276fa4c"
  3379. },
  3380. "_N$pressedSprite": {
  3381. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3382. },
  3383. "pressedSprite": {
  3384. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3385. },
  3386. "_N$hoverSprite": {
  3387. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3388. },
  3389. "hoverSprite": {
  3390. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3391. },
  3392. "_N$disabledSprite": {
  3393. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3394. },
  3395. "_N$target": {
  3396. "__id__": 81
  3397. },
  3398. "_id": ""
  3399. },
  3400. {
  3401. "__type__": "cc.ClickEvent",
  3402. "target": {
  3403. "__id__": 1
  3404. },
  3405. "component": "",
  3406. "_componentId": "d0717GZecVL5p3tNcXpk9rY",
  3407. "handler": "onOKClickListener",
  3408. "customEventData": ""
  3409. },
  3410. {
  3411. "__type__": "cc.Widget",
  3412. "_name": "",
  3413. "_objFlags": 0,
  3414. "node": {
  3415. "__id__": 80
  3416. },
  3417. "_enabled": true,
  3418. "alignMode": 1,
  3419. "_target": null,
  3420. "_alignFlags": 36,
  3421. "_left": 0,
  3422. "_right": 145,
  3423. "_top": 0,
  3424. "_bottom": 39.5,
  3425. "_verticalCenter": 0,
  3426. "_horizontalCenter": 0,
  3427. "_isAbsLeft": true,
  3428. "_isAbsRight": true,
  3429. "_isAbsTop": true,
  3430. "_isAbsBottom": true,
  3431. "_isAbsHorizontalCenter": true,
  3432. "_isAbsVerticalCenter": true,
  3433. "_originalWidth": 0,
  3434. "_originalHeight": 0,
  3435. "_id": ""
  3436. },
  3437. {
  3438. "__type__": "cc.PrefabInfo",
  3439. "root": {
  3440. "__id__": 1
  3441. },
  3442. "asset": {
  3443. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  3444. },
  3445. "fileId": "efStpo8tdKxZriGHXRt1Zi",
  3446. "sync": false
  3447. },
  3448. {
  3449. "__type__": "cc.Widget",
  3450. "_name": "",
  3451. "_objFlags": 0,
  3452. "node": {
  3453. "__id__": 67
  3454. },
  3455. "_enabled": true,
  3456. "alignMode": 1,
  3457. "_target": null,
  3458. "_alignFlags": 40,
  3459. "_left": 0,
  3460. "_right": 0,
  3461. "_top": 0,
  3462. "_bottom": 0,
  3463. "_verticalCenter": 0,
  3464. "_horizontalCenter": 0,
  3465. "_isAbsLeft": true,
  3466. "_isAbsRight": true,
  3467. "_isAbsTop": true,
  3468. "_isAbsBottom": true,
  3469. "_isAbsHorizontalCenter": true,
  3470. "_isAbsVerticalCenter": true,
  3471. "_originalWidth": 0,
  3472. "_originalHeight": 0,
  3473. "_id": ""
  3474. },
  3475. {
  3476. "__type__": "cc.PrefabInfo",
  3477. "root": {
  3478. "__id__": 1
  3479. },
  3480. "asset": {
  3481. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  3482. },
  3483. "fileId": "8dA+MwCVlJHJRmZbeFILGi",
  3484. "sync": false
  3485. },
  3486. {
  3487. "__type__": "cc.Widget",
  3488. "_name": "",
  3489. "_objFlags": 0,
  3490. "node": {
  3491. "__id__": 55
  3492. },
  3493. "_enabled": true,
  3494. "alignMode": 1,
  3495. "_target": null,
  3496. "_alignFlags": 41,
  3497. "_left": 0,
  3498. "_right": 0,
  3499. "_top": 0,
  3500. "_bottom": 1520,
  3501. "_verticalCenter": 0,
  3502. "_horizontalCenter": 0,
  3503. "_isAbsLeft": true,
  3504. "_isAbsRight": true,
  3505. "_isAbsTop": true,
  3506. "_isAbsBottom": true,
  3507. "_isAbsHorizontalCenter": true,
  3508. "_isAbsVerticalCenter": true,
  3509. "_originalWidth": 220,
  3510. "_originalHeight": 400,
  3511. "_id": ""
  3512. },
  3513. {
  3514. "__type__": "cc.Layout",
  3515. "_name": "",
  3516. "_objFlags": 0,
  3517. "node": {
  3518. "__id__": 55
  3519. },
  3520. "_enabled": true,
  3521. "_layoutSize": {
  3522. "__type__": "cc.Size",
  3523. "width": 1080,
  3524. "height": 500
  3525. },
  3526. "_resize": 1,
  3527. "_N$layoutType": 2,
  3528. "_N$padding": 0,
  3529. "_N$cellSize": {
  3530. "__type__": "cc.Size",
  3531. "width": 40,
  3532. "height": 40
  3533. },
  3534. "_N$startAxis": 0,
  3535. "_N$paddingLeft": 0,
  3536. "_N$paddingRight": 0,
  3537. "_N$paddingTop": 200,
  3538. "_N$paddingBottom": 300,
  3539. "_N$spacingX": 0,
  3540. "_N$spacingY": 0,
  3541. "_N$verticalDirection": 1,
  3542. "_N$horizontalDirection": 0,
  3543. "_N$affectedByScale": false,
  3544. "_id": ""
  3545. },
  3546. {
  3547. "__type__": "cc.PrefabInfo",
  3548. "root": {
  3549. "__id__": 1
  3550. },
  3551. "asset": {
  3552. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  3553. },
  3554. "fileId": "7er7qiDZ9KBp6sMbL7L4lI",
  3555. "sync": false
  3556. },
  3557. {
  3558. "__type__": "cc.Node",
  3559. "_name": "closeImg",
  3560. "_objFlags": 0,
  3561. "_parent": {
  3562. "__id__": 54
  3563. },
  3564. "_children": [],
  3565. "_active": true,
  3566. "_level": 1,
  3567. "_components": [
  3568. {
  3569. "__id__": 98
  3570. },
  3571. {
  3572. "__id__": 99
  3573. },
  3574. {
  3575. "__id__": 100
  3576. }
  3577. ],
  3578. "_prefab": {
  3579. "__id__": 102
  3580. },
  3581. "_opacity": 255,
  3582. "_color": {
  3583. "__type__": "cc.Color",
  3584. "r": 255,
  3585. "g": 255,
  3586. "b": 255,
  3587. "a": 255
  3588. },
  3589. "_contentSize": {
  3590. "__type__": "cc.Size",
  3591. "width": 72,
  3592. "height": 72
  3593. },
  3594. "_anchorPoint": {
  3595. "__type__": "cc.Vec2",
  3596. "x": 0.5,
  3597. "y": 0.5
  3598. },
  3599. "_quat": {
  3600. "__type__": "cc.Quat",
  3601. "x": 0,
  3602. "y": 0,
  3603. "z": 0,
  3604. "w": 1
  3605. },
  3606. "_skewX": 0,
  3607. "_skewY": 0,
  3608. "groupIndex": 0,
  3609. "_id": "",
  3610. "_trs": {
  3611. "__type__": "TypedArray",
  3612. "ctor": "Float64Array",
  3613. "array": [
  3614. 465,
  3615. 739,
  3616. 0,
  3617. 0,
  3618. 0,
  3619. 0,
  3620. 1,
  3621. 1,
  3622. 1,
  3623. 1
  3624. ]
  3625. }
  3626. },
  3627. {
  3628. "__type__": "cc.Sprite",
  3629. "_name": "",
  3630. "_objFlags": 0,
  3631. "node": {
  3632. "__id__": 97
  3633. },
  3634. "_enabled": true,
  3635. "_spriteFrame": {
  3636. "__uuid__": "41a99cce-9c26-41dc-81f3-63597f3ecf81"
  3637. },
  3638. "_type": 0,
  3639. "_sizeMode": 1,
  3640. "_fillType": 0,
  3641. "_fillCenter": {
  3642. "__type__": "cc.Vec2",
  3643. "x": 0,
  3644. "y": 0
  3645. },
  3646. "_fillStart": 0,
  3647. "_fillRange": 0,
  3648. "_isTrimmedMode": true,
  3649. "_state": 0,
  3650. "_atlas": null,
  3651. "_srcBlendFactor": 770,
  3652. "_dstBlendFactor": 771,
  3653. "_id": ""
  3654. },
  3655. {
  3656. "__type__": "cc.Widget",
  3657. "_name": "",
  3658. "_objFlags": 0,
  3659. "node": {
  3660. "__id__": 97
  3661. },
  3662. "_enabled": true,
  3663. "alignMode": 1,
  3664. "_target": null,
  3665. "_alignFlags": 33,
  3666. "_left": 0,
  3667. "_right": 39,
  3668. "_top": 185,
  3669. "_bottom": 0,
  3670. "_verticalCenter": 0,
  3671. "_horizontalCenter": 0,
  3672. "_isAbsLeft": true,
  3673. "_isAbsRight": true,
  3674. "_isAbsTop": true,
  3675. "_isAbsBottom": true,
  3676. "_isAbsHorizontalCenter": true,
  3677. "_isAbsVerticalCenter": true,
  3678. "_originalWidth": 0,
  3679. "_originalHeight": 0,
  3680. "_id": ""
  3681. },
  3682. {
  3683. "__type__": "cc.Button",
  3684. "_name": "",
  3685. "_objFlags": 0,
  3686. "node": {
  3687. "__id__": 97
  3688. },
  3689. "_enabled": true,
  3690. "duration": 0.1,
  3691. "zoomScale": 1.2,
  3692. "clickEvents": [
  3693. {
  3694. "__id__": 101
  3695. }
  3696. ],
  3697. "_N$interactable": true,
  3698. "_N$enableAutoGrayEffect": false,
  3699. "_N$transition": 3,
  3700. "transition": 3,
  3701. "_N$normalColor": {
  3702. "__type__": "cc.Color",
  3703. "r": 214,
  3704. "g": 214,
  3705. "b": 214,
  3706. "a": 255
  3707. },
  3708. "_N$pressedColor": {
  3709. "__type__": "cc.Color",
  3710. "r": 211,
  3711. "g": 211,
  3712. "b": 211,
  3713. "a": 255
  3714. },
  3715. "pressedColor": {
  3716. "__type__": "cc.Color",
  3717. "r": 211,
  3718. "g": 211,
  3719. "b": 211,
  3720. "a": 255
  3721. },
  3722. "_N$hoverColor": {
  3723. "__type__": "cc.Color",
  3724. "r": 255,
  3725. "g": 255,
  3726. "b": 255,
  3727. "a": 255
  3728. },
  3729. "hoverColor": {
  3730. "__type__": "cc.Color",
  3731. "r": 255,
  3732. "g": 255,
  3733. "b": 255,
  3734. "a": 255
  3735. },
  3736. "_N$disabledColor": {
  3737. "__type__": "cc.Color",
  3738. "r": 124,
  3739. "g": 124,
  3740. "b": 124,
  3741. "a": 255
  3742. },
  3743. "_N$normalSprite": null,
  3744. "_N$pressedSprite": null,
  3745. "pressedSprite": null,
  3746. "_N$hoverSprite": null,
  3747. "hoverSprite": null,
  3748. "_N$disabledSprite": null,
  3749. "_N$target": null,
  3750. "_id": ""
  3751. },
  3752. {
  3753. "__type__": "cc.ClickEvent",
  3754. "target": {
  3755. "__id__": 1
  3756. },
  3757. "component": "",
  3758. "_componentId": "d0717GZecVL5p3tNcXpk9rY",
  3759. "handler": "onClosePrivacyDesc",
  3760. "customEventData": ""
  3761. },
  3762. {
  3763. "__type__": "cc.PrefabInfo",
  3764. "root": {
  3765. "__id__": 1
  3766. },
  3767. "asset": {
  3768. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  3769. },
  3770. "fileId": "56fLrixQlC35gn9fy9Ot17",
  3771. "sync": false
  3772. },
  3773. {
  3774. "__type__": "cc.Node",
  3775. "_name": "LaodingLabel",
  3776. "_objFlags": 0,
  3777. "_parent": {
  3778. "__id__": 54
  3779. },
  3780. "_children": [],
  3781. "_active": true,
  3782. "_level": 1,
  3783. "_components": [
  3784. {
  3785. "__id__": 104
  3786. }
  3787. ],
  3788. "_prefab": {
  3789. "__id__": 105
  3790. },
  3791. "_opacity": 255,
  3792. "_color": {
  3793. "__type__": "cc.Color",
  3794. "r": 0,
  3795. "g": 0,
  3796. "b": 0,
  3797. "a": 255
  3798. },
  3799. "_contentSize": {
  3800. "__type__": "cc.Size",
  3801. "width": 476.58,
  3802. "height": 60
  3803. },
  3804. "_anchorPoint": {
  3805. "__type__": "cc.Vec2",
  3806. "x": 0.5,
  3807. "y": 0.5
  3808. },
  3809. "_quat": {
  3810. "__type__": "cc.Quat",
  3811. "x": 0,
  3812. "y": 0,
  3813. "z": 0,
  3814. "w": 1
  3815. },
  3816. "_skewX": 0,
  3817. "_skewY": 0,
  3818. "groupIndex": 0,
  3819. "_id": "",
  3820. "_trs": {
  3821. "__type__": "TypedArray",
  3822. "ctor": "Float64Array",
  3823. "array": [
  3824. 0,
  3825. 0,
  3826. 0,
  3827. 0,
  3828. 0,
  3829. 0,
  3830. 1,
  3831. 1,
  3832. 1,
  3833. 1
  3834. ]
  3835. }
  3836. },
  3837. {
  3838. "__type__": "cc.Label",
  3839. "_name": "",
  3840. "_objFlags": 0,
  3841. "node": {
  3842. "__id__": 103
  3843. },
  3844. "_enabled": true,
  3845. "_useOriginalSize": false,
  3846. "_string": "隐私协议加载中·····",
  3847. "_N$string": "隐私协议加载中·····",
  3848. "_fontSize": 55,
  3849. "_lineHeight": 60,
  3850. "_enableWrapText": true,
  3851. "_N$file": null,
  3852. "_isSystemFontUsed": true,
  3853. "_spacingX": 0,
  3854. "_batchAsBitmap": false,
  3855. "_N$horizontalAlign": 1,
  3856. "_N$verticalAlign": 1,
  3857. "_N$fontFamily": "Arial",
  3858. "_N$overflow": 0,
  3859. "_N$cacheMode": 0,
  3860. "_id": ""
  3861. },
  3862. {
  3863. "__type__": "cc.PrefabInfo",
  3864. "root": {
  3865. "__id__": 1
  3866. },
  3867. "asset": {
  3868. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  3869. },
  3870. "fileId": "dePnvchpVGkoKroD8Vw9bw",
  3871. "sync": false
  3872. },
  3873. {
  3874. "__type__": "cc.Mask",
  3875. "_name": "",
  3876. "_objFlags": 0,
  3877. "node": {
  3878. "__id__": 54
  3879. },
  3880. "_enabled": true,
  3881. "_spriteFrame": null,
  3882. "_type": 0,
  3883. "_segments": 64,
  3884. "_N$alphaThreshold": 0.1,
  3885. "_N$inverted": false,
  3886. "_id": ""
  3887. },
  3888. {
  3889. "__type__": "cc.Widget",
  3890. "_name": "",
  3891. "_objFlags": 0,
  3892. "node": {
  3893. "__id__": 54
  3894. },
  3895. "_enabled": true,
  3896. "alignMode": 1,
  3897. "_target": null,
  3898. "_alignFlags": 45,
  3899. "_left": 0,
  3900. "_right": 0,
  3901. "_top": 0,
  3902. "_bottom": 0,
  3903. "_verticalCenter": 0,
  3904. "_horizontalCenter": 0,
  3905. "_isAbsLeft": true,
  3906. "_isAbsRight": true,
  3907. "_isAbsTop": true,
  3908. "_isAbsBottom": true,
  3909. "_isAbsHorizontalCenter": true,
  3910. "_isAbsVerticalCenter": true,
  3911. "_originalWidth": 1080,
  3912. "_originalHeight": 1920,
  3913. "_id": ""
  3914. },
  3915. {
  3916. "__type__": "cc.PrefabInfo",
  3917. "root": {
  3918. "__id__": 1
  3919. },
  3920. "asset": {
  3921. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  3922. },
  3923. "fileId": "90WkiK8ZhE/rDtONcH1oVh",
  3924. "sync": false
  3925. },
  3926. {
  3927. "__type__": "cc.Sprite",
  3928. "_name": "",
  3929. "_objFlags": 0,
  3930. "node": {
  3931. "__id__": 53
  3932. },
  3933. "_enabled": true,
  3934. "_spriteFrame": {
  3935. "__uuid__": "9bbda31e-ad49-43c9-aaf2-f7d9896bac69"
  3936. },
  3937. "_type": 1,
  3938. "_sizeMode": 0,
  3939. "_fillType": 0,
  3940. "_fillCenter": {
  3941. "__type__": "cc.Vec2",
  3942. "x": 0,
  3943. "y": 0
  3944. },
  3945. "_fillStart": 0,
  3946. "_fillRange": 0,
  3947. "_isTrimmedMode": true,
  3948. "_state": 0,
  3949. "_atlas": null,
  3950. "_srcBlendFactor": 770,
  3951. "_dstBlendFactor": 771,
  3952. "_id": ""
  3953. },
  3954. {
  3955. "__type__": "cc.ScrollView",
  3956. "_name": "",
  3957. "_objFlags": 0,
  3958. "node": {
  3959. "__id__": 53
  3960. },
  3961. "_enabled": true,
  3962. "horizontal": false,
  3963. "vertical": true,
  3964. "inertia": true,
  3965. "brake": 0.75,
  3966. "elastic": true,
  3967. "bounceDuration": 0.23,
  3968. "scrollEvents": [],
  3969. "cancelInnerEvents": true,
  3970. "_N$content": {
  3971. "__id__": 55
  3972. },
  3973. "content": {
  3974. "__id__": 55
  3975. },
  3976. "_N$horizontalScrollBar": null,
  3977. "_N$verticalScrollBar": null,
  3978. "_id": ""
  3979. },
  3980. {
  3981. "__type__": "cc.Widget",
  3982. "_name": "",
  3983. "_objFlags": 0,
  3984. "node": {
  3985. "__id__": 53
  3986. },
  3987. "_enabled": true,
  3988. "alignMode": 1,
  3989. "_target": null,
  3990. "_alignFlags": 45,
  3991. "_left": 0,
  3992. "_right": 0,
  3993. "_top": 0,
  3994. "_bottom": 0,
  3995. "_verticalCenter": 0,
  3996. "_horizontalCenter": 0,
  3997. "_isAbsLeft": true,
  3998. "_isAbsRight": true,
  3999. "_isAbsTop": true,
  4000. "_isAbsBottom": true,
  4001. "_isAbsHorizontalCenter": true,
  4002. "_isAbsVerticalCenter": true,
  4003. "_originalWidth": 240,
  4004. "_originalHeight": 250,
  4005. "_id": ""
  4006. },
  4007. {
  4008. "__type__": "cc.PrefabInfo",
  4009. "root": {
  4010. "__id__": 1
  4011. },
  4012. "asset": {
  4013. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  4014. },
  4015. "fileId": "5fFCi4KAhE4JY2EMgNjp9w",
  4016. "sync": false
  4017. },
  4018. {
  4019. "__type__": "cc.Node",
  4020. "_name": "CheckPanel",
  4021. "_objFlags": 0,
  4022. "_parent": {
  4023. "__id__": 1
  4024. },
  4025. "_children": [
  4026. {
  4027. "__id__": 114
  4028. },
  4029. {
  4030. "__id__": 118
  4031. },
  4032. {
  4033. "__id__": 121
  4034. },
  4035. {
  4036. "__id__": 133
  4037. }
  4038. ],
  4039. "_active": false,
  4040. "_level": 2,
  4041. "_components": [
  4042. {
  4043. "__id__": 145
  4044. }
  4045. ],
  4046. "_prefab": {
  4047. "__id__": 146
  4048. },
  4049. "_opacity": 255,
  4050. "_color": {
  4051. "__type__": "cc.Color",
  4052. "r": 255,
  4053. "g": 255,
  4054. "b": 255,
  4055. "a": 255
  4056. },
  4057. "_contentSize": {
  4058. "__type__": "cc.Size",
  4059. "width": 884,
  4060. "height": 534
  4061. },
  4062. "_anchorPoint": {
  4063. "__type__": "cc.Vec2",
  4064. "x": 0.5,
  4065. "y": 0.5
  4066. },
  4067. "_quat": {
  4068. "__type__": "cc.Quat",
  4069. "x": 0,
  4070. "y": 0,
  4071. "z": 0,
  4072. "w": 1
  4073. },
  4074. "_skewX": 0,
  4075. "_skewY": 0,
  4076. "groupIndex": 0,
  4077. "_id": "",
  4078. "_trs": {
  4079. "__type__": "TypedArray",
  4080. "ctor": "Float64Array",
  4081. "array": [
  4082. 0,
  4083. 0,
  4084. 0,
  4085. 0,
  4086. 0,
  4087. 0,
  4088. 1,
  4089. 1,
  4090. 1,
  4091. 1
  4092. ]
  4093. }
  4094. },
  4095. {
  4096. "__type__": "cc.Node",
  4097. "_name": "titleLbl",
  4098. "_objFlags": 0,
  4099. "_parent": {
  4100. "__id__": 113
  4101. },
  4102. "_children": [],
  4103. "_active": true,
  4104. "_level": 1,
  4105. "_components": [
  4106. {
  4107. "__id__": 115
  4108. },
  4109. {
  4110. "__id__": 116
  4111. }
  4112. ],
  4113. "_prefab": {
  4114. "__id__": 117
  4115. },
  4116. "_opacity": 255,
  4117. "_color": {
  4118. "__type__": "cc.Color",
  4119. "r": 0,
  4120. "g": 0,
  4121. "b": 0,
  4122. "a": 255
  4123. },
  4124. "_contentSize": {
  4125. "__type__": "cc.Size",
  4126. "width": 240,
  4127. "height": 65
  4128. },
  4129. "_anchorPoint": {
  4130. "__type__": "cc.Vec2",
  4131. "x": 0.5,
  4132. "y": 0.5
  4133. },
  4134. "_quat": {
  4135. "__type__": "cc.Quat",
  4136. "x": 0,
  4137. "y": 0,
  4138. "z": 0,
  4139. "w": 1
  4140. },
  4141. "_skewX": 0,
  4142. "_skewY": 0,
  4143. "groupIndex": 0,
  4144. "_id": "",
  4145. "_trs": {
  4146. "__type__": "TypedArray",
  4147. "ctor": "Float64Array",
  4148. "array": [
  4149. 0,
  4150. 144,
  4151. 0,
  4152. 0,
  4153. 0,
  4154. 0,
  4155. 1,
  4156. 1,
  4157. 1,
  4158. 1
  4159. ]
  4160. }
  4161. },
  4162. {
  4163. "__type__": "cc.Label",
  4164. "_name": "",
  4165. "_objFlags": 0,
  4166. "node": {
  4167. "__id__": 114
  4168. },
  4169. "_enabled": true,
  4170. "_useOriginalSize": false,
  4171. "_string": "友情提示",
  4172. "_N$string": "友情提示",
  4173. "_fontSize": 60,
  4174. "_lineHeight": 65,
  4175. "_enableWrapText": true,
  4176. "_N$file": null,
  4177. "_isSystemFontUsed": true,
  4178. "_spacingX": 0,
  4179. "_batchAsBitmap": false,
  4180. "_N$horizontalAlign": 1,
  4181. "_N$verticalAlign": 1,
  4182. "_N$fontFamily": "Arial",
  4183. "_N$overflow": 0,
  4184. "_N$cacheMode": 0,
  4185. "_id": ""
  4186. },
  4187. {
  4188. "__type__": "cc.Widget",
  4189. "_name": "",
  4190. "_objFlags": 0,
  4191. "node": {
  4192. "__id__": 114
  4193. },
  4194. "_enabled": true,
  4195. "alignMode": 1,
  4196. "_target": null,
  4197. "_alignFlags": 1,
  4198. "_left": 0,
  4199. "_right": 0,
  4200. "_top": 90.5,
  4201. "_bottom": 0,
  4202. "_verticalCenter": 0,
  4203. "_horizontalCenter": 0,
  4204. "_isAbsLeft": true,
  4205. "_isAbsRight": true,
  4206. "_isAbsTop": true,
  4207. "_isAbsBottom": true,
  4208. "_isAbsHorizontalCenter": true,
  4209. "_isAbsVerticalCenter": true,
  4210. "_originalWidth": 0,
  4211. "_originalHeight": 0,
  4212. "_id": ""
  4213. },
  4214. {
  4215. "__type__": "cc.PrefabInfo",
  4216. "root": {
  4217. "__id__": 1
  4218. },
  4219. "asset": {
  4220. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  4221. },
  4222. "fileId": "d6aIjixJ5O7oD7sN5q/AUM",
  4223. "sync": false
  4224. },
  4225. {
  4226. "__type__": "cc.Node",
  4227. "_name": "content_1",
  4228. "_objFlags": 0,
  4229. "_parent": {
  4230. "__id__": 113
  4231. },
  4232. "_children": [],
  4233. "_active": true,
  4234. "_level": 1,
  4235. "_components": [
  4236. {
  4237. "__id__": 119
  4238. }
  4239. ],
  4240. "_prefab": {
  4241. "__id__": 120
  4242. },
  4243. "_opacity": 255,
  4244. "_color": {
  4245. "__type__": "cc.Color",
  4246. "r": 0,
  4247. "g": 0,
  4248. "b": 0,
  4249. "a": 255
  4250. },
  4251. "_contentSize": {
  4252. "__type__": "cc.Size",
  4253. "width": 800,
  4254. "height": 120
  4255. },
  4256. "_anchorPoint": {
  4257. "__type__": "cc.Vec2",
  4258. "x": 0.5,
  4259. "y": 0.5
  4260. },
  4261. "_quat": {
  4262. "__type__": "cc.Quat",
  4263. "x": 0,
  4264. "y": 0,
  4265. "z": 0,
  4266. "w": 1
  4267. },
  4268. "_skewX": 0,
  4269. "_skewY": 0,
  4270. "groupIndex": 0,
  4271. "_id": "",
  4272. "_trs": {
  4273. "__type__": "TypedArray",
  4274. "ctor": "Float64Array",
  4275. "array": [
  4276. 0,
  4277. 11,
  4278. 0,
  4279. 0,
  4280. 0,
  4281. 0,
  4282. 1,
  4283. 1,
  4284. 1,
  4285. 1
  4286. ]
  4287. }
  4288. },
  4289. {
  4290. "__type__": "cc.Label",
  4291. "_name": "",
  4292. "_objFlags": 0,
  4293. "node": {
  4294. "__id__": 118
  4295. },
  4296. "_enabled": true,
  4297. "_useOriginalSize": false,
  4298. "_string": "请同意《用户隐私政策》,否则您将无法进入游戏哦!",
  4299. "_N$string": "请同意《用户隐私政策》,否则您将无法进入游戏哦!",
  4300. "_fontSize": 40,
  4301. "_lineHeight": 60,
  4302. "_enableWrapText": true,
  4303. "_N$file": null,
  4304. "_isSystemFontUsed": true,
  4305. "_spacingX": 0,
  4306. "_batchAsBitmap": false,
  4307. "_N$horizontalAlign": 0,
  4308. "_N$verticalAlign": 1,
  4309. "_N$fontFamily": "Arial",
  4310. "_N$overflow": 3,
  4311. "_N$cacheMode": 0,
  4312. "_id": ""
  4313. },
  4314. {
  4315. "__type__": "cc.PrefabInfo",
  4316. "root": {
  4317. "__id__": 1
  4318. },
  4319. "asset": {
  4320. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  4321. },
  4322. "fileId": "d6r5ZA9Y5Mna0wka4Hq1/8",
  4323. "sync": false
  4324. },
  4325. {
  4326. "__type__": "cc.Node",
  4327. "_name": "CancelBtn",
  4328. "_objFlags": 0,
  4329. "_parent": {
  4330. "__id__": 113
  4331. },
  4332. "_children": [
  4333. {
  4334. "__id__": 122
  4335. }
  4336. ],
  4337. "_active": true,
  4338. "_level": 1,
  4339. "_components": [
  4340. {
  4341. "__id__": 129
  4342. },
  4343. {
  4344. "__id__": 131
  4345. }
  4346. ],
  4347. "_prefab": {
  4348. "__id__": 132
  4349. },
  4350. "_opacity": 255,
  4351. "_color": {
  4352. "__type__": "cc.Color",
  4353. "r": 255,
  4354. "g": 255,
  4355. "b": 255,
  4356. "a": 255
  4357. },
  4358. "_contentSize": {
  4359. "__type__": "cc.Size",
  4360. "width": 350,
  4361. "height": 121
  4362. },
  4363. "_anchorPoint": {
  4364. "__type__": "cc.Vec2",
  4365. "x": 0.5,
  4366. "y": 0.5
  4367. },
  4368. "_quat": {
  4369. "__type__": "cc.Quat",
  4370. "x": 0,
  4371. "y": 0,
  4372. "z": 0,
  4373. "w": 1
  4374. },
  4375. "_skewX": 0,
  4376. "_skewY": 0,
  4377. "groupIndex": 0,
  4378. "_id": "",
  4379. "_trs": {
  4380. "__type__": "TypedArray",
  4381. "ctor": "Float64Array",
  4382. "array": [
  4383. -223,
  4384. -164,
  4385. 0,
  4386. 0,
  4387. 0,
  4388. 0,
  4389. 1,
  4390. 1,
  4391. 1,
  4392. 1
  4393. ]
  4394. }
  4395. },
  4396. {
  4397. "__type__": "cc.Node",
  4398. "_name": "Background",
  4399. "_objFlags": 0,
  4400. "_parent": {
  4401. "__id__": 121
  4402. },
  4403. "_children": [
  4404. {
  4405. "__id__": 123
  4406. }
  4407. ],
  4408. "_active": true,
  4409. "_level": 0,
  4410. "_components": [
  4411. {
  4412. "__id__": 126
  4413. },
  4414. {
  4415. "__id__": 127
  4416. }
  4417. ],
  4418. "_prefab": {
  4419. "__id__": 128
  4420. },
  4421. "_opacity": 255,
  4422. "_color": {
  4423. "__type__": "cc.Color",
  4424. "r": 255,
  4425. "g": 255,
  4426. "b": 255,
  4427. "a": 255
  4428. },
  4429. "_contentSize": {
  4430. "__type__": "cc.Size",
  4431. "width": 350,
  4432. "height": 121
  4433. },
  4434. "_anchorPoint": {
  4435. "__type__": "cc.Vec2",
  4436. "x": 0.5,
  4437. "y": 0.5
  4438. },
  4439. "_quat": {
  4440. "__type__": "cc.Quat",
  4441. "x": 0,
  4442. "y": 0,
  4443. "z": 0,
  4444. "w": 1
  4445. },
  4446. "_skewX": 0,
  4447. "_skewY": 0,
  4448. "groupIndex": 0,
  4449. "_id": "",
  4450. "_trs": {
  4451. "__type__": "TypedArray",
  4452. "ctor": "Float64Array",
  4453. "array": [
  4454. 0,
  4455. 0,
  4456. 0,
  4457. 0,
  4458. 0,
  4459. 0,
  4460. 1,
  4461. 1,
  4462. 1,
  4463. 1
  4464. ]
  4465. }
  4466. },
  4467. {
  4468. "__type__": "cc.Node",
  4469. "_name": "Label",
  4470. "_objFlags": 0,
  4471. "_parent": {
  4472. "__id__": 122
  4473. },
  4474. "_children": [],
  4475. "_active": true,
  4476. "_level": 0,
  4477. "_components": [
  4478. {
  4479. "__id__": 124
  4480. }
  4481. ],
  4482. "_prefab": {
  4483. "__id__": 125
  4484. },
  4485. "_opacity": 255,
  4486. "_color": {
  4487. "__type__": "cc.Color",
  4488. "r": 0,
  4489. "g": 0,
  4490. "b": 0,
  4491. "a": 255
  4492. },
  4493. "_contentSize": {
  4494. "__type__": "cc.Size",
  4495. "width": 100,
  4496. "height": 50
  4497. },
  4498. "_anchorPoint": {
  4499. "__type__": "cc.Vec2",
  4500. "x": 0.5,
  4501. "y": 0.5
  4502. },
  4503. "_quat": {
  4504. "__type__": "cc.Quat",
  4505. "x": 0,
  4506. "y": 0,
  4507. "z": 0,
  4508. "w": 1
  4509. },
  4510. "_skewX": 0,
  4511. "_skewY": 0,
  4512. "groupIndex": 0,
  4513. "_id": "",
  4514. "_trs": {
  4515. "__type__": "TypedArray",
  4516. "ctor": "Float64Array",
  4517. "array": [
  4518. 0,
  4519. 0,
  4520. 0,
  4521. 0,
  4522. 0,
  4523. 0,
  4524. 1,
  4525. 1,
  4526. 1,
  4527. 1
  4528. ]
  4529. }
  4530. },
  4531. {
  4532. "__type__": "cc.Label",
  4533. "_name": "",
  4534. "_objFlags": 0,
  4535. "node": {
  4536. "__id__": 123
  4537. },
  4538. "_enabled": true,
  4539. "_useOriginalSize": false,
  4540. "_string": "拒绝",
  4541. "_N$string": "拒绝",
  4542. "_fontSize": 40,
  4543. "_lineHeight": 50,
  4544. "_enableWrapText": false,
  4545. "_N$file": null,
  4546. "_isSystemFontUsed": true,
  4547. "_spacingX": 0,
  4548. "_batchAsBitmap": false,
  4549. "_N$horizontalAlign": 1,
  4550. "_N$verticalAlign": 1,
  4551. "_N$fontFamily": "Arial",
  4552. "_N$overflow": 1,
  4553. "_N$cacheMode": 1,
  4554. "_id": ""
  4555. },
  4556. {
  4557. "__type__": "cc.PrefabInfo",
  4558. "root": {
  4559. "__id__": 1
  4560. },
  4561. "asset": {
  4562. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  4563. },
  4564. "fileId": "bfnZyQ2j5GVoDA/HUDr5+j",
  4565. "sync": false
  4566. },
  4567. {
  4568. "__type__": "cc.Sprite",
  4569. "_name": "",
  4570. "_objFlags": 0,
  4571. "node": {
  4572. "__id__": 122
  4573. },
  4574. "_enabled": true,
  4575. "_spriteFrame": {
  4576. "__uuid__": "0b7132a5-7e69-4797-916f-77ceb276fa4c"
  4577. },
  4578. "_type": 0,
  4579. "_sizeMode": 0,
  4580. "_fillType": 0,
  4581. "_fillCenter": {
  4582. "__type__": "cc.Vec2",
  4583. "x": 0,
  4584. "y": 0
  4585. },
  4586. "_fillStart": 0,
  4587. "_fillRange": 0,
  4588. "_isTrimmedMode": true,
  4589. "_state": 0,
  4590. "_atlas": null,
  4591. "_srcBlendFactor": 770,
  4592. "_dstBlendFactor": 771,
  4593. "_id": ""
  4594. },
  4595. {
  4596. "__type__": "cc.Widget",
  4597. "_name": "",
  4598. "_objFlags": 0,
  4599. "node": {
  4600. "__id__": 122
  4601. },
  4602. "_enabled": true,
  4603. "alignMode": 0,
  4604. "_target": null,
  4605. "_alignFlags": 45,
  4606. "_left": 0,
  4607. "_right": 0,
  4608. "_top": 0,
  4609. "_bottom": 0,
  4610. "_verticalCenter": 0,
  4611. "_horizontalCenter": 0,
  4612. "_isAbsLeft": true,
  4613. "_isAbsRight": true,
  4614. "_isAbsTop": true,
  4615. "_isAbsBottom": true,
  4616. "_isAbsHorizontalCenter": true,
  4617. "_isAbsVerticalCenter": true,
  4618. "_originalWidth": 100,
  4619. "_originalHeight": 40,
  4620. "_id": ""
  4621. },
  4622. {
  4623. "__type__": "cc.PrefabInfo",
  4624. "root": {
  4625. "__id__": 1
  4626. },
  4627. "asset": {
  4628. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  4629. },
  4630. "fileId": "706ahtprROA6JysWgnyDkt",
  4631. "sync": false
  4632. },
  4633. {
  4634. "__type__": "cc.Button",
  4635. "_name": "",
  4636. "_objFlags": 0,
  4637. "node": {
  4638. "__id__": 121
  4639. },
  4640. "_enabled": true,
  4641. "duration": 0.1,
  4642. "zoomScale": 1.2,
  4643. "clickEvents": [
  4644. {
  4645. "__id__": 130
  4646. }
  4647. ],
  4648. "_N$interactable": true,
  4649. "_N$enableAutoGrayEffect": false,
  4650. "_N$transition": 1,
  4651. "transition": 1,
  4652. "_N$normalColor": {
  4653. "__type__": "cc.Color",
  4654. "r": 255,
  4655. "g": 255,
  4656. "b": 255,
  4657. "a": 255
  4658. },
  4659. "_N$pressedColor": {
  4660. "__type__": "cc.Color",
  4661. "r": 200,
  4662. "g": 200,
  4663. "b": 200,
  4664. "a": 255
  4665. },
  4666. "pressedColor": {
  4667. "__type__": "cc.Color",
  4668. "r": 200,
  4669. "g": 200,
  4670. "b": 200,
  4671. "a": 255
  4672. },
  4673. "_N$hoverColor": {
  4674. "__type__": "cc.Color",
  4675. "r": 255,
  4676. "g": 255,
  4677. "b": 255,
  4678. "a": 255
  4679. },
  4680. "hoverColor": {
  4681. "__type__": "cc.Color",
  4682. "r": 255,
  4683. "g": 255,
  4684. "b": 255,
  4685. "a": 255
  4686. },
  4687. "_N$disabledColor": {
  4688. "__type__": "cc.Color",
  4689. "r": 120,
  4690. "g": 120,
  4691. "b": 120,
  4692. "a": 200
  4693. },
  4694. "_N$normalSprite": {
  4695. "__uuid__": "aa15a88e-ff1d-43de-a91e-00bc3e6d46b2"
  4696. },
  4697. "_N$pressedSprite": {
  4698. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4699. },
  4700. "pressedSprite": {
  4701. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4702. },
  4703. "_N$hoverSprite": {
  4704. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4705. },
  4706. "hoverSprite": {
  4707. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4708. },
  4709. "_N$disabledSprite": {
  4710. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  4711. },
  4712. "_N$target": {
  4713. "__id__": 122
  4714. },
  4715. "_id": ""
  4716. },
  4717. {
  4718. "__type__": "cc.ClickEvent",
  4719. "target": {
  4720. "__id__": 1
  4721. },
  4722. "component": "",
  4723. "_componentId": "d0717GZecVL5p3tNcXpk9rY",
  4724. "handler": "onCloseClickListener",
  4725. "customEventData": ""
  4726. },
  4727. {
  4728. "__type__": "cc.Widget",
  4729. "_name": "",
  4730. "_objFlags": 0,
  4731. "node": {
  4732. "__id__": 121
  4733. },
  4734. "_enabled": true,
  4735. "alignMode": 1,
  4736. "_target": null,
  4737. "_alignFlags": 12,
  4738. "_left": 44,
  4739. "_right": 0,
  4740. "_top": 0,
  4741. "_bottom": 42.5,
  4742. "_verticalCenter": 0,
  4743. "_horizontalCenter": 0,
  4744. "_isAbsLeft": true,
  4745. "_isAbsRight": true,
  4746. "_isAbsTop": true,
  4747. "_isAbsBottom": true,
  4748. "_isAbsHorizontalCenter": true,
  4749. "_isAbsVerticalCenter": true,
  4750. "_originalWidth": 0,
  4751. "_originalHeight": 0,
  4752. "_id": ""
  4753. },
  4754. {
  4755. "__type__": "cc.PrefabInfo",
  4756. "root": {
  4757. "__id__": 1
  4758. },
  4759. "asset": {
  4760. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  4761. },
  4762. "fileId": "2cPvgc6u9Pq5ggg8UF2b9t",
  4763. "sync": false
  4764. },
  4765. {
  4766. "__type__": "cc.Node",
  4767. "_name": "OKBtn",
  4768. "_objFlags": 0,
  4769. "_parent": {
  4770. "__id__": 113
  4771. },
  4772. "_children": [
  4773. {
  4774. "__id__": 134
  4775. }
  4776. ],
  4777. "_active": true,
  4778. "_level": 1,
  4779. "_components": [
  4780. {
  4781. "__id__": 141
  4782. },
  4783. {
  4784. "__id__": 143
  4785. }
  4786. ],
  4787. "_prefab": {
  4788. "__id__": 144
  4789. },
  4790. "_opacity": 255,
  4791. "_color": {
  4792. "__type__": "cc.Color",
  4793. "r": 255,
  4794. "g": 255,
  4795. "b": 255,
  4796. "a": 255
  4797. },
  4798. "_contentSize": {
  4799. "__type__": "cc.Size",
  4800. "width": 350,
  4801. "height": 121
  4802. },
  4803. "_anchorPoint": {
  4804. "__type__": "cc.Vec2",
  4805. "x": 0.5,
  4806. "y": 0.5
  4807. },
  4808. "_quat": {
  4809. "__type__": "cc.Quat",
  4810. "x": 0,
  4811. "y": 0,
  4812. "z": 0,
  4813. "w": 1
  4814. },
  4815. "_skewX": 0,
  4816. "_skewY": 0,
  4817. "groupIndex": 0,
  4818. "_id": "",
  4819. "_trs": {
  4820. "__type__": "TypedArray",
  4821. "ctor": "Float64Array",
  4822. "array": [
  4823. 226,
  4824. -165,
  4825. 0,
  4826. 0,
  4827. 0,
  4828. 0,
  4829. 1,
  4830. 1,
  4831. 1,
  4832. 1
  4833. ]
  4834. }
  4835. },
  4836. {
  4837. "__type__": "cc.Node",
  4838. "_name": "Background",
  4839. "_objFlags": 0,
  4840. "_parent": {
  4841. "__id__": 133
  4842. },
  4843. "_children": [
  4844. {
  4845. "__id__": 135
  4846. }
  4847. ],
  4848. "_active": true,
  4849. "_level": 0,
  4850. "_components": [
  4851. {
  4852. "__id__": 138
  4853. },
  4854. {
  4855. "__id__": 139
  4856. }
  4857. ],
  4858. "_prefab": {
  4859. "__id__": 140
  4860. },
  4861. "_opacity": 255,
  4862. "_color": {
  4863. "__type__": "cc.Color",
  4864. "r": 65,
  4865. "g": 143,
  4866. "b": 244,
  4867. "a": 255
  4868. },
  4869. "_contentSize": {
  4870. "__type__": "cc.Size",
  4871. "width": 350,
  4872. "height": 121
  4873. },
  4874. "_anchorPoint": {
  4875. "__type__": "cc.Vec2",
  4876. "x": 0.5,
  4877. "y": 0.5
  4878. },
  4879. "_quat": {
  4880. "__type__": "cc.Quat",
  4881. "x": 0,
  4882. "y": 0,
  4883. "z": 0,
  4884. "w": 1
  4885. },
  4886. "_skewX": 0,
  4887. "_skewY": 0,
  4888. "groupIndex": 0,
  4889. "_id": "",
  4890. "_trs": {
  4891. "__type__": "TypedArray",
  4892. "ctor": "Float64Array",
  4893. "array": [
  4894. 0,
  4895. 0,
  4896. 0,
  4897. 0,
  4898. 0,
  4899. 0,
  4900. 1,
  4901. 1,
  4902. 1,
  4903. 1
  4904. ]
  4905. }
  4906. },
  4907. {
  4908. "__type__": "cc.Node",
  4909. "_name": "Label",
  4910. "_objFlags": 0,
  4911. "_parent": {
  4912. "__id__": 134
  4913. },
  4914. "_children": [],
  4915. "_active": true,
  4916. "_level": 0,
  4917. "_components": [
  4918. {
  4919. "__id__": 136
  4920. }
  4921. ],
  4922. "_prefab": {
  4923. "__id__": 137
  4924. },
  4925. "_opacity": 255,
  4926. "_color": {
  4927. "__type__": "cc.Color",
  4928. "r": 255,
  4929. "g": 255,
  4930. "b": 255,
  4931. "a": 255
  4932. },
  4933. "_contentSize": {
  4934. "__type__": "cc.Size",
  4935. "width": 300,
  4936. "height": 50
  4937. },
  4938. "_anchorPoint": {
  4939. "__type__": "cc.Vec2",
  4940. "x": 0.5,
  4941. "y": 0.5
  4942. },
  4943. "_quat": {
  4944. "__type__": "cc.Quat",
  4945. "x": 0,
  4946. "y": 0,
  4947. "z": 0,
  4948. "w": 1
  4949. },
  4950. "_skewX": 0,
  4951. "_skewY": 0,
  4952. "groupIndex": 0,
  4953. "_id": "",
  4954. "_trs": {
  4955. "__type__": "TypedArray",
  4956. "ctor": "Float64Array",
  4957. "array": [
  4958. 0,
  4959. 0,
  4960. 0,
  4961. 0,
  4962. 0,
  4963. 0,
  4964. 1,
  4965. 1,
  4966. 1,
  4967. 1
  4968. ]
  4969. }
  4970. },
  4971. {
  4972. "__type__": "cc.Label",
  4973. "_name": "",
  4974. "_objFlags": 0,
  4975. "node": {
  4976. "__id__": 135
  4977. },
  4978. "_enabled": true,
  4979. "_useOriginalSize": false,
  4980. "_string": "同意",
  4981. "_N$string": "同意",
  4982. "_fontSize": 40,
  4983. "_lineHeight": 50,
  4984. "_enableWrapText": false,
  4985. "_N$file": null,
  4986. "_isSystemFontUsed": true,
  4987. "_spacingX": 0,
  4988. "_batchAsBitmap": false,
  4989. "_N$horizontalAlign": 1,
  4990. "_N$verticalAlign": 1,
  4991. "_N$fontFamily": "Arial",
  4992. "_N$overflow": 1,
  4993. "_N$cacheMode": 1,
  4994. "_id": ""
  4995. },
  4996. {
  4997. "__type__": "cc.PrefabInfo",
  4998. "root": {
  4999. "__id__": 1
  5000. },
  5001. "asset": {
  5002. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  5003. },
  5004. "fileId": "2cXUt9t7hJyqvSD1I6Z9fa",
  5005. "sync": false
  5006. },
  5007. {
  5008. "__type__": "cc.Sprite",
  5009. "_name": "",
  5010. "_objFlags": 0,
  5011. "node": {
  5012. "__id__": 134
  5013. },
  5014. "_enabled": true,
  5015. "_spriteFrame": {
  5016. "__uuid__": "0b7132a5-7e69-4797-916f-77ceb276fa4c"
  5017. },
  5018. "_type": 0,
  5019. "_sizeMode": 0,
  5020. "_fillType": 0,
  5021. "_fillCenter": {
  5022. "__type__": "cc.Vec2",
  5023. "x": 0,
  5024. "y": 0
  5025. },
  5026. "_fillStart": 0,
  5027. "_fillRange": 0,
  5028. "_isTrimmedMode": true,
  5029. "_state": 0,
  5030. "_atlas": null,
  5031. "_srcBlendFactor": 770,
  5032. "_dstBlendFactor": 771,
  5033. "_id": ""
  5034. },
  5035. {
  5036. "__type__": "cc.Widget",
  5037. "_name": "",
  5038. "_objFlags": 0,
  5039. "node": {
  5040. "__id__": 134
  5041. },
  5042. "_enabled": true,
  5043. "alignMode": 0,
  5044. "_target": null,
  5045. "_alignFlags": 45,
  5046. "_left": 0,
  5047. "_right": 0,
  5048. "_top": 0,
  5049. "_bottom": 0,
  5050. "_verticalCenter": 0,
  5051. "_horizontalCenter": 0,
  5052. "_isAbsLeft": true,
  5053. "_isAbsRight": true,
  5054. "_isAbsTop": true,
  5055. "_isAbsBottom": true,
  5056. "_isAbsHorizontalCenter": true,
  5057. "_isAbsVerticalCenter": true,
  5058. "_originalWidth": 100,
  5059. "_originalHeight": 40,
  5060. "_id": ""
  5061. },
  5062. {
  5063. "__type__": "cc.PrefabInfo",
  5064. "root": {
  5065. "__id__": 1
  5066. },
  5067. "asset": {
  5068. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  5069. },
  5070. "fileId": "b5lSFRuM1PE4P1OWjrFxi+",
  5071. "sync": false
  5072. },
  5073. {
  5074. "__type__": "cc.Button",
  5075. "_name": "",
  5076. "_objFlags": 0,
  5077. "node": {
  5078. "__id__": 133
  5079. },
  5080. "_enabled": true,
  5081. "duration": 0.1,
  5082. "zoomScale": 1.2,
  5083. "clickEvents": [
  5084. {
  5085. "__id__": 142
  5086. }
  5087. ],
  5088. "_N$interactable": true,
  5089. "_N$enableAutoGrayEffect": false,
  5090. "_N$transition": 1,
  5091. "transition": 1,
  5092. "_N$normalColor": {
  5093. "__type__": "cc.Color",
  5094. "r": 65,
  5095. "g": 143,
  5096. "b": 244,
  5097. "a": 255
  5098. },
  5099. "_N$pressedColor": {
  5100. "__type__": "cc.Color",
  5101. "r": 200,
  5102. "g": 200,
  5103. "b": 200,
  5104. "a": 255
  5105. },
  5106. "pressedColor": {
  5107. "__type__": "cc.Color",
  5108. "r": 200,
  5109. "g": 200,
  5110. "b": 200,
  5111. "a": 255
  5112. },
  5113. "_N$hoverColor": {
  5114. "__type__": "cc.Color",
  5115. "r": 200,
  5116. "g": 200,
  5117. "b": 200,
  5118. "a": 255
  5119. },
  5120. "hoverColor": {
  5121. "__type__": "cc.Color",
  5122. "r": 200,
  5123. "g": 200,
  5124. "b": 200,
  5125. "a": 255
  5126. },
  5127. "_N$disabledColor": {
  5128. "__type__": "cc.Color",
  5129. "r": 120,
  5130. "g": 120,
  5131. "b": 120,
  5132. "a": 200
  5133. },
  5134. "_N$normalSprite": {
  5135. "__uuid__": "0b7132a5-7e69-4797-916f-77ceb276fa4c"
  5136. },
  5137. "_N$pressedSprite": {
  5138. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5139. },
  5140. "pressedSprite": {
  5141. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5142. },
  5143. "_N$hoverSprite": {
  5144. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5145. },
  5146. "hoverSprite": {
  5147. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5148. },
  5149. "_N$disabledSprite": {
  5150. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  5151. },
  5152. "_N$target": {
  5153. "__id__": 134
  5154. },
  5155. "_id": ""
  5156. },
  5157. {
  5158. "__type__": "cc.ClickEvent",
  5159. "target": {
  5160. "__id__": 1
  5161. },
  5162. "component": "",
  5163. "_componentId": "d0717GZecVL5p3tNcXpk9rY",
  5164. "handler": "onOKClickListener",
  5165. "customEventData": ""
  5166. },
  5167. {
  5168. "__type__": "cc.Widget",
  5169. "_name": "",
  5170. "_objFlags": 0,
  5171. "node": {
  5172. "__id__": 133
  5173. },
  5174. "_enabled": true,
  5175. "alignMode": 1,
  5176. "_target": null,
  5177. "_alignFlags": 36,
  5178. "_left": 0,
  5179. "_right": 41,
  5180. "_top": 0,
  5181. "_bottom": 41.5,
  5182. "_verticalCenter": 0,
  5183. "_horizontalCenter": 0,
  5184. "_isAbsLeft": true,
  5185. "_isAbsRight": true,
  5186. "_isAbsTop": true,
  5187. "_isAbsBottom": true,
  5188. "_isAbsHorizontalCenter": true,
  5189. "_isAbsVerticalCenter": true,
  5190. "_originalWidth": 0,
  5191. "_originalHeight": 0,
  5192. "_id": ""
  5193. },
  5194. {
  5195. "__type__": "cc.PrefabInfo",
  5196. "root": {
  5197. "__id__": 1
  5198. },
  5199. "asset": {
  5200. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  5201. },
  5202. "fileId": "2eldHYDdFPBrLtWl/sVKDi",
  5203. "sync": false
  5204. },
  5205. {
  5206. "__type__": "cc.Sprite",
  5207. "_name": "",
  5208. "_objFlags": 0,
  5209. "node": {
  5210. "__id__": 113
  5211. },
  5212. "_enabled": true,
  5213. "_spriteFrame": {
  5214. "__uuid__": "e84ecc2f-b130-4763-8bea-d1c80fd607fb"
  5215. },
  5216. "_type": 1,
  5217. "_sizeMode": 0,
  5218. "_fillType": 0,
  5219. "_fillCenter": {
  5220. "__type__": "cc.Vec2",
  5221. "x": 0,
  5222. "y": 0
  5223. },
  5224. "_fillStart": 0,
  5225. "_fillRange": 0,
  5226. "_isTrimmedMode": true,
  5227. "_state": 0,
  5228. "_atlas": {
  5229. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  5230. },
  5231. "_srcBlendFactor": 770,
  5232. "_dstBlendFactor": 771,
  5233. "_id": ""
  5234. },
  5235. {
  5236. "__type__": "cc.PrefabInfo",
  5237. "root": {
  5238. "__id__": 1
  5239. },
  5240. "asset": {
  5241. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  5242. },
  5243. "fileId": "c6oSqtaH5I5K4jA9VAV5zC",
  5244. "sync": false
  5245. },
  5246. {
  5247. "__type__": "cc.Widget",
  5248. "_name": "",
  5249. "_objFlags": 0,
  5250. "node": {
  5251. "__id__": 1
  5252. },
  5253. "_enabled": true,
  5254. "alignMode": 1,
  5255. "_target": null,
  5256. "_alignFlags": 45,
  5257. "_left": 0,
  5258. "_right": 0,
  5259. "_top": 0,
  5260. "_bottom": 0,
  5261. "_verticalCenter": 0,
  5262. "_horizontalCenter": 0,
  5263. "_isAbsLeft": true,
  5264. "_isAbsRight": true,
  5265. "_isAbsTop": true,
  5266. "_isAbsBottom": true,
  5267. "_isAbsHorizontalCenter": true,
  5268. "_isAbsVerticalCenter": true,
  5269. "_originalWidth": 1080,
  5270. "_originalHeight": 1920,
  5271. "_id": ""
  5272. },
  5273. {
  5274. "__type__": "cc.BlockInputEvents",
  5275. "_name": "",
  5276. "_objFlags": 0,
  5277. "node": {
  5278. "__id__": 1
  5279. },
  5280. "_enabled": true,
  5281. "_id": ""
  5282. },
  5283. {
  5284. "__type__": "d0717GZecVL5p3tNcXpk9rY",
  5285. "_name": "",
  5286. "_objFlags": 0,
  5287. "node": {
  5288. "__id__": 1
  5289. },
  5290. "_enabled": true,
  5291. "_id": ""
  5292. },
  5293. {
  5294. "__type__": "cc.PrefabInfo",
  5295. "root": {
  5296. "__id__": 1
  5297. },
  5298. "asset": {
  5299. "__uuid__": "d31cc54e-787f-4ee1-9766-2fbf0e1a3b39"
  5300. },
  5301. "fileId": "e8YeRVyHZFQZfKnJ/FXe9T",
  5302. "sync": false
  5303. }
  5304. ]