redPacketWithdrawal.prefab 97 KB

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