UIMain.prefab 80 KB

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