Help.prefab 93 KB

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