lottery.prefab 98 KB

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