win.prefab 87 KB

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