Turntable.prefab 159 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422
  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. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "Turntable",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 12
  24. },
  25. {
  26. "__id__": 367
  27. },
  28. {
  29. "__id__": 406
  30. },
  31. {
  32. "__id__": 412
  33. },
  34. {
  35. "__id__": 79
  36. },
  37. {
  38. "__id__": 420
  39. }
  40. ],
  41. "_active": true,
  42. "_components": [
  43. {
  44. "__id__": 426
  45. },
  46. {
  47. "__id__": 428
  48. },
  49. {
  50. "__id__": 429
  51. },
  52. {
  53. "__id__": 431
  54. },
  55. {
  56. "__id__": 437
  57. },
  58. {
  59. "__id__": 442
  60. }
  61. ],
  62. "_prefab": {
  63. "__id__": 444
  64. },
  65. "_lpos": {
  66. "__type__": "cc.Vec3",
  67. "x": 0,
  68. "y": 0,
  69. "z": 0
  70. },
  71. "_lrot": {
  72. "__type__": "cc.Quat",
  73. "x": 0,
  74. "y": 0,
  75. "z": 0,
  76. "w": 1
  77. },
  78. "_lscale": {
  79. "__type__": "cc.Vec3",
  80. "x": 1,
  81. "y": 1,
  82. "z": 1
  83. },
  84. "_layer": 1073741824,
  85. "_euler": {
  86. "__type__": "cc.Vec3",
  87. "x": 0,
  88. "y": 0,
  89. "z": 0
  90. },
  91. "_id": ""
  92. },
  93. {
  94. "__type__": "cc.Node",
  95. "_name": "背景",
  96. "_objFlags": 0,
  97. "_parent": {
  98. "__id__": 1
  99. },
  100. "_children": [],
  101. "_active": true,
  102. "_components": [
  103. {
  104. "__id__": 3
  105. },
  106. {
  107. "__id__": 5
  108. },
  109. {
  110. "__id__": 7
  111. },
  112. {
  113. "__id__": 9
  114. }
  115. ],
  116. "_prefab": {
  117. "__id__": 11
  118. },
  119. "_lpos": {
  120. "__type__": "cc.Vec3",
  121. "x": 0,
  122. "y": 0,
  123. "z": 0
  124. },
  125. "_lrot": {
  126. "__type__": "cc.Quat",
  127. "x": 0,
  128. "y": 0,
  129. "z": 0,
  130. "w": 1
  131. },
  132. "_lscale": {
  133. "__type__": "cc.Vec3",
  134. "x": 1,
  135. "y": 1,
  136. "z": 1
  137. },
  138. "_layer": 33554432,
  139. "_euler": {
  140. "__type__": "cc.Vec3",
  141. "x": 0,
  142. "y": 0,
  143. "z": 0
  144. },
  145. "_id": ""
  146. },
  147. {
  148. "__type__": "cc.UITransform",
  149. "_name": "",
  150. "_objFlags": 0,
  151. "node": {
  152. "__id__": 2
  153. },
  154. "_enabled": true,
  155. "__prefab": {
  156. "__id__": 4
  157. },
  158. "_priority": 0,
  159. "_contentSize": {
  160. "__type__": "cc.Size",
  161. "width": 750,
  162. "height": 1334
  163. },
  164. "_anchorPoint": {
  165. "__type__": "cc.Vec2",
  166. "x": 0.5,
  167. "y": 0.5
  168. },
  169. "_id": ""
  170. },
  171. {
  172. "__type__": "cc.CompPrefabInfo",
  173. "fileId": "55pCbtzR5GbojKMArZkfim"
  174. },
  175. {
  176. "__type__": "cc.Sprite",
  177. "_name": "",
  178. "_objFlags": 0,
  179. "node": {
  180. "__id__": 2
  181. },
  182. "_enabled": true,
  183. "__prefab": {
  184. "__id__": 6
  185. },
  186. "_visFlags": 0,
  187. "_customMaterial": null,
  188. "_srcBlendFactor": 2,
  189. "_dstBlendFactor": 4,
  190. "_color": {
  191. "__type__": "cc.Color",
  192. "r": 3,
  193. "g": 3,
  194. "b": 3,
  195. "a": 198
  196. },
  197. "_spriteFrame": {
  198. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941"
  199. },
  200. "_type": 0,
  201. "_fillType": 0,
  202. "_sizeMode": 0,
  203. "_fillCenter": {
  204. "__type__": "cc.Vec2",
  205. "x": 0,
  206. "y": 0
  207. },
  208. "_fillStart": 0,
  209. "_fillRange": 0,
  210. "_isTrimmedMode": true,
  211. "_useGrayscale": false,
  212. "_atlas": null,
  213. "_id": ""
  214. },
  215. {
  216. "__type__": "cc.CompPrefabInfo",
  217. "fileId": "20UGQn4U9GUoln0NJQTkbG"
  218. },
  219. {
  220. "__type__": "cc.BlockInputEvents",
  221. "_name": "",
  222. "_objFlags": 0,
  223. "node": {
  224. "__id__": 2
  225. },
  226. "_enabled": true,
  227. "__prefab": {
  228. "__id__": 8
  229. },
  230. "_id": ""
  231. },
  232. {
  233. "__type__": "cc.CompPrefabInfo",
  234. "fileId": "9ergslSB9Amqzua84Zk0/H"
  235. },
  236. {
  237. "__type__": "cc.Widget",
  238. "_name": "",
  239. "_objFlags": 0,
  240. "node": {
  241. "__id__": 2
  242. },
  243. "_enabled": true,
  244. "__prefab": {
  245. "__id__": 10
  246. },
  247. "_alignFlags": 45,
  248. "_target": null,
  249. "_left": 0,
  250. "_right": 0,
  251. "_top": 0,
  252. "_bottom": 0,
  253. "_horizontalCenter": 0,
  254. "_verticalCenter": 0,
  255. "_isAbsLeft": true,
  256. "_isAbsRight": true,
  257. "_isAbsTop": true,
  258. "_isAbsBottom": true,
  259. "_isAbsHorizontalCenter": true,
  260. "_isAbsVerticalCenter": true,
  261. "_originalWidth": 750,
  262. "_originalHeight": 1344,
  263. "_alignMode": 2,
  264. "_lockFlags": 0,
  265. "_id": ""
  266. },
  267. {
  268. "__type__": "cc.CompPrefabInfo",
  269. "fileId": "feakyFwztHJ5ra0+t/pc7t"
  270. },
  271. {
  272. "__type__": "cc.PrefabInfo",
  273. "root": {
  274. "__id__": 1
  275. },
  276. "asset": {
  277. "__id__": 0
  278. },
  279. "fileId": "1aB96d+i1H/6IFnvNfh6iM"
  280. },
  281. {
  282. "__type__": "cc.Node",
  283. "_name": "幸运抽奖",
  284. "_objFlags": 0,
  285. "_parent": {
  286. "__id__": 1
  287. },
  288. "_children": [
  289. {
  290. "__id__": 13
  291. },
  292. {
  293. "__id__": 67
  294. },
  295. {
  296. "__id__": 188
  297. },
  298. {
  299. "__id__": 308
  300. },
  301. {
  302. "__id__": 314
  303. },
  304. {
  305. "__id__": 338
  306. },
  307. {
  308. "__id__": 348
  309. }
  310. ],
  311. "_active": true,
  312. "_components": [
  313. {
  314. "__id__": 362
  315. },
  316. {
  317. "__id__": 364
  318. }
  319. ],
  320. "_prefab": {
  321. "__id__": 366
  322. },
  323. "_lpos": {
  324. "__type__": "cc.Vec3",
  325. "x": 0,
  326. "y": 100,
  327. "z": 0
  328. },
  329. "_lrot": {
  330. "__type__": "cc.Quat",
  331. "x": 0,
  332. "y": 0,
  333. "z": 0,
  334. "w": 1
  335. },
  336. "_lscale": {
  337. "__type__": "cc.Vec3",
  338. "x": 1,
  339. "y": 1,
  340. "z": 1
  341. },
  342. "_layer": 33554432,
  343. "_euler": {
  344. "__type__": "cc.Vec3",
  345. "x": 0,
  346. "y": 0,
  347. "z": 0
  348. },
  349. "_id": ""
  350. },
  351. {
  352. "__type__": "cc.Node",
  353. "_name": "prizeBg",
  354. "_objFlags": 0,
  355. "_parent": {
  356. "__id__": 12
  357. },
  358. "_children": [
  359. {
  360. "__id__": 14
  361. },
  362. {
  363. "__id__": 20
  364. },
  365. {
  366. "__id__": 26
  367. },
  368. {
  369. "__id__": 32
  370. },
  371. {
  372. "__id__": 38
  373. },
  374. {
  375. "__id__": 44
  376. },
  377. {
  378. "__id__": 50
  379. },
  380. {
  381. "__id__": 56
  382. }
  383. ],
  384. "_active": true,
  385. "_components": [
  386. {
  387. "__id__": 62
  388. },
  389. {
  390. "__id__": 64
  391. }
  392. ],
  393. "_prefab": {
  394. "__id__": 66
  395. },
  396. "_lpos": {
  397. "__type__": "cc.Vec3",
  398. "x": 0,
  399. "y": 0,
  400. "z": 0
  401. },
  402. "_lrot": {
  403. "__type__": "cc.Quat",
  404. "x": 0,
  405. "y": 0,
  406. "z": 0,
  407. "w": 1
  408. },
  409. "_lscale": {
  410. "__type__": "cc.Vec3",
  411. "x": 1,
  412. "y": 1,
  413. "z": 1
  414. },
  415. "_layer": 33554432,
  416. "_euler": {
  417. "__type__": "cc.Vec3",
  418. "x": 0,
  419. "y": 0,
  420. "z": 0
  421. },
  422. "_id": ""
  423. },
  424. {
  425. "__type__": "cc.Node",
  426. "_name": "奖品背景0",
  427. "_objFlags": 0,
  428. "_parent": {
  429. "__id__": 13
  430. },
  431. "_children": [],
  432. "_active": true,
  433. "_components": [
  434. {
  435. "__id__": 15
  436. },
  437. {
  438. "__id__": 17
  439. }
  440. ],
  441. "_prefab": {
  442. "__id__": 19
  443. },
  444. "_lpos": {
  445. "__type__": "cc.Vec3",
  446. "x": -180,
  447. "y": 180,
  448. "z": 0
  449. },
  450. "_lrot": {
  451. "__type__": "cc.Quat",
  452. "x": 0,
  453. "y": 0,
  454. "z": 0,
  455. "w": 1
  456. },
  457. "_lscale": {
  458. "__type__": "cc.Vec3",
  459. "x": 1,
  460. "y": 1,
  461. "z": 1
  462. },
  463. "_layer": 33554432,
  464. "_euler": {
  465. "__type__": "cc.Vec3",
  466. "x": 0,
  467. "y": 0,
  468. "z": 0
  469. },
  470. "_id": ""
  471. },
  472. {
  473. "__type__": "cc.UITransform",
  474. "_name": "",
  475. "_objFlags": 0,
  476. "node": {
  477. "__id__": 14
  478. },
  479. "_enabled": true,
  480. "__prefab": {
  481. "__id__": 16
  482. },
  483. "_priority": 0,
  484. "_contentSize": {
  485. "__type__": "cc.Size",
  486. "width": 170,
  487. "height": 170
  488. },
  489. "_anchorPoint": {
  490. "__type__": "cc.Vec2",
  491. "x": 0.5,
  492. "y": 0.5
  493. },
  494. "_id": ""
  495. },
  496. {
  497. "__type__": "cc.CompPrefabInfo",
  498. "fileId": "f7NISe7HdAD68SLfhnddy8"
  499. },
  500. {
  501. "__type__": "cc.Sprite",
  502. "_name": "",
  503. "_objFlags": 0,
  504. "node": {
  505. "__id__": 14
  506. },
  507. "_enabled": true,
  508. "__prefab": {
  509. "__id__": 18
  510. },
  511. "_visFlags": 0,
  512. "_customMaterial": null,
  513. "_srcBlendFactor": 2,
  514. "_dstBlendFactor": 4,
  515. "_color": {
  516. "__type__": "cc.Color",
  517. "r": 255,
  518. "g": 255,
  519. "b": 255,
  520. "a": 255
  521. },
  522. "_spriteFrame": {
  523. "__uuid__": "450fa764-6f10-414b-9aa3-57da9a7b189e@f9941"
  524. },
  525. "_type": 1,
  526. "_fillType": 0,
  527. "_sizeMode": 1,
  528. "_fillCenter": {
  529. "__type__": "cc.Vec2",
  530. "x": 0,
  531. "y": 0
  532. },
  533. "_fillStart": 0,
  534. "_fillRange": 0,
  535. "_isTrimmedMode": true,
  536. "_useGrayscale": false,
  537. "_atlas": null,
  538. "_id": ""
  539. },
  540. {
  541. "__type__": "cc.CompPrefabInfo",
  542. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  543. },
  544. {
  545. "__type__": "cc.PrefabInfo",
  546. "root": {
  547. "__id__": 1
  548. },
  549. "asset": {
  550. "__id__": 0
  551. },
  552. "fileId": "a7VxgML4RADZ1C47AHoCXn"
  553. },
  554. {
  555. "__type__": "cc.Node",
  556. "_name": "奖品背景1",
  557. "_objFlags": 0,
  558. "_parent": {
  559. "__id__": 13
  560. },
  561. "_children": [],
  562. "_active": true,
  563. "_components": [
  564. {
  565. "__id__": 21
  566. },
  567. {
  568. "__id__": 23
  569. }
  570. ],
  571. "_prefab": {
  572. "__id__": 25
  573. },
  574. "_lpos": {
  575. "__type__": "cc.Vec3",
  576. "x": 0,
  577. "y": 180,
  578. "z": 0
  579. },
  580. "_lrot": {
  581. "__type__": "cc.Quat",
  582. "x": 0,
  583. "y": 0,
  584. "z": 0,
  585. "w": 1
  586. },
  587. "_lscale": {
  588. "__type__": "cc.Vec3",
  589. "x": 1,
  590. "y": 1,
  591. "z": 1
  592. },
  593. "_layer": 33554432,
  594. "_euler": {
  595. "__type__": "cc.Vec3",
  596. "x": 0,
  597. "y": 0,
  598. "z": 0
  599. },
  600. "_id": ""
  601. },
  602. {
  603. "__type__": "cc.UITransform",
  604. "_name": "",
  605. "_objFlags": 0,
  606. "node": {
  607. "__id__": 20
  608. },
  609. "_enabled": true,
  610. "__prefab": {
  611. "__id__": 22
  612. },
  613. "_priority": 0,
  614. "_contentSize": {
  615. "__type__": "cc.Size",
  616. "width": 170,
  617. "height": 170
  618. },
  619. "_anchorPoint": {
  620. "__type__": "cc.Vec2",
  621. "x": 0.5,
  622. "y": 0.5
  623. },
  624. "_id": ""
  625. },
  626. {
  627. "__type__": "cc.CompPrefabInfo",
  628. "fileId": "f7NISe7HdAD68SLfhnddy8"
  629. },
  630. {
  631. "__type__": "cc.Sprite",
  632. "_name": "",
  633. "_objFlags": 0,
  634. "node": {
  635. "__id__": 20
  636. },
  637. "_enabled": true,
  638. "__prefab": {
  639. "__id__": 24
  640. },
  641. "_visFlags": 0,
  642. "_customMaterial": null,
  643. "_srcBlendFactor": 2,
  644. "_dstBlendFactor": 4,
  645. "_color": {
  646. "__type__": "cc.Color",
  647. "r": 255,
  648. "g": 255,
  649. "b": 255,
  650. "a": 255
  651. },
  652. "_spriteFrame": {
  653. "__uuid__": "450fa764-6f10-414b-9aa3-57da9a7b189e@f9941"
  654. },
  655. "_type": 1,
  656. "_fillType": 0,
  657. "_sizeMode": 1,
  658. "_fillCenter": {
  659. "__type__": "cc.Vec2",
  660. "x": 0,
  661. "y": 0
  662. },
  663. "_fillStart": 0,
  664. "_fillRange": 0,
  665. "_isTrimmedMode": true,
  666. "_useGrayscale": false,
  667. "_atlas": null,
  668. "_id": ""
  669. },
  670. {
  671. "__type__": "cc.CompPrefabInfo",
  672. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  673. },
  674. {
  675. "__type__": "cc.PrefabInfo",
  676. "root": {
  677. "__id__": 1
  678. },
  679. "asset": {
  680. "__id__": 0
  681. },
  682. "fileId": "abcJ8i4AND+oC4wIDnMOGm"
  683. },
  684. {
  685. "__type__": "cc.Node",
  686. "_name": "奖品背景2",
  687. "_objFlags": 0,
  688. "_parent": {
  689. "__id__": 13
  690. },
  691. "_children": [],
  692. "_active": true,
  693. "_components": [
  694. {
  695. "__id__": 27
  696. },
  697. {
  698. "__id__": 29
  699. }
  700. ],
  701. "_prefab": {
  702. "__id__": 31
  703. },
  704. "_lpos": {
  705. "__type__": "cc.Vec3",
  706. "x": 180,
  707. "y": 180,
  708. "z": 0
  709. },
  710. "_lrot": {
  711. "__type__": "cc.Quat",
  712. "x": 0,
  713. "y": 0,
  714. "z": 0,
  715. "w": 1
  716. },
  717. "_lscale": {
  718. "__type__": "cc.Vec3",
  719. "x": 1,
  720. "y": 1,
  721. "z": 1
  722. },
  723. "_layer": 33554432,
  724. "_euler": {
  725. "__type__": "cc.Vec3",
  726. "x": 0,
  727. "y": 0,
  728. "z": 0
  729. },
  730. "_id": ""
  731. },
  732. {
  733. "__type__": "cc.UITransform",
  734. "_name": "",
  735. "_objFlags": 0,
  736. "node": {
  737. "__id__": 26
  738. },
  739. "_enabled": true,
  740. "__prefab": {
  741. "__id__": 28
  742. },
  743. "_priority": 0,
  744. "_contentSize": {
  745. "__type__": "cc.Size",
  746. "width": 170,
  747. "height": 170
  748. },
  749. "_anchorPoint": {
  750. "__type__": "cc.Vec2",
  751. "x": 0.5,
  752. "y": 0.5
  753. },
  754. "_id": ""
  755. },
  756. {
  757. "__type__": "cc.CompPrefabInfo",
  758. "fileId": "f7NISe7HdAD68SLfhnddy8"
  759. },
  760. {
  761. "__type__": "cc.Sprite",
  762. "_name": "",
  763. "_objFlags": 0,
  764. "node": {
  765. "__id__": 26
  766. },
  767. "_enabled": true,
  768. "__prefab": {
  769. "__id__": 30
  770. },
  771. "_visFlags": 0,
  772. "_customMaterial": null,
  773. "_srcBlendFactor": 2,
  774. "_dstBlendFactor": 4,
  775. "_color": {
  776. "__type__": "cc.Color",
  777. "r": 255,
  778. "g": 255,
  779. "b": 255,
  780. "a": 255
  781. },
  782. "_spriteFrame": {
  783. "__uuid__": "450fa764-6f10-414b-9aa3-57da9a7b189e@f9941"
  784. },
  785. "_type": 1,
  786. "_fillType": 0,
  787. "_sizeMode": 1,
  788. "_fillCenter": {
  789. "__type__": "cc.Vec2",
  790. "x": 0,
  791. "y": 0
  792. },
  793. "_fillStart": 0,
  794. "_fillRange": 0,
  795. "_isTrimmedMode": true,
  796. "_useGrayscale": false,
  797. "_atlas": null,
  798. "_id": ""
  799. },
  800. {
  801. "__type__": "cc.CompPrefabInfo",
  802. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  803. },
  804. {
  805. "__type__": "cc.PrefabInfo",
  806. "root": {
  807. "__id__": 1
  808. },
  809. "asset": {
  810. "__id__": 0
  811. },
  812. "fileId": "a9O/IsP0tDmYDHJU0311qI"
  813. },
  814. {
  815. "__type__": "cc.Node",
  816. "_name": "奖品背景3",
  817. "_objFlags": 0,
  818. "_parent": {
  819. "__id__": 13
  820. },
  821. "_children": [],
  822. "_active": true,
  823. "_components": [
  824. {
  825. "__id__": 33
  826. },
  827. {
  828. "__id__": 35
  829. }
  830. ],
  831. "_prefab": {
  832. "__id__": 37
  833. },
  834. "_lpos": {
  835. "__type__": "cc.Vec3",
  836. "x": -180,
  837. "y": 0,
  838. "z": 0
  839. },
  840. "_lrot": {
  841. "__type__": "cc.Quat",
  842. "x": 0,
  843. "y": 0,
  844. "z": 0,
  845. "w": 1
  846. },
  847. "_lscale": {
  848. "__type__": "cc.Vec3",
  849. "x": 1,
  850. "y": 1,
  851. "z": 1
  852. },
  853. "_layer": 33554432,
  854. "_euler": {
  855. "__type__": "cc.Vec3",
  856. "x": 0,
  857. "y": 0,
  858. "z": 0
  859. },
  860. "_id": ""
  861. },
  862. {
  863. "__type__": "cc.UITransform",
  864. "_name": "",
  865. "_objFlags": 0,
  866. "node": {
  867. "__id__": 32
  868. },
  869. "_enabled": true,
  870. "__prefab": {
  871. "__id__": 34
  872. },
  873. "_priority": 0,
  874. "_contentSize": {
  875. "__type__": "cc.Size",
  876. "width": 170,
  877. "height": 170
  878. },
  879. "_anchorPoint": {
  880. "__type__": "cc.Vec2",
  881. "x": 0.5,
  882. "y": 0.5
  883. },
  884. "_id": ""
  885. },
  886. {
  887. "__type__": "cc.CompPrefabInfo",
  888. "fileId": "f7NISe7HdAD68SLfhnddy8"
  889. },
  890. {
  891. "__type__": "cc.Sprite",
  892. "_name": "",
  893. "_objFlags": 0,
  894. "node": {
  895. "__id__": 32
  896. },
  897. "_enabled": true,
  898. "__prefab": {
  899. "__id__": 36
  900. },
  901. "_visFlags": 0,
  902. "_customMaterial": null,
  903. "_srcBlendFactor": 2,
  904. "_dstBlendFactor": 4,
  905. "_color": {
  906. "__type__": "cc.Color",
  907. "r": 255,
  908. "g": 255,
  909. "b": 255,
  910. "a": 255
  911. },
  912. "_spriteFrame": {
  913. "__uuid__": "450fa764-6f10-414b-9aa3-57da9a7b189e@f9941"
  914. },
  915. "_type": 1,
  916. "_fillType": 0,
  917. "_sizeMode": 1,
  918. "_fillCenter": {
  919. "__type__": "cc.Vec2",
  920. "x": 0,
  921. "y": 0
  922. },
  923. "_fillStart": 0,
  924. "_fillRange": 0,
  925. "_isTrimmedMode": true,
  926. "_useGrayscale": false,
  927. "_atlas": null,
  928. "_id": ""
  929. },
  930. {
  931. "__type__": "cc.CompPrefabInfo",
  932. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  933. },
  934. {
  935. "__type__": "cc.PrefabInfo",
  936. "root": {
  937. "__id__": 1
  938. },
  939. "asset": {
  940. "__id__": 0
  941. },
  942. "fileId": "8csB2XKGdHsZwmxVjdbAAh"
  943. },
  944. {
  945. "__type__": "cc.Node",
  946. "_name": "奖品背景4",
  947. "_objFlags": 0,
  948. "_parent": {
  949. "__id__": 13
  950. },
  951. "_children": [],
  952. "_active": true,
  953. "_components": [
  954. {
  955. "__id__": 39
  956. },
  957. {
  958. "__id__": 41
  959. }
  960. ],
  961. "_prefab": {
  962. "__id__": 43
  963. },
  964. "_lpos": {
  965. "__type__": "cc.Vec3",
  966. "x": 180,
  967. "y": 0,
  968. "z": 0
  969. },
  970. "_lrot": {
  971. "__type__": "cc.Quat",
  972. "x": 0,
  973. "y": 0,
  974. "z": 0,
  975. "w": 1
  976. },
  977. "_lscale": {
  978. "__type__": "cc.Vec3",
  979. "x": 1,
  980. "y": 1,
  981. "z": 1
  982. },
  983. "_layer": 33554432,
  984. "_euler": {
  985. "__type__": "cc.Vec3",
  986. "x": 0,
  987. "y": 0,
  988. "z": 0
  989. },
  990. "_id": ""
  991. },
  992. {
  993. "__type__": "cc.UITransform",
  994. "_name": "",
  995. "_objFlags": 0,
  996. "node": {
  997. "__id__": 38
  998. },
  999. "_enabled": true,
  1000. "__prefab": {
  1001. "__id__": 40
  1002. },
  1003. "_priority": 0,
  1004. "_contentSize": {
  1005. "__type__": "cc.Size",
  1006. "width": 170,
  1007. "height": 170
  1008. },
  1009. "_anchorPoint": {
  1010. "__type__": "cc.Vec2",
  1011. "x": 0.5,
  1012. "y": 0.5
  1013. },
  1014. "_id": ""
  1015. },
  1016. {
  1017. "__type__": "cc.CompPrefabInfo",
  1018. "fileId": "f7NISe7HdAD68SLfhnddy8"
  1019. },
  1020. {
  1021. "__type__": "cc.Sprite",
  1022. "_name": "",
  1023. "_objFlags": 0,
  1024. "node": {
  1025. "__id__": 38
  1026. },
  1027. "_enabled": true,
  1028. "__prefab": {
  1029. "__id__": 42
  1030. },
  1031. "_visFlags": 0,
  1032. "_customMaterial": null,
  1033. "_srcBlendFactor": 2,
  1034. "_dstBlendFactor": 4,
  1035. "_color": {
  1036. "__type__": "cc.Color",
  1037. "r": 255,
  1038. "g": 255,
  1039. "b": 255,
  1040. "a": 255
  1041. },
  1042. "_spriteFrame": {
  1043. "__uuid__": "450fa764-6f10-414b-9aa3-57da9a7b189e@f9941"
  1044. },
  1045. "_type": 1,
  1046. "_fillType": 0,
  1047. "_sizeMode": 1,
  1048. "_fillCenter": {
  1049. "__type__": "cc.Vec2",
  1050. "x": 0,
  1051. "y": 0
  1052. },
  1053. "_fillStart": 0,
  1054. "_fillRange": 0,
  1055. "_isTrimmedMode": true,
  1056. "_useGrayscale": false,
  1057. "_atlas": null,
  1058. "_id": ""
  1059. },
  1060. {
  1061. "__type__": "cc.CompPrefabInfo",
  1062. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  1063. },
  1064. {
  1065. "__type__": "cc.PrefabInfo",
  1066. "root": {
  1067. "__id__": 1
  1068. },
  1069. "asset": {
  1070. "__id__": 0
  1071. },
  1072. "fileId": "2aoWZnWr1PtY9BWswZ9sYi"
  1073. },
  1074. {
  1075. "__type__": "cc.Node",
  1076. "_name": "奖品背景5",
  1077. "_objFlags": 0,
  1078. "_parent": {
  1079. "__id__": 13
  1080. },
  1081. "_children": [],
  1082. "_active": true,
  1083. "_components": [
  1084. {
  1085. "__id__": 45
  1086. },
  1087. {
  1088. "__id__": 47
  1089. }
  1090. ],
  1091. "_prefab": {
  1092. "__id__": 49
  1093. },
  1094. "_lpos": {
  1095. "__type__": "cc.Vec3",
  1096. "x": -180,
  1097. "y": -180,
  1098. "z": 0
  1099. },
  1100. "_lrot": {
  1101. "__type__": "cc.Quat",
  1102. "x": 0,
  1103. "y": 0,
  1104. "z": 0,
  1105. "w": 1
  1106. },
  1107. "_lscale": {
  1108. "__type__": "cc.Vec3",
  1109. "x": 1,
  1110. "y": 1,
  1111. "z": 1
  1112. },
  1113. "_layer": 33554432,
  1114. "_euler": {
  1115. "__type__": "cc.Vec3",
  1116. "x": 0,
  1117. "y": 0,
  1118. "z": 0
  1119. },
  1120. "_id": ""
  1121. },
  1122. {
  1123. "__type__": "cc.UITransform",
  1124. "_name": "",
  1125. "_objFlags": 0,
  1126. "node": {
  1127. "__id__": 44
  1128. },
  1129. "_enabled": true,
  1130. "__prefab": {
  1131. "__id__": 46
  1132. },
  1133. "_priority": 0,
  1134. "_contentSize": {
  1135. "__type__": "cc.Size",
  1136. "width": 170,
  1137. "height": 170
  1138. },
  1139. "_anchorPoint": {
  1140. "__type__": "cc.Vec2",
  1141. "x": 0.5,
  1142. "y": 0.5
  1143. },
  1144. "_id": ""
  1145. },
  1146. {
  1147. "__type__": "cc.CompPrefabInfo",
  1148. "fileId": "f7NISe7HdAD68SLfhnddy8"
  1149. },
  1150. {
  1151. "__type__": "cc.Sprite",
  1152. "_name": "",
  1153. "_objFlags": 0,
  1154. "node": {
  1155. "__id__": 44
  1156. },
  1157. "_enabled": true,
  1158. "__prefab": {
  1159. "__id__": 48
  1160. },
  1161. "_visFlags": 0,
  1162. "_customMaterial": null,
  1163. "_srcBlendFactor": 2,
  1164. "_dstBlendFactor": 4,
  1165. "_color": {
  1166. "__type__": "cc.Color",
  1167. "r": 255,
  1168. "g": 255,
  1169. "b": 255,
  1170. "a": 255
  1171. },
  1172. "_spriteFrame": {
  1173. "__uuid__": "450fa764-6f10-414b-9aa3-57da9a7b189e@f9941"
  1174. },
  1175. "_type": 1,
  1176. "_fillType": 0,
  1177. "_sizeMode": 1,
  1178. "_fillCenter": {
  1179. "__type__": "cc.Vec2",
  1180. "x": 0,
  1181. "y": 0
  1182. },
  1183. "_fillStart": 0,
  1184. "_fillRange": 0,
  1185. "_isTrimmedMode": true,
  1186. "_useGrayscale": false,
  1187. "_atlas": null,
  1188. "_id": ""
  1189. },
  1190. {
  1191. "__type__": "cc.CompPrefabInfo",
  1192. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  1193. },
  1194. {
  1195. "__type__": "cc.PrefabInfo",
  1196. "root": {
  1197. "__id__": 1
  1198. },
  1199. "asset": {
  1200. "__id__": 0
  1201. },
  1202. "fileId": "42pjRAin1AMYfKVVaukF0B"
  1203. },
  1204. {
  1205. "__type__": "cc.Node",
  1206. "_name": "奖品背景6",
  1207. "_objFlags": 0,
  1208. "_parent": {
  1209. "__id__": 13
  1210. },
  1211. "_children": [],
  1212. "_active": true,
  1213. "_components": [
  1214. {
  1215. "__id__": 51
  1216. },
  1217. {
  1218. "__id__": 53
  1219. }
  1220. ],
  1221. "_prefab": {
  1222. "__id__": 55
  1223. },
  1224. "_lpos": {
  1225. "__type__": "cc.Vec3",
  1226. "x": 0,
  1227. "y": -180,
  1228. "z": 0
  1229. },
  1230. "_lrot": {
  1231. "__type__": "cc.Quat",
  1232. "x": 0,
  1233. "y": 0,
  1234. "z": 0,
  1235. "w": 1
  1236. },
  1237. "_lscale": {
  1238. "__type__": "cc.Vec3",
  1239. "x": 1,
  1240. "y": 1,
  1241. "z": 1
  1242. },
  1243. "_layer": 33554432,
  1244. "_euler": {
  1245. "__type__": "cc.Vec3",
  1246. "x": 0,
  1247. "y": 0,
  1248. "z": 0
  1249. },
  1250. "_id": ""
  1251. },
  1252. {
  1253. "__type__": "cc.UITransform",
  1254. "_name": "",
  1255. "_objFlags": 0,
  1256. "node": {
  1257. "__id__": 50
  1258. },
  1259. "_enabled": true,
  1260. "__prefab": {
  1261. "__id__": 52
  1262. },
  1263. "_priority": 0,
  1264. "_contentSize": {
  1265. "__type__": "cc.Size",
  1266. "width": 170,
  1267. "height": 170
  1268. },
  1269. "_anchorPoint": {
  1270. "__type__": "cc.Vec2",
  1271. "x": 0.5,
  1272. "y": 0.5
  1273. },
  1274. "_id": ""
  1275. },
  1276. {
  1277. "__type__": "cc.CompPrefabInfo",
  1278. "fileId": "f7NISe7HdAD68SLfhnddy8"
  1279. },
  1280. {
  1281. "__type__": "cc.Sprite",
  1282. "_name": "",
  1283. "_objFlags": 0,
  1284. "node": {
  1285. "__id__": 50
  1286. },
  1287. "_enabled": true,
  1288. "__prefab": {
  1289. "__id__": 54
  1290. },
  1291. "_visFlags": 0,
  1292. "_customMaterial": null,
  1293. "_srcBlendFactor": 2,
  1294. "_dstBlendFactor": 4,
  1295. "_color": {
  1296. "__type__": "cc.Color",
  1297. "r": 255,
  1298. "g": 255,
  1299. "b": 255,
  1300. "a": 255
  1301. },
  1302. "_spriteFrame": {
  1303. "__uuid__": "450fa764-6f10-414b-9aa3-57da9a7b189e@f9941"
  1304. },
  1305. "_type": 1,
  1306. "_fillType": 0,
  1307. "_sizeMode": 1,
  1308. "_fillCenter": {
  1309. "__type__": "cc.Vec2",
  1310. "x": 0,
  1311. "y": 0
  1312. },
  1313. "_fillStart": 0,
  1314. "_fillRange": 0,
  1315. "_isTrimmedMode": true,
  1316. "_useGrayscale": false,
  1317. "_atlas": null,
  1318. "_id": ""
  1319. },
  1320. {
  1321. "__type__": "cc.CompPrefabInfo",
  1322. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  1323. },
  1324. {
  1325. "__type__": "cc.PrefabInfo",
  1326. "root": {
  1327. "__id__": 1
  1328. },
  1329. "asset": {
  1330. "__id__": 0
  1331. },
  1332. "fileId": "9f1fGR/DdCvpLrAHfLbW6r"
  1333. },
  1334. {
  1335. "__type__": "cc.Node",
  1336. "_name": "奖品背景7",
  1337. "_objFlags": 0,
  1338. "_parent": {
  1339. "__id__": 13
  1340. },
  1341. "_children": [],
  1342. "_active": true,
  1343. "_components": [
  1344. {
  1345. "__id__": 57
  1346. },
  1347. {
  1348. "__id__": 59
  1349. }
  1350. ],
  1351. "_prefab": {
  1352. "__id__": 61
  1353. },
  1354. "_lpos": {
  1355. "__type__": "cc.Vec3",
  1356. "x": 180,
  1357. "y": -180,
  1358. "z": 0
  1359. },
  1360. "_lrot": {
  1361. "__type__": "cc.Quat",
  1362. "x": 0,
  1363. "y": 0,
  1364. "z": 0,
  1365. "w": 1
  1366. },
  1367. "_lscale": {
  1368. "__type__": "cc.Vec3",
  1369. "x": 1,
  1370. "y": 1,
  1371. "z": 1
  1372. },
  1373. "_layer": 33554432,
  1374. "_euler": {
  1375. "__type__": "cc.Vec3",
  1376. "x": 0,
  1377. "y": 0,
  1378. "z": 0
  1379. },
  1380. "_id": ""
  1381. },
  1382. {
  1383. "__type__": "cc.UITransform",
  1384. "_name": "",
  1385. "_objFlags": 0,
  1386. "node": {
  1387. "__id__": 56
  1388. },
  1389. "_enabled": true,
  1390. "__prefab": {
  1391. "__id__": 58
  1392. },
  1393. "_priority": 0,
  1394. "_contentSize": {
  1395. "__type__": "cc.Size",
  1396. "width": 170,
  1397. "height": 170
  1398. },
  1399. "_anchorPoint": {
  1400. "__type__": "cc.Vec2",
  1401. "x": 0.5,
  1402. "y": 0.5
  1403. },
  1404. "_id": ""
  1405. },
  1406. {
  1407. "__type__": "cc.CompPrefabInfo",
  1408. "fileId": "f7NISe7HdAD68SLfhnddy8"
  1409. },
  1410. {
  1411. "__type__": "cc.Sprite",
  1412. "_name": "",
  1413. "_objFlags": 0,
  1414. "node": {
  1415. "__id__": 56
  1416. },
  1417. "_enabled": true,
  1418. "__prefab": {
  1419. "__id__": 60
  1420. },
  1421. "_visFlags": 0,
  1422. "_customMaterial": null,
  1423. "_srcBlendFactor": 2,
  1424. "_dstBlendFactor": 4,
  1425. "_color": {
  1426. "__type__": "cc.Color",
  1427. "r": 255,
  1428. "g": 255,
  1429. "b": 255,
  1430. "a": 255
  1431. },
  1432. "_spriteFrame": {
  1433. "__uuid__": "450fa764-6f10-414b-9aa3-57da9a7b189e@f9941"
  1434. },
  1435. "_type": 1,
  1436. "_fillType": 0,
  1437. "_sizeMode": 1,
  1438. "_fillCenter": {
  1439. "__type__": "cc.Vec2",
  1440. "x": 0,
  1441. "y": 0
  1442. },
  1443. "_fillStart": 0,
  1444. "_fillRange": 0,
  1445. "_isTrimmedMode": true,
  1446. "_useGrayscale": false,
  1447. "_atlas": null,
  1448. "_id": ""
  1449. },
  1450. {
  1451. "__type__": "cc.CompPrefabInfo",
  1452. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  1453. },
  1454. {
  1455. "__type__": "cc.PrefabInfo",
  1456. "root": {
  1457. "__id__": 1
  1458. },
  1459. "asset": {
  1460. "__id__": 0
  1461. },
  1462. "fileId": "97Fw8Ae+5OdJg/2Jut7epW"
  1463. },
  1464. {
  1465. "__type__": "cc.UITransform",
  1466. "_name": "",
  1467. "_objFlags": 0,
  1468. "node": {
  1469. "__id__": 13
  1470. },
  1471. "_enabled": true,
  1472. "__prefab": {
  1473. "__id__": 63
  1474. },
  1475. "_priority": 0,
  1476. "_contentSize": {
  1477. "__type__": "cc.Size",
  1478. "width": 500,
  1479. "height": 500
  1480. },
  1481. "_anchorPoint": {
  1482. "__type__": "cc.Vec2",
  1483. "x": 0.5,
  1484. "y": 0.5
  1485. },
  1486. "_id": ""
  1487. },
  1488. {
  1489. "__type__": "cc.CompPrefabInfo",
  1490. "fileId": "71F9vsVsZH7ZFd+PpN0azA"
  1491. },
  1492. {
  1493. "__type__": "cc.Layout",
  1494. "_name": "",
  1495. "_objFlags": 0,
  1496. "node": {
  1497. "__id__": 13
  1498. },
  1499. "_enabled": true,
  1500. "__prefab": {
  1501. "__id__": 65
  1502. },
  1503. "_resizeMode": 0,
  1504. "_layoutType": 0,
  1505. "_cellSize": {
  1506. "__type__": "cc.Size",
  1507. "width": 40,
  1508. "height": 40
  1509. },
  1510. "_startAxis": 0,
  1511. "_paddingLeft": 0,
  1512. "_paddingRight": 0,
  1513. "_paddingTop": 0,
  1514. "_paddingBottom": 0,
  1515. "_spacingX": 0,
  1516. "_spacingY": 0,
  1517. "_verticalDirection": 1,
  1518. "_horizontalDirection": 0,
  1519. "_constraint": 0,
  1520. "_constraintNum": 2,
  1521. "_affectedByScale": false,
  1522. "_isAlign": true,
  1523. "_id": ""
  1524. },
  1525. {
  1526. "__type__": "cc.CompPrefabInfo",
  1527. "fileId": "eaGEkmlCpANK+GS6CImtZa"
  1528. },
  1529. {
  1530. "__type__": "cc.PrefabInfo",
  1531. "root": {
  1532. "__id__": 1
  1533. },
  1534. "asset": {
  1535. "__id__": 0
  1536. },
  1537. "fileId": "12Iynl36xOe7goDMJ0D1X6"
  1538. },
  1539. {
  1540. "__type__": "cc.Node",
  1541. "_name": "开奖动画节点",
  1542. "_objFlags": 0,
  1543. "_parent": {
  1544. "__id__": 12
  1545. },
  1546. "_children": [
  1547. {
  1548. "__id__": 68
  1549. },
  1550. {
  1551. "__id__": 85
  1552. },
  1553. {
  1554. "__id__": 91
  1555. },
  1556. {
  1557. "__id__": 97
  1558. },
  1559. {
  1560. "__id__": 103
  1561. },
  1562. {
  1563. "__id__": 109
  1564. },
  1565. {
  1566. "__id__": 115
  1567. },
  1568. {
  1569. "__id__": 121
  1570. },
  1571. {
  1572. "__id__": 127
  1573. },
  1574. {
  1575. "__id__": 133
  1576. },
  1577. {
  1578. "__id__": 139
  1579. },
  1580. {
  1581. "__id__": 145
  1582. },
  1583. {
  1584. "__id__": 151
  1585. },
  1586. {
  1587. "__id__": 157
  1588. },
  1589. {
  1590. "__id__": 163
  1591. },
  1592. {
  1593. "__id__": 169
  1594. },
  1595. {
  1596. "__id__": 175
  1597. }
  1598. ],
  1599. "_active": true,
  1600. "_components": [
  1601. {
  1602. "__id__": 181
  1603. },
  1604. {
  1605. "__id__": 183
  1606. },
  1607. {
  1608. "__id__": 185
  1609. }
  1610. ],
  1611. "_prefab": {
  1612. "__id__": 187
  1613. },
  1614. "_lpos": {
  1615. "__type__": "cc.Vec3",
  1616. "x": 0,
  1617. "y": 0,
  1618. "z": 0
  1619. },
  1620. "_lrot": {
  1621. "__type__": "cc.Quat",
  1622. "x": 0,
  1623. "y": 0,
  1624. "z": 0,
  1625. "w": 1
  1626. },
  1627. "_lscale": {
  1628. "__type__": "cc.Vec3",
  1629. "x": 1,
  1630. "y": 1,
  1631. "z": 1
  1632. },
  1633. "_layer": 33554432,
  1634. "_euler": {
  1635. "__type__": "cc.Vec3",
  1636. "x": 0,
  1637. "y": 0,
  1638. "z": 0
  1639. },
  1640. "_id": ""
  1641. },
  1642. {
  1643. "__type__": "cc.Node",
  1644. "_name": "选中动画图片",
  1645. "_objFlags": 0,
  1646. "_parent": {
  1647. "__id__": 67
  1648. },
  1649. "_children": [],
  1650. "_active": true,
  1651. "_components": [
  1652. {
  1653. "__id__": 69
  1654. },
  1655. {
  1656. "__id__": 71
  1657. },
  1658. {
  1659. "__id__": 73
  1660. },
  1661. {
  1662. "__id__": 75
  1663. }
  1664. ],
  1665. "_prefab": {
  1666. "__id__": 84
  1667. },
  1668. "_lpos": {
  1669. "__type__": "cc.Vec3",
  1670. "x": -180,
  1671. "y": 180,
  1672. "z": 0
  1673. },
  1674. "_lrot": {
  1675. "__type__": "cc.Quat",
  1676. "x": 0,
  1677. "y": 0,
  1678. "z": 0,
  1679. "w": 1
  1680. },
  1681. "_lscale": {
  1682. "__type__": "cc.Vec3",
  1683. "x": 1,
  1684. "y": 1,
  1685. "z": 1
  1686. },
  1687. "_layer": 33554432,
  1688. "_euler": {
  1689. "__type__": "cc.Vec3",
  1690. "x": 0,
  1691. "y": 0,
  1692. "z": 0
  1693. },
  1694. "_id": ""
  1695. },
  1696. {
  1697. "__type__": "cc.UITransform",
  1698. "_name": "",
  1699. "_objFlags": 0,
  1700. "node": {
  1701. "__id__": 68
  1702. },
  1703. "_enabled": true,
  1704. "__prefab": {
  1705. "__id__": 70
  1706. },
  1707. "_priority": 0,
  1708. "_contentSize": {
  1709. "__type__": "cc.Size",
  1710. "width": 170,
  1711. "height": 170
  1712. },
  1713. "_anchorPoint": {
  1714. "__type__": "cc.Vec2",
  1715. "x": 0.5,
  1716. "y": 0.5
  1717. },
  1718. "_id": ""
  1719. },
  1720. {
  1721. "__type__": "cc.CompPrefabInfo",
  1722. "fileId": "f7NISe7HdAD68SLfhnddy8"
  1723. },
  1724. {
  1725. "__type__": "cc.Sprite",
  1726. "_name": "",
  1727. "_objFlags": 0,
  1728. "node": {
  1729. "__id__": 68
  1730. },
  1731. "_enabled": true,
  1732. "__prefab": {
  1733. "__id__": 72
  1734. },
  1735. "_visFlags": 0,
  1736. "_customMaterial": null,
  1737. "_srcBlendFactor": 2,
  1738. "_dstBlendFactor": 4,
  1739. "_color": {
  1740. "__type__": "cc.Color",
  1741. "r": 255,
  1742. "g": 255,
  1743. "b": 255,
  1744. "a": 255
  1745. },
  1746. "_spriteFrame": {
  1747. "__uuid__": "b4447cc6-9dbb-4f3b-8db2-f02847fb7136@f9941"
  1748. },
  1749. "_type": 1,
  1750. "_fillType": 0,
  1751. "_sizeMode": 1,
  1752. "_fillCenter": {
  1753. "__type__": "cc.Vec2",
  1754. "x": 0,
  1755. "y": 0
  1756. },
  1757. "_fillStart": 0,
  1758. "_fillRange": 0,
  1759. "_isTrimmedMode": true,
  1760. "_useGrayscale": false,
  1761. "_atlas": null,
  1762. "_id": ""
  1763. },
  1764. {
  1765. "__type__": "cc.CompPrefabInfo",
  1766. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  1767. },
  1768. {
  1769. "__type__": "cc.Animation",
  1770. "_name": "",
  1771. "_objFlags": 0,
  1772. "node": {
  1773. "__id__": 68
  1774. },
  1775. "_enabled": true,
  1776. "__prefab": {
  1777. "__id__": 74
  1778. },
  1779. "playOnLoad": false,
  1780. "_clips": [
  1781. {
  1782. "__uuid__": "3df10a0e-d2a4-497b-86a2-c6625f802b78"
  1783. },
  1784. {
  1785. "__uuid__": "def9072f-9add-4d1e-ba3b-83c5a29e9438"
  1786. }
  1787. ],
  1788. "_defaultClip": {
  1789. "__uuid__": "def9072f-9add-4d1e-ba3b-83c5a29e9438"
  1790. },
  1791. "_id": ""
  1792. },
  1793. {
  1794. "__type__": "cc.CompPrefabInfo",
  1795. "fileId": "53jMUwppZFT4O91rJQwGAb"
  1796. },
  1797. {
  1798. "__type__": "cae7cbKLC9GtbRBSPu9VAQJ",
  1799. "_name": "",
  1800. "_objFlags": 0,
  1801. "node": {
  1802. "__id__": 68
  1803. },
  1804. "_enabled": true,
  1805. "__prefab": {
  1806. "__id__": 76
  1807. },
  1808. "animation0EndFun": {
  1809. "__id__": 77
  1810. },
  1811. "turntableSound": {
  1812. "__id__": 78
  1813. },
  1814. "_id": ""
  1815. },
  1816. {
  1817. "__type__": "cc.CompPrefabInfo",
  1818. "fileId": "b1tcrgpVVMcI5tH5ryPEkN"
  1819. },
  1820. {
  1821. "__type__": "cc.ClickEvent",
  1822. "target": {
  1823. "__id__": 1
  1824. },
  1825. "component": "",
  1826. "_componentId": "41374oEF8xOm6wIwDuMhGAS",
  1827. "handler": "animationStop",
  1828. "customEventData": ""
  1829. },
  1830. {
  1831. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  1832. "_name": "",
  1833. "_objFlags": 0,
  1834. "node": {
  1835. "__id__": 79
  1836. },
  1837. "_enabled": true,
  1838. "__prefab": {
  1839. "__id__": 83
  1840. },
  1841. "clips": [
  1842. {
  1843. "__uuid__": "88185a1b-6339-487e-9aed-9f6d495fc93c"
  1844. }
  1845. ],
  1846. "_volume": 1,
  1847. "useGlobalVolume": true,
  1848. "playOnLoad": false,
  1849. "playOnTouch": true,
  1850. "oneShot": true,
  1851. "loop": false,
  1852. "_id": ""
  1853. },
  1854. {
  1855. "__type__": "cc.Node",
  1856. "_name": "抽奖音效",
  1857. "_objFlags": 0,
  1858. "_parent": {
  1859. "__id__": 1
  1860. },
  1861. "_children": [],
  1862. "_active": true,
  1863. "_components": [
  1864. {
  1865. "__id__": 80
  1866. },
  1867. {
  1868. "__id__": 78
  1869. }
  1870. ],
  1871. "_prefab": {
  1872. "__id__": 82
  1873. },
  1874. "_lpos": {
  1875. "__type__": "cc.Vec3",
  1876. "x": 0,
  1877. "y": 0,
  1878. "z": 0
  1879. },
  1880. "_lrot": {
  1881. "__type__": "cc.Quat",
  1882. "x": 0,
  1883. "y": 0,
  1884. "z": 0,
  1885. "w": 1
  1886. },
  1887. "_lscale": {
  1888. "__type__": "cc.Vec3",
  1889. "x": 1,
  1890. "y": 1,
  1891. "z": 1
  1892. },
  1893. "_layer": 1073741824,
  1894. "_euler": {
  1895. "__type__": "cc.Vec3",
  1896. "x": 0,
  1897. "y": 0,
  1898. "z": 0
  1899. },
  1900. "_id": ""
  1901. },
  1902. {
  1903. "__type__": "cc.UITransform",
  1904. "_name": "",
  1905. "_objFlags": 0,
  1906. "node": {
  1907. "__id__": 79
  1908. },
  1909. "_enabled": true,
  1910. "__prefab": {
  1911. "__id__": 81
  1912. },
  1913. "_priority": 0,
  1914. "_contentSize": {
  1915. "__type__": "cc.Size",
  1916. "width": 0,
  1917. "height": 0
  1918. },
  1919. "_anchorPoint": {
  1920. "__type__": "cc.Vec2",
  1921. "x": 0.5,
  1922. "y": 0.5
  1923. },
  1924. "_id": ""
  1925. },
  1926. {
  1927. "__type__": "cc.CompPrefabInfo",
  1928. "fileId": "610Hpz+SNKMo4mQnnIMTAh"
  1929. },
  1930. {
  1931. "__type__": "cc.PrefabInfo",
  1932. "root": {
  1933. "__id__": 1
  1934. },
  1935. "asset": {
  1936. "__id__": 0
  1937. },
  1938. "fileId": "10dbTWja9Cy6y7S6gtzgBL"
  1939. },
  1940. {
  1941. "__type__": "cc.CompPrefabInfo",
  1942. "fileId": "a0LopAUbZKrq2N/dHjVmWt"
  1943. },
  1944. {
  1945. "__type__": "cc.PrefabInfo",
  1946. "root": {
  1947. "__id__": 1
  1948. },
  1949. "asset": {
  1950. "__id__": 0
  1951. },
  1952. "fileId": "78zOIPMJxAwb5H03OQmYPp"
  1953. },
  1954. {
  1955. "__type__": "cc.Node",
  1956. "_name": "灯0",
  1957. "_objFlags": 0,
  1958. "_parent": {
  1959. "__id__": 67
  1960. },
  1961. "_children": [],
  1962. "_active": false,
  1963. "_components": [
  1964. {
  1965. "__id__": 86
  1966. },
  1967. {
  1968. "__id__": 88
  1969. }
  1970. ],
  1971. "_prefab": {
  1972. "__id__": 90
  1973. },
  1974. "_lpos": {
  1975. "__type__": "cc.Vec3",
  1976. "x": 231,
  1977. "y": 231,
  1978. "z": 0
  1979. },
  1980. "_lrot": {
  1981. "__type__": "cc.Quat",
  1982. "x": 0,
  1983. "y": 0,
  1984. "z": 0,
  1985. "w": 1
  1986. },
  1987. "_lscale": {
  1988. "__type__": "cc.Vec3",
  1989. "x": 1,
  1990. "y": 1,
  1991. "z": 1
  1992. },
  1993. "_layer": 33554432,
  1994. "_euler": {
  1995. "__type__": "cc.Vec3",
  1996. "x": 0,
  1997. "y": 0,
  1998. "z": 0
  1999. },
  2000. "_id": ""
  2001. },
  2002. {
  2003. "__type__": "cc.UITransform",
  2004. "_name": "",
  2005. "_objFlags": 0,
  2006. "node": {
  2007. "__id__": 85
  2008. },
  2009. "_enabled": true,
  2010. "__prefab": {
  2011. "__id__": 87
  2012. },
  2013. "_priority": 0,
  2014. "_contentSize": {
  2015. "__type__": "cc.Size",
  2016. "width": 25,
  2017. "height": 25
  2018. },
  2019. "_anchorPoint": {
  2020. "__type__": "cc.Vec2",
  2021. "x": 0.5,
  2022. "y": 0.5
  2023. },
  2024. "_id": ""
  2025. },
  2026. {
  2027. "__type__": "cc.CompPrefabInfo",
  2028. "fileId": "f7NISe7HdAD68SLfhnddy8"
  2029. },
  2030. {
  2031. "__type__": "cc.Sprite",
  2032. "_name": "",
  2033. "_objFlags": 0,
  2034. "node": {
  2035. "__id__": 85
  2036. },
  2037. "_enabled": true,
  2038. "__prefab": {
  2039. "__id__": 89
  2040. },
  2041. "_visFlags": 0,
  2042. "_customMaterial": null,
  2043. "_srcBlendFactor": 2,
  2044. "_dstBlendFactor": 4,
  2045. "_color": {
  2046. "__type__": "cc.Color",
  2047. "r": 255,
  2048. "g": 255,
  2049. "b": 255,
  2050. "a": 255
  2051. },
  2052. "_spriteFrame": null,
  2053. "_type": 0,
  2054. "_fillType": 0,
  2055. "_sizeMode": 0,
  2056. "_fillCenter": {
  2057. "__type__": "cc.Vec2",
  2058. "x": 0,
  2059. "y": 0
  2060. },
  2061. "_fillStart": 0,
  2062. "_fillRange": 0,
  2063. "_isTrimmedMode": true,
  2064. "_useGrayscale": false,
  2065. "_atlas": null,
  2066. "_id": ""
  2067. },
  2068. {
  2069. "__type__": "cc.CompPrefabInfo",
  2070. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  2071. },
  2072. {
  2073. "__type__": "cc.PrefabInfo",
  2074. "root": {
  2075. "__id__": 1
  2076. },
  2077. "asset": {
  2078. "__id__": 0
  2079. },
  2080. "fileId": "79QZnXBPVCh6KwZv7bCend"
  2081. },
  2082. {
  2083. "__type__": "cc.Node",
  2084. "_name": "灯1",
  2085. "_objFlags": 0,
  2086. "_parent": {
  2087. "__id__": 67
  2088. },
  2089. "_children": [],
  2090. "_active": false,
  2091. "_components": [
  2092. {
  2093. "__id__": 92
  2094. },
  2095. {
  2096. "__id__": 94
  2097. }
  2098. ],
  2099. "_prefab": {
  2100. "__id__": 96
  2101. },
  2102. "_lpos": {
  2103. "__type__": "cc.Vec3",
  2104. "x": 237.5,
  2105. "y": 119.75,
  2106. "z": 0
  2107. },
  2108. "_lrot": {
  2109. "__type__": "cc.Quat",
  2110. "x": 0,
  2111. "y": 0,
  2112. "z": 0,
  2113. "w": 1
  2114. },
  2115. "_lscale": {
  2116. "__type__": "cc.Vec3",
  2117. "x": 1,
  2118. "y": 1,
  2119. "z": 1
  2120. },
  2121. "_layer": 33554432,
  2122. "_euler": {
  2123. "__type__": "cc.Vec3",
  2124. "x": 0,
  2125. "y": 0,
  2126. "z": 0
  2127. },
  2128. "_id": ""
  2129. },
  2130. {
  2131. "__type__": "cc.UITransform",
  2132. "_name": "",
  2133. "_objFlags": 0,
  2134. "node": {
  2135. "__id__": 91
  2136. },
  2137. "_enabled": true,
  2138. "__prefab": {
  2139. "__id__": 93
  2140. },
  2141. "_priority": 0,
  2142. "_contentSize": {
  2143. "__type__": "cc.Size",
  2144. "width": 25,
  2145. "height": 25
  2146. },
  2147. "_anchorPoint": {
  2148. "__type__": "cc.Vec2",
  2149. "x": 0.5,
  2150. "y": 0.5
  2151. },
  2152. "_id": ""
  2153. },
  2154. {
  2155. "__type__": "cc.CompPrefabInfo",
  2156. "fileId": "f7NISe7HdAD68SLfhnddy8"
  2157. },
  2158. {
  2159. "__type__": "cc.Sprite",
  2160. "_name": "",
  2161. "_objFlags": 0,
  2162. "node": {
  2163. "__id__": 91
  2164. },
  2165. "_enabled": true,
  2166. "__prefab": {
  2167. "__id__": 95
  2168. },
  2169. "_visFlags": 0,
  2170. "_customMaterial": null,
  2171. "_srcBlendFactor": 2,
  2172. "_dstBlendFactor": 4,
  2173. "_color": {
  2174. "__type__": "cc.Color",
  2175. "r": 255,
  2176. "g": 255,
  2177. "b": 255,
  2178. "a": 255
  2179. },
  2180. "_spriteFrame": null,
  2181. "_type": 0,
  2182. "_fillType": 0,
  2183. "_sizeMode": 0,
  2184. "_fillCenter": {
  2185. "__type__": "cc.Vec2",
  2186. "x": 0,
  2187. "y": 0
  2188. },
  2189. "_fillStart": 0,
  2190. "_fillRange": 0,
  2191. "_isTrimmedMode": true,
  2192. "_useGrayscale": false,
  2193. "_atlas": null,
  2194. "_id": ""
  2195. },
  2196. {
  2197. "__type__": "cc.CompPrefabInfo",
  2198. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  2199. },
  2200. {
  2201. "__type__": "cc.PrefabInfo",
  2202. "root": {
  2203. "__id__": 1
  2204. },
  2205. "asset": {
  2206. "__id__": 0
  2207. },
  2208. "fileId": "ecLEWH6gtN1bm1QdyujAj4"
  2209. },
  2210. {
  2211. "__type__": "cc.Node",
  2212. "_name": "灯2",
  2213. "_objFlags": 0,
  2214. "_parent": {
  2215. "__id__": 67
  2216. },
  2217. "_children": [],
  2218. "_active": false,
  2219. "_components": [
  2220. {
  2221. "__id__": 98
  2222. },
  2223. {
  2224. "__id__": 100
  2225. }
  2226. ],
  2227. "_prefab": {
  2228. "__id__": 102
  2229. },
  2230. "_lpos": {
  2231. "__type__": "cc.Vec3",
  2232. "x": 237.5,
  2233. "y": 0,
  2234. "z": 0
  2235. },
  2236. "_lrot": {
  2237. "__type__": "cc.Quat",
  2238. "x": 0,
  2239. "y": 0,
  2240. "z": 0,
  2241. "w": 1
  2242. },
  2243. "_lscale": {
  2244. "__type__": "cc.Vec3",
  2245. "x": 1,
  2246. "y": 1,
  2247. "z": 1
  2248. },
  2249. "_layer": 33554432,
  2250. "_euler": {
  2251. "__type__": "cc.Vec3",
  2252. "x": 0,
  2253. "y": 0,
  2254. "z": 0
  2255. },
  2256. "_id": ""
  2257. },
  2258. {
  2259. "__type__": "cc.UITransform",
  2260. "_name": "",
  2261. "_objFlags": 0,
  2262. "node": {
  2263. "__id__": 97
  2264. },
  2265. "_enabled": true,
  2266. "__prefab": {
  2267. "__id__": 99
  2268. },
  2269. "_priority": 0,
  2270. "_contentSize": {
  2271. "__type__": "cc.Size",
  2272. "width": 25,
  2273. "height": 25
  2274. },
  2275. "_anchorPoint": {
  2276. "__type__": "cc.Vec2",
  2277. "x": 0.5,
  2278. "y": 0.5
  2279. },
  2280. "_id": ""
  2281. },
  2282. {
  2283. "__type__": "cc.CompPrefabInfo",
  2284. "fileId": "f7NISe7HdAD68SLfhnddy8"
  2285. },
  2286. {
  2287. "__type__": "cc.Sprite",
  2288. "_name": "",
  2289. "_objFlags": 0,
  2290. "node": {
  2291. "__id__": 97
  2292. },
  2293. "_enabled": true,
  2294. "__prefab": {
  2295. "__id__": 101
  2296. },
  2297. "_visFlags": 0,
  2298. "_customMaterial": null,
  2299. "_srcBlendFactor": 2,
  2300. "_dstBlendFactor": 4,
  2301. "_color": {
  2302. "__type__": "cc.Color",
  2303. "r": 255,
  2304. "g": 255,
  2305. "b": 255,
  2306. "a": 255
  2307. },
  2308. "_spriteFrame": null,
  2309. "_type": 0,
  2310. "_fillType": 0,
  2311. "_sizeMode": 0,
  2312. "_fillCenter": {
  2313. "__type__": "cc.Vec2",
  2314. "x": 0,
  2315. "y": 0
  2316. },
  2317. "_fillStart": 0,
  2318. "_fillRange": 0,
  2319. "_isTrimmedMode": true,
  2320. "_useGrayscale": false,
  2321. "_atlas": null,
  2322. "_id": ""
  2323. },
  2324. {
  2325. "__type__": "cc.CompPrefabInfo",
  2326. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  2327. },
  2328. {
  2329. "__type__": "cc.PrefabInfo",
  2330. "root": {
  2331. "__id__": 1
  2332. },
  2333. "asset": {
  2334. "__id__": 0
  2335. },
  2336. "fileId": "6d2zRmW5pAbqn4c4C6D2dl"
  2337. },
  2338. {
  2339. "__type__": "cc.Node",
  2340. "_name": "灯3",
  2341. "_objFlags": 0,
  2342. "_parent": {
  2343. "__id__": 67
  2344. },
  2345. "_children": [],
  2346. "_active": false,
  2347. "_components": [
  2348. {
  2349. "__id__": 104
  2350. },
  2351. {
  2352. "__id__": 106
  2353. }
  2354. ],
  2355. "_prefab": {
  2356. "__id__": 108
  2357. },
  2358. "_lpos": {
  2359. "__type__": "cc.Vec3",
  2360. "x": 237.5,
  2361. "y": -119.75,
  2362. "z": 0
  2363. },
  2364. "_lrot": {
  2365. "__type__": "cc.Quat",
  2366. "x": 0,
  2367. "y": 0,
  2368. "z": 0,
  2369. "w": 1
  2370. },
  2371. "_lscale": {
  2372. "__type__": "cc.Vec3",
  2373. "x": 1,
  2374. "y": 1,
  2375. "z": 1
  2376. },
  2377. "_layer": 33554432,
  2378. "_euler": {
  2379. "__type__": "cc.Vec3",
  2380. "x": 0,
  2381. "y": 0,
  2382. "z": 0
  2383. },
  2384. "_id": ""
  2385. },
  2386. {
  2387. "__type__": "cc.UITransform",
  2388. "_name": "",
  2389. "_objFlags": 0,
  2390. "node": {
  2391. "__id__": 103
  2392. },
  2393. "_enabled": true,
  2394. "__prefab": {
  2395. "__id__": 105
  2396. },
  2397. "_priority": 0,
  2398. "_contentSize": {
  2399. "__type__": "cc.Size",
  2400. "width": 25,
  2401. "height": 25
  2402. },
  2403. "_anchorPoint": {
  2404. "__type__": "cc.Vec2",
  2405. "x": 0.5,
  2406. "y": 0.5
  2407. },
  2408. "_id": ""
  2409. },
  2410. {
  2411. "__type__": "cc.CompPrefabInfo",
  2412. "fileId": "f7NISe7HdAD68SLfhnddy8"
  2413. },
  2414. {
  2415. "__type__": "cc.Sprite",
  2416. "_name": "",
  2417. "_objFlags": 0,
  2418. "node": {
  2419. "__id__": 103
  2420. },
  2421. "_enabled": true,
  2422. "__prefab": {
  2423. "__id__": 107
  2424. },
  2425. "_visFlags": 0,
  2426. "_customMaterial": null,
  2427. "_srcBlendFactor": 2,
  2428. "_dstBlendFactor": 4,
  2429. "_color": {
  2430. "__type__": "cc.Color",
  2431. "r": 255,
  2432. "g": 255,
  2433. "b": 255,
  2434. "a": 255
  2435. },
  2436. "_spriteFrame": null,
  2437. "_type": 0,
  2438. "_fillType": 0,
  2439. "_sizeMode": 0,
  2440. "_fillCenter": {
  2441. "__type__": "cc.Vec2",
  2442. "x": 0,
  2443. "y": 0
  2444. },
  2445. "_fillStart": 0,
  2446. "_fillRange": 0,
  2447. "_isTrimmedMode": true,
  2448. "_useGrayscale": false,
  2449. "_atlas": null,
  2450. "_id": ""
  2451. },
  2452. {
  2453. "__type__": "cc.CompPrefabInfo",
  2454. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  2455. },
  2456. {
  2457. "__type__": "cc.PrefabInfo",
  2458. "root": {
  2459. "__id__": 1
  2460. },
  2461. "asset": {
  2462. "__id__": 0
  2463. },
  2464. "fileId": "31+rWfDHNPGqBVKNi4aEf/"
  2465. },
  2466. {
  2467. "__type__": "cc.Node",
  2468. "_name": "灯4",
  2469. "_objFlags": 0,
  2470. "_parent": {
  2471. "__id__": 67
  2472. },
  2473. "_children": [],
  2474. "_active": false,
  2475. "_components": [
  2476. {
  2477. "__id__": 110
  2478. },
  2479. {
  2480. "__id__": 112
  2481. }
  2482. ],
  2483. "_prefab": {
  2484. "__id__": 114
  2485. },
  2486. "_lpos": {
  2487. "__type__": "cc.Vec3",
  2488. "x": 231,
  2489. "y": -231,
  2490. "z": 0
  2491. },
  2492. "_lrot": {
  2493. "__type__": "cc.Quat",
  2494. "x": 0,
  2495. "y": 0,
  2496. "z": 0,
  2497. "w": 1
  2498. },
  2499. "_lscale": {
  2500. "__type__": "cc.Vec3",
  2501. "x": 1,
  2502. "y": 1,
  2503. "z": 1
  2504. },
  2505. "_layer": 33554432,
  2506. "_euler": {
  2507. "__type__": "cc.Vec3",
  2508. "x": 0,
  2509. "y": 0,
  2510. "z": 0
  2511. },
  2512. "_id": ""
  2513. },
  2514. {
  2515. "__type__": "cc.UITransform",
  2516. "_name": "",
  2517. "_objFlags": 0,
  2518. "node": {
  2519. "__id__": 109
  2520. },
  2521. "_enabled": true,
  2522. "__prefab": {
  2523. "__id__": 111
  2524. },
  2525. "_priority": 0,
  2526. "_contentSize": {
  2527. "__type__": "cc.Size",
  2528. "width": 25,
  2529. "height": 25
  2530. },
  2531. "_anchorPoint": {
  2532. "__type__": "cc.Vec2",
  2533. "x": 0.5,
  2534. "y": 0.5
  2535. },
  2536. "_id": ""
  2537. },
  2538. {
  2539. "__type__": "cc.CompPrefabInfo",
  2540. "fileId": "f7NISe7HdAD68SLfhnddy8"
  2541. },
  2542. {
  2543. "__type__": "cc.Sprite",
  2544. "_name": "",
  2545. "_objFlags": 0,
  2546. "node": {
  2547. "__id__": 109
  2548. },
  2549. "_enabled": true,
  2550. "__prefab": {
  2551. "__id__": 113
  2552. },
  2553. "_visFlags": 0,
  2554. "_customMaterial": null,
  2555. "_srcBlendFactor": 2,
  2556. "_dstBlendFactor": 4,
  2557. "_color": {
  2558. "__type__": "cc.Color",
  2559. "r": 255,
  2560. "g": 255,
  2561. "b": 255,
  2562. "a": 255
  2563. },
  2564. "_spriteFrame": null,
  2565. "_type": 0,
  2566. "_fillType": 0,
  2567. "_sizeMode": 0,
  2568. "_fillCenter": {
  2569. "__type__": "cc.Vec2",
  2570. "x": 0,
  2571. "y": 0
  2572. },
  2573. "_fillStart": 0,
  2574. "_fillRange": 0,
  2575. "_isTrimmedMode": true,
  2576. "_useGrayscale": false,
  2577. "_atlas": null,
  2578. "_id": ""
  2579. },
  2580. {
  2581. "__type__": "cc.CompPrefabInfo",
  2582. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  2583. },
  2584. {
  2585. "__type__": "cc.PrefabInfo",
  2586. "root": {
  2587. "__id__": 1
  2588. },
  2589. "asset": {
  2590. "__id__": 0
  2591. },
  2592. "fileId": "31VF5y36lJc4fRjuU/qOLw"
  2593. },
  2594. {
  2595. "__type__": "cc.Node",
  2596. "_name": "灯5",
  2597. "_objFlags": 0,
  2598. "_parent": {
  2599. "__id__": 67
  2600. },
  2601. "_children": [],
  2602. "_active": false,
  2603. "_components": [
  2604. {
  2605. "__id__": 116
  2606. },
  2607. {
  2608. "__id__": 118
  2609. }
  2610. ],
  2611. "_prefab": {
  2612. "__id__": 120
  2613. },
  2614. "_lpos": {
  2615. "__type__": "cc.Vec3",
  2616. "x": 119.75,
  2617. "y": -237.5,
  2618. "z": 0
  2619. },
  2620. "_lrot": {
  2621. "__type__": "cc.Quat",
  2622. "x": 0,
  2623. "y": 0,
  2624. "z": 0,
  2625. "w": 1
  2626. },
  2627. "_lscale": {
  2628. "__type__": "cc.Vec3",
  2629. "x": 1,
  2630. "y": 1,
  2631. "z": 1
  2632. },
  2633. "_layer": 33554432,
  2634. "_euler": {
  2635. "__type__": "cc.Vec3",
  2636. "x": 0,
  2637. "y": 0,
  2638. "z": 0
  2639. },
  2640. "_id": ""
  2641. },
  2642. {
  2643. "__type__": "cc.UITransform",
  2644. "_name": "",
  2645. "_objFlags": 0,
  2646. "node": {
  2647. "__id__": 115
  2648. },
  2649. "_enabled": true,
  2650. "__prefab": {
  2651. "__id__": 117
  2652. },
  2653. "_priority": 0,
  2654. "_contentSize": {
  2655. "__type__": "cc.Size",
  2656. "width": 25,
  2657. "height": 25
  2658. },
  2659. "_anchorPoint": {
  2660. "__type__": "cc.Vec2",
  2661. "x": 0.5,
  2662. "y": 0.5
  2663. },
  2664. "_id": ""
  2665. },
  2666. {
  2667. "__type__": "cc.CompPrefabInfo",
  2668. "fileId": "f7NISe7HdAD68SLfhnddy8"
  2669. },
  2670. {
  2671. "__type__": "cc.Sprite",
  2672. "_name": "",
  2673. "_objFlags": 0,
  2674. "node": {
  2675. "__id__": 115
  2676. },
  2677. "_enabled": true,
  2678. "__prefab": {
  2679. "__id__": 119
  2680. },
  2681. "_visFlags": 0,
  2682. "_customMaterial": null,
  2683. "_srcBlendFactor": 2,
  2684. "_dstBlendFactor": 4,
  2685. "_color": {
  2686. "__type__": "cc.Color",
  2687. "r": 255,
  2688. "g": 255,
  2689. "b": 255,
  2690. "a": 255
  2691. },
  2692. "_spriteFrame": null,
  2693. "_type": 0,
  2694. "_fillType": 0,
  2695. "_sizeMode": 0,
  2696. "_fillCenter": {
  2697. "__type__": "cc.Vec2",
  2698. "x": 0,
  2699. "y": 0
  2700. },
  2701. "_fillStart": 0,
  2702. "_fillRange": 0,
  2703. "_isTrimmedMode": true,
  2704. "_useGrayscale": false,
  2705. "_atlas": null,
  2706. "_id": ""
  2707. },
  2708. {
  2709. "__type__": "cc.CompPrefabInfo",
  2710. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  2711. },
  2712. {
  2713. "__type__": "cc.PrefabInfo",
  2714. "root": {
  2715. "__id__": 1
  2716. },
  2717. "asset": {
  2718. "__id__": 0
  2719. },
  2720. "fileId": "5cE/xlgUhGaa1LkOhndKpn"
  2721. },
  2722. {
  2723. "__type__": "cc.Node",
  2724. "_name": "灯6",
  2725. "_objFlags": 0,
  2726. "_parent": {
  2727. "__id__": 67
  2728. },
  2729. "_children": [],
  2730. "_active": false,
  2731. "_components": [
  2732. {
  2733. "__id__": 122
  2734. },
  2735. {
  2736. "__id__": 124
  2737. }
  2738. ],
  2739. "_prefab": {
  2740. "__id__": 126
  2741. },
  2742. "_lpos": {
  2743. "__type__": "cc.Vec3",
  2744. "x": 0,
  2745. "y": -237.5,
  2746. "z": 0
  2747. },
  2748. "_lrot": {
  2749. "__type__": "cc.Quat",
  2750. "x": 0,
  2751. "y": 0,
  2752. "z": 0,
  2753. "w": 1
  2754. },
  2755. "_lscale": {
  2756. "__type__": "cc.Vec3",
  2757. "x": 1,
  2758. "y": 1,
  2759. "z": 1
  2760. },
  2761. "_layer": 33554432,
  2762. "_euler": {
  2763. "__type__": "cc.Vec3",
  2764. "x": 0,
  2765. "y": 0,
  2766. "z": 0
  2767. },
  2768. "_id": ""
  2769. },
  2770. {
  2771. "__type__": "cc.UITransform",
  2772. "_name": "",
  2773. "_objFlags": 0,
  2774. "node": {
  2775. "__id__": 121
  2776. },
  2777. "_enabled": true,
  2778. "__prefab": {
  2779. "__id__": 123
  2780. },
  2781. "_priority": 0,
  2782. "_contentSize": {
  2783. "__type__": "cc.Size",
  2784. "width": 25,
  2785. "height": 25
  2786. },
  2787. "_anchorPoint": {
  2788. "__type__": "cc.Vec2",
  2789. "x": 0.5,
  2790. "y": 0.5
  2791. },
  2792. "_id": ""
  2793. },
  2794. {
  2795. "__type__": "cc.CompPrefabInfo",
  2796. "fileId": "f7NISe7HdAD68SLfhnddy8"
  2797. },
  2798. {
  2799. "__type__": "cc.Sprite",
  2800. "_name": "",
  2801. "_objFlags": 0,
  2802. "node": {
  2803. "__id__": 121
  2804. },
  2805. "_enabled": true,
  2806. "__prefab": {
  2807. "__id__": 125
  2808. },
  2809. "_visFlags": 0,
  2810. "_customMaterial": null,
  2811. "_srcBlendFactor": 2,
  2812. "_dstBlendFactor": 4,
  2813. "_color": {
  2814. "__type__": "cc.Color",
  2815. "r": 255,
  2816. "g": 255,
  2817. "b": 255,
  2818. "a": 255
  2819. },
  2820. "_spriteFrame": null,
  2821. "_type": 0,
  2822. "_fillType": 0,
  2823. "_sizeMode": 0,
  2824. "_fillCenter": {
  2825. "__type__": "cc.Vec2",
  2826. "x": 0,
  2827. "y": 0
  2828. },
  2829. "_fillStart": 0,
  2830. "_fillRange": 0,
  2831. "_isTrimmedMode": true,
  2832. "_useGrayscale": false,
  2833. "_atlas": null,
  2834. "_id": ""
  2835. },
  2836. {
  2837. "__type__": "cc.CompPrefabInfo",
  2838. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  2839. },
  2840. {
  2841. "__type__": "cc.PrefabInfo",
  2842. "root": {
  2843. "__id__": 1
  2844. },
  2845. "asset": {
  2846. "__id__": 0
  2847. },
  2848. "fileId": "3022cw2LlJkplCaItRD37x"
  2849. },
  2850. {
  2851. "__type__": "cc.Node",
  2852. "_name": "灯7",
  2853. "_objFlags": 0,
  2854. "_parent": {
  2855. "__id__": 67
  2856. },
  2857. "_children": [],
  2858. "_active": false,
  2859. "_components": [
  2860. {
  2861. "__id__": 128
  2862. },
  2863. {
  2864. "__id__": 130
  2865. }
  2866. ],
  2867. "_prefab": {
  2868. "__id__": 132
  2869. },
  2870. "_lpos": {
  2871. "__type__": "cc.Vec3",
  2872. "x": -119.75,
  2873. "y": -237.5,
  2874. "z": 0
  2875. },
  2876. "_lrot": {
  2877. "__type__": "cc.Quat",
  2878. "x": 0,
  2879. "y": 0,
  2880. "z": 0,
  2881. "w": 1
  2882. },
  2883. "_lscale": {
  2884. "__type__": "cc.Vec3",
  2885. "x": 1,
  2886. "y": 1,
  2887. "z": 1
  2888. },
  2889. "_layer": 33554432,
  2890. "_euler": {
  2891. "__type__": "cc.Vec3",
  2892. "x": 0,
  2893. "y": 0,
  2894. "z": 0
  2895. },
  2896. "_id": ""
  2897. },
  2898. {
  2899. "__type__": "cc.UITransform",
  2900. "_name": "",
  2901. "_objFlags": 0,
  2902. "node": {
  2903. "__id__": 127
  2904. },
  2905. "_enabled": true,
  2906. "__prefab": {
  2907. "__id__": 129
  2908. },
  2909. "_priority": 0,
  2910. "_contentSize": {
  2911. "__type__": "cc.Size",
  2912. "width": 25,
  2913. "height": 25
  2914. },
  2915. "_anchorPoint": {
  2916. "__type__": "cc.Vec2",
  2917. "x": 0.5,
  2918. "y": 0.5
  2919. },
  2920. "_id": ""
  2921. },
  2922. {
  2923. "__type__": "cc.CompPrefabInfo",
  2924. "fileId": "f7NISe7HdAD68SLfhnddy8"
  2925. },
  2926. {
  2927. "__type__": "cc.Sprite",
  2928. "_name": "",
  2929. "_objFlags": 0,
  2930. "node": {
  2931. "__id__": 127
  2932. },
  2933. "_enabled": true,
  2934. "__prefab": {
  2935. "__id__": 131
  2936. },
  2937. "_visFlags": 0,
  2938. "_customMaterial": null,
  2939. "_srcBlendFactor": 2,
  2940. "_dstBlendFactor": 4,
  2941. "_color": {
  2942. "__type__": "cc.Color",
  2943. "r": 255,
  2944. "g": 255,
  2945. "b": 255,
  2946. "a": 255
  2947. },
  2948. "_spriteFrame": null,
  2949. "_type": 0,
  2950. "_fillType": 0,
  2951. "_sizeMode": 0,
  2952. "_fillCenter": {
  2953. "__type__": "cc.Vec2",
  2954. "x": 0,
  2955. "y": 0
  2956. },
  2957. "_fillStart": 0,
  2958. "_fillRange": 0,
  2959. "_isTrimmedMode": true,
  2960. "_useGrayscale": false,
  2961. "_atlas": null,
  2962. "_id": ""
  2963. },
  2964. {
  2965. "__type__": "cc.CompPrefabInfo",
  2966. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  2967. },
  2968. {
  2969. "__type__": "cc.PrefabInfo",
  2970. "root": {
  2971. "__id__": 1
  2972. },
  2973. "asset": {
  2974. "__id__": 0
  2975. },
  2976. "fileId": "92SxFWr2dOK5kWw1W0T+m/"
  2977. },
  2978. {
  2979. "__type__": "cc.Node",
  2980. "_name": "灯8",
  2981. "_objFlags": 0,
  2982. "_parent": {
  2983. "__id__": 67
  2984. },
  2985. "_children": [],
  2986. "_active": false,
  2987. "_components": [
  2988. {
  2989. "__id__": 134
  2990. },
  2991. {
  2992. "__id__": 136
  2993. }
  2994. ],
  2995. "_prefab": {
  2996. "__id__": 138
  2997. },
  2998. "_lpos": {
  2999. "__type__": "cc.Vec3",
  3000. "x": -231,
  3001. "y": -231,
  3002. "z": 0
  3003. },
  3004. "_lrot": {
  3005. "__type__": "cc.Quat",
  3006. "x": 0,
  3007. "y": 0,
  3008. "z": 0,
  3009. "w": 1
  3010. },
  3011. "_lscale": {
  3012. "__type__": "cc.Vec3",
  3013. "x": 1,
  3014. "y": 1,
  3015. "z": 1
  3016. },
  3017. "_layer": 33554432,
  3018. "_euler": {
  3019. "__type__": "cc.Vec3",
  3020. "x": 0,
  3021. "y": 0,
  3022. "z": 0
  3023. },
  3024. "_id": ""
  3025. },
  3026. {
  3027. "__type__": "cc.UITransform",
  3028. "_name": "",
  3029. "_objFlags": 0,
  3030. "node": {
  3031. "__id__": 133
  3032. },
  3033. "_enabled": true,
  3034. "__prefab": {
  3035. "__id__": 135
  3036. },
  3037. "_priority": 0,
  3038. "_contentSize": {
  3039. "__type__": "cc.Size",
  3040. "width": 25,
  3041. "height": 25
  3042. },
  3043. "_anchorPoint": {
  3044. "__type__": "cc.Vec2",
  3045. "x": 0.5,
  3046. "y": 0.5
  3047. },
  3048. "_id": ""
  3049. },
  3050. {
  3051. "__type__": "cc.CompPrefabInfo",
  3052. "fileId": "f7NISe7HdAD68SLfhnddy8"
  3053. },
  3054. {
  3055. "__type__": "cc.Sprite",
  3056. "_name": "",
  3057. "_objFlags": 0,
  3058. "node": {
  3059. "__id__": 133
  3060. },
  3061. "_enabled": true,
  3062. "__prefab": {
  3063. "__id__": 137
  3064. },
  3065. "_visFlags": 0,
  3066. "_customMaterial": null,
  3067. "_srcBlendFactor": 2,
  3068. "_dstBlendFactor": 4,
  3069. "_color": {
  3070. "__type__": "cc.Color",
  3071. "r": 255,
  3072. "g": 255,
  3073. "b": 255,
  3074. "a": 255
  3075. },
  3076. "_spriteFrame": null,
  3077. "_type": 0,
  3078. "_fillType": 0,
  3079. "_sizeMode": 0,
  3080. "_fillCenter": {
  3081. "__type__": "cc.Vec2",
  3082. "x": 0,
  3083. "y": 0
  3084. },
  3085. "_fillStart": 0,
  3086. "_fillRange": 0,
  3087. "_isTrimmedMode": true,
  3088. "_useGrayscale": false,
  3089. "_atlas": null,
  3090. "_id": ""
  3091. },
  3092. {
  3093. "__type__": "cc.CompPrefabInfo",
  3094. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  3095. },
  3096. {
  3097. "__type__": "cc.PrefabInfo",
  3098. "root": {
  3099. "__id__": 1
  3100. },
  3101. "asset": {
  3102. "__id__": 0
  3103. },
  3104. "fileId": "287dhBk9RBhpaOJ9ytoFtH"
  3105. },
  3106. {
  3107. "__type__": "cc.Node",
  3108. "_name": "灯9",
  3109. "_objFlags": 0,
  3110. "_parent": {
  3111. "__id__": 67
  3112. },
  3113. "_children": [],
  3114. "_active": false,
  3115. "_components": [
  3116. {
  3117. "__id__": 140
  3118. },
  3119. {
  3120. "__id__": 142
  3121. }
  3122. ],
  3123. "_prefab": {
  3124. "__id__": 144
  3125. },
  3126. "_lpos": {
  3127. "__type__": "cc.Vec3",
  3128. "x": -237.5,
  3129. "y": -119.75,
  3130. "z": 0
  3131. },
  3132. "_lrot": {
  3133. "__type__": "cc.Quat",
  3134. "x": 0,
  3135. "y": 0,
  3136. "z": 0,
  3137. "w": 1
  3138. },
  3139. "_lscale": {
  3140. "__type__": "cc.Vec3",
  3141. "x": 1,
  3142. "y": 1,
  3143. "z": 1
  3144. },
  3145. "_layer": 33554432,
  3146. "_euler": {
  3147. "__type__": "cc.Vec3",
  3148. "x": 0,
  3149. "y": 0,
  3150. "z": 0
  3151. },
  3152. "_id": ""
  3153. },
  3154. {
  3155. "__type__": "cc.UITransform",
  3156. "_name": "",
  3157. "_objFlags": 0,
  3158. "node": {
  3159. "__id__": 139
  3160. },
  3161. "_enabled": true,
  3162. "__prefab": {
  3163. "__id__": 141
  3164. },
  3165. "_priority": 0,
  3166. "_contentSize": {
  3167. "__type__": "cc.Size",
  3168. "width": 25,
  3169. "height": 25
  3170. },
  3171. "_anchorPoint": {
  3172. "__type__": "cc.Vec2",
  3173. "x": 0.5,
  3174. "y": 0.5
  3175. },
  3176. "_id": ""
  3177. },
  3178. {
  3179. "__type__": "cc.CompPrefabInfo",
  3180. "fileId": "f7NISe7HdAD68SLfhnddy8"
  3181. },
  3182. {
  3183. "__type__": "cc.Sprite",
  3184. "_name": "",
  3185. "_objFlags": 0,
  3186. "node": {
  3187. "__id__": 139
  3188. },
  3189. "_enabled": true,
  3190. "__prefab": {
  3191. "__id__": 143
  3192. },
  3193. "_visFlags": 0,
  3194. "_customMaterial": null,
  3195. "_srcBlendFactor": 2,
  3196. "_dstBlendFactor": 4,
  3197. "_color": {
  3198. "__type__": "cc.Color",
  3199. "r": 255,
  3200. "g": 255,
  3201. "b": 255,
  3202. "a": 255
  3203. },
  3204. "_spriteFrame": null,
  3205. "_type": 0,
  3206. "_fillType": 0,
  3207. "_sizeMode": 0,
  3208. "_fillCenter": {
  3209. "__type__": "cc.Vec2",
  3210. "x": 0,
  3211. "y": 0
  3212. },
  3213. "_fillStart": 0,
  3214. "_fillRange": 0,
  3215. "_isTrimmedMode": true,
  3216. "_useGrayscale": false,
  3217. "_atlas": null,
  3218. "_id": ""
  3219. },
  3220. {
  3221. "__type__": "cc.CompPrefabInfo",
  3222. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  3223. },
  3224. {
  3225. "__type__": "cc.PrefabInfo",
  3226. "root": {
  3227. "__id__": 1
  3228. },
  3229. "asset": {
  3230. "__id__": 0
  3231. },
  3232. "fileId": "d8hM4u6olNUbYqbkDpK4cJ"
  3233. },
  3234. {
  3235. "__type__": "cc.Node",
  3236. "_name": "灯10",
  3237. "_objFlags": 0,
  3238. "_parent": {
  3239. "__id__": 67
  3240. },
  3241. "_children": [],
  3242. "_active": false,
  3243. "_components": [
  3244. {
  3245. "__id__": 146
  3246. },
  3247. {
  3248. "__id__": 148
  3249. }
  3250. ],
  3251. "_prefab": {
  3252. "__id__": 150
  3253. },
  3254. "_lpos": {
  3255. "__type__": "cc.Vec3",
  3256. "x": -237.5,
  3257. "y": 0,
  3258. "z": 0
  3259. },
  3260. "_lrot": {
  3261. "__type__": "cc.Quat",
  3262. "x": 0,
  3263. "y": 0,
  3264. "z": 0,
  3265. "w": 1
  3266. },
  3267. "_lscale": {
  3268. "__type__": "cc.Vec3",
  3269. "x": 1,
  3270. "y": 1,
  3271. "z": 1
  3272. },
  3273. "_layer": 33554432,
  3274. "_euler": {
  3275. "__type__": "cc.Vec3",
  3276. "x": 0,
  3277. "y": 0,
  3278. "z": 0
  3279. },
  3280. "_id": ""
  3281. },
  3282. {
  3283. "__type__": "cc.UITransform",
  3284. "_name": "",
  3285. "_objFlags": 0,
  3286. "node": {
  3287. "__id__": 145
  3288. },
  3289. "_enabled": true,
  3290. "__prefab": {
  3291. "__id__": 147
  3292. },
  3293. "_priority": 0,
  3294. "_contentSize": {
  3295. "__type__": "cc.Size",
  3296. "width": 25,
  3297. "height": 25
  3298. },
  3299. "_anchorPoint": {
  3300. "__type__": "cc.Vec2",
  3301. "x": 0.5,
  3302. "y": 0.5
  3303. },
  3304. "_id": ""
  3305. },
  3306. {
  3307. "__type__": "cc.CompPrefabInfo",
  3308. "fileId": "f7NISe7HdAD68SLfhnddy8"
  3309. },
  3310. {
  3311. "__type__": "cc.Sprite",
  3312. "_name": "",
  3313. "_objFlags": 0,
  3314. "node": {
  3315. "__id__": 145
  3316. },
  3317. "_enabled": true,
  3318. "__prefab": {
  3319. "__id__": 149
  3320. },
  3321. "_visFlags": 0,
  3322. "_customMaterial": null,
  3323. "_srcBlendFactor": 2,
  3324. "_dstBlendFactor": 4,
  3325. "_color": {
  3326. "__type__": "cc.Color",
  3327. "r": 255,
  3328. "g": 255,
  3329. "b": 255,
  3330. "a": 255
  3331. },
  3332. "_spriteFrame": null,
  3333. "_type": 0,
  3334. "_fillType": 0,
  3335. "_sizeMode": 0,
  3336. "_fillCenter": {
  3337. "__type__": "cc.Vec2",
  3338. "x": 0,
  3339. "y": 0
  3340. },
  3341. "_fillStart": 0,
  3342. "_fillRange": 0,
  3343. "_isTrimmedMode": true,
  3344. "_useGrayscale": false,
  3345. "_atlas": null,
  3346. "_id": ""
  3347. },
  3348. {
  3349. "__type__": "cc.CompPrefabInfo",
  3350. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  3351. },
  3352. {
  3353. "__type__": "cc.PrefabInfo",
  3354. "root": {
  3355. "__id__": 1
  3356. },
  3357. "asset": {
  3358. "__id__": 0
  3359. },
  3360. "fileId": "d7+RLv6AlLoIGMFfzLQM02"
  3361. },
  3362. {
  3363. "__type__": "cc.Node",
  3364. "_name": "灯11",
  3365. "_objFlags": 0,
  3366. "_parent": {
  3367. "__id__": 67
  3368. },
  3369. "_children": [],
  3370. "_active": false,
  3371. "_components": [
  3372. {
  3373. "__id__": 152
  3374. },
  3375. {
  3376. "__id__": 154
  3377. }
  3378. ],
  3379. "_prefab": {
  3380. "__id__": 156
  3381. },
  3382. "_lpos": {
  3383. "__type__": "cc.Vec3",
  3384. "x": -237.5,
  3385. "y": 119.75,
  3386. "z": 0
  3387. },
  3388. "_lrot": {
  3389. "__type__": "cc.Quat",
  3390. "x": 0,
  3391. "y": 0,
  3392. "z": 0,
  3393. "w": 1
  3394. },
  3395. "_lscale": {
  3396. "__type__": "cc.Vec3",
  3397. "x": 1,
  3398. "y": 1,
  3399. "z": 1
  3400. },
  3401. "_layer": 33554432,
  3402. "_euler": {
  3403. "__type__": "cc.Vec3",
  3404. "x": 0,
  3405. "y": 0,
  3406. "z": 0
  3407. },
  3408. "_id": ""
  3409. },
  3410. {
  3411. "__type__": "cc.UITransform",
  3412. "_name": "",
  3413. "_objFlags": 0,
  3414. "node": {
  3415. "__id__": 151
  3416. },
  3417. "_enabled": true,
  3418. "__prefab": {
  3419. "__id__": 153
  3420. },
  3421. "_priority": 0,
  3422. "_contentSize": {
  3423. "__type__": "cc.Size",
  3424. "width": 25,
  3425. "height": 25
  3426. },
  3427. "_anchorPoint": {
  3428. "__type__": "cc.Vec2",
  3429. "x": 0.5,
  3430. "y": 0.5
  3431. },
  3432. "_id": ""
  3433. },
  3434. {
  3435. "__type__": "cc.CompPrefabInfo",
  3436. "fileId": "f7NISe7HdAD68SLfhnddy8"
  3437. },
  3438. {
  3439. "__type__": "cc.Sprite",
  3440. "_name": "",
  3441. "_objFlags": 0,
  3442. "node": {
  3443. "__id__": 151
  3444. },
  3445. "_enabled": true,
  3446. "__prefab": {
  3447. "__id__": 155
  3448. },
  3449. "_visFlags": 0,
  3450. "_customMaterial": null,
  3451. "_srcBlendFactor": 2,
  3452. "_dstBlendFactor": 4,
  3453. "_color": {
  3454. "__type__": "cc.Color",
  3455. "r": 255,
  3456. "g": 255,
  3457. "b": 255,
  3458. "a": 255
  3459. },
  3460. "_spriteFrame": null,
  3461. "_type": 0,
  3462. "_fillType": 0,
  3463. "_sizeMode": 0,
  3464. "_fillCenter": {
  3465. "__type__": "cc.Vec2",
  3466. "x": 0,
  3467. "y": 0
  3468. },
  3469. "_fillStart": 0,
  3470. "_fillRange": 0,
  3471. "_isTrimmedMode": true,
  3472. "_useGrayscale": false,
  3473. "_atlas": null,
  3474. "_id": ""
  3475. },
  3476. {
  3477. "__type__": "cc.CompPrefabInfo",
  3478. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  3479. },
  3480. {
  3481. "__type__": "cc.PrefabInfo",
  3482. "root": {
  3483. "__id__": 1
  3484. },
  3485. "asset": {
  3486. "__id__": 0
  3487. },
  3488. "fileId": "4evZLZbldK65UJpkZ9wM/O"
  3489. },
  3490. {
  3491. "__type__": "cc.Node",
  3492. "_name": "灯12",
  3493. "_objFlags": 0,
  3494. "_parent": {
  3495. "__id__": 67
  3496. },
  3497. "_children": [],
  3498. "_active": false,
  3499. "_components": [
  3500. {
  3501. "__id__": 158
  3502. },
  3503. {
  3504. "__id__": 160
  3505. }
  3506. ],
  3507. "_prefab": {
  3508. "__id__": 162
  3509. },
  3510. "_lpos": {
  3511. "__type__": "cc.Vec3",
  3512. "x": -231,
  3513. "y": 231,
  3514. "z": 0
  3515. },
  3516. "_lrot": {
  3517. "__type__": "cc.Quat",
  3518. "x": 0,
  3519. "y": 0,
  3520. "z": 0,
  3521. "w": 1
  3522. },
  3523. "_lscale": {
  3524. "__type__": "cc.Vec3",
  3525. "x": 1,
  3526. "y": 1,
  3527. "z": 1
  3528. },
  3529. "_layer": 33554432,
  3530. "_euler": {
  3531. "__type__": "cc.Vec3",
  3532. "x": 0,
  3533. "y": 0,
  3534. "z": 0
  3535. },
  3536. "_id": ""
  3537. },
  3538. {
  3539. "__type__": "cc.UITransform",
  3540. "_name": "",
  3541. "_objFlags": 0,
  3542. "node": {
  3543. "__id__": 157
  3544. },
  3545. "_enabled": true,
  3546. "__prefab": {
  3547. "__id__": 159
  3548. },
  3549. "_priority": 0,
  3550. "_contentSize": {
  3551. "__type__": "cc.Size",
  3552. "width": 25,
  3553. "height": 25
  3554. },
  3555. "_anchorPoint": {
  3556. "__type__": "cc.Vec2",
  3557. "x": 0.5,
  3558. "y": 0.5
  3559. },
  3560. "_id": ""
  3561. },
  3562. {
  3563. "__type__": "cc.CompPrefabInfo",
  3564. "fileId": "f7NISe7HdAD68SLfhnddy8"
  3565. },
  3566. {
  3567. "__type__": "cc.Sprite",
  3568. "_name": "",
  3569. "_objFlags": 0,
  3570. "node": {
  3571. "__id__": 157
  3572. },
  3573. "_enabled": true,
  3574. "__prefab": {
  3575. "__id__": 161
  3576. },
  3577. "_visFlags": 0,
  3578. "_customMaterial": null,
  3579. "_srcBlendFactor": 2,
  3580. "_dstBlendFactor": 4,
  3581. "_color": {
  3582. "__type__": "cc.Color",
  3583. "r": 255,
  3584. "g": 255,
  3585. "b": 255,
  3586. "a": 255
  3587. },
  3588. "_spriteFrame": null,
  3589. "_type": 0,
  3590. "_fillType": 0,
  3591. "_sizeMode": 0,
  3592. "_fillCenter": {
  3593. "__type__": "cc.Vec2",
  3594. "x": 0,
  3595. "y": 0
  3596. },
  3597. "_fillStart": 0,
  3598. "_fillRange": 0,
  3599. "_isTrimmedMode": true,
  3600. "_useGrayscale": false,
  3601. "_atlas": null,
  3602. "_id": ""
  3603. },
  3604. {
  3605. "__type__": "cc.CompPrefabInfo",
  3606. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  3607. },
  3608. {
  3609. "__type__": "cc.PrefabInfo",
  3610. "root": {
  3611. "__id__": 1
  3612. },
  3613. "asset": {
  3614. "__id__": 0
  3615. },
  3616. "fileId": "a4uJSgvDZAc5UhzhWcdQqT"
  3617. },
  3618. {
  3619. "__type__": "cc.Node",
  3620. "_name": "灯13",
  3621. "_objFlags": 0,
  3622. "_parent": {
  3623. "__id__": 67
  3624. },
  3625. "_children": [],
  3626. "_active": false,
  3627. "_components": [
  3628. {
  3629. "__id__": 164
  3630. },
  3631. {
  3632. "__id__": 166
  3633. }
  3634. ],
  3635. "_prefab": {
  3636. "__id__": 168
  3637. },
  3638. "_lpos": {
  3639. "__type__": "cc.Vec3",
  3640. "x": -119.75,
  3641. "y": 237.5,
  3642. "z": 0
  3643. },
  3644. "_lrot": {
  3645. "__type__": "cc.Quat",
  3646. "x": 0,
  3647. "y": 0,
  3648. "z": 0,
  3649. "w": 1
  3650. },
  3651. "_lscale": {
  3652. "__type__": "cc.Vec3",
  3653. "x": 1,
  3654. "y": 1,
  3655. "z": 1
  3656. },
  3657. "_layer": 33554432,
  3658. "_euler": {
  3659. "__type__": "cc.Vec3",
  3660. "x": 0,
  3661. "y": 0,
  3662. "z": 0
  3663. },
  3664. "_id": ""
  3665. },
  3666. {
  3667. "__type__": "cc.UITransform",
  3668. "_name": "",
  3669. "_objFlags": 0,
  3670. "node": {
  3671. "__id__": 163
  3672. },
  3673. "_enabled": true,
  3674. "__prefab": {
  3675. "__id__": 165
  3676. },
  3677. "_priority": 0,
  3678. "_contentSize": {
  3679. "__type__": "cc.Size",
  3680. "width": 25,
  3681. "height": 25
  3682. },
  3683. "_anchorPoint": {
  3684. "__type__": "cc.Vec2",
  3685. "x": 0.5,
  3686. "y": 0.5
  3687. },
  3688. "_id": ""
  3689. },
  3690. {
  3691. "__type__": "cc.CompPrefabInfo",
  3692. "fileId": "f7NISe7HdAD68SLfhnddy8"
  3693. },
  3694. {
  3695. "__type__": "cc.Sprite",
  3696. "_name": "",
  3697. "_objFlags": 0,
  3698. "node": {
  3699. "__id__": 163
  3700. },
  3701. "_enabled": true,
  3702. "__prefab": {
  3703. "__id__": 167
  3704. },
  3705. "_visFlags": 0,
  3706. "_customMaterial": null,
  3707. "_srcBlendFactor": 2,
  3708. "_dstBlendFactor": 4,
  3709. "_color": {
  3710. "__type__": "cc.Color",
  3711. "r": 255,
  3712. "g": 255,
  3713. "b": 255,
  3714. "a": 255
  3715. },
  3716. "_spriteFrame": null,
  3717. "_type": 0,
  3718. "_fillType": 0,
  3719. "_sizeMode": 0,
  3720. "_fillCenter": {
  3721. "__type__": "cc.Vec2",
  3722. "x": 0,
  3723. "y": 0
  3724. },
  3725. "_fillStart": 0,
  3726. "_fillRange": 0,
  3727. "_isTrimmedMode": true,
  3728. "_useGrayscale": false,
  3729. "_atlas": null,
  3730. "_id": ""
  3731. },
  3732. {
  3733. "__type__": "cc.CompPrefabInfo",
  3734. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  3735. },
  3736. {
  3737. "__type__": "cc.PrefabInfo",
  3738. "root": {
  3739. "__id__": 1
  3740. },
  3741. "asset": {
  3742. "__id__": 0
  3743. },
  3744. "fileId": "dcndDrj0hHHYJIXF4sPRbz"
  3745. },
  3746. {
  3747. "__type__": "cc.Node",
  3748. "_name": "灯14",
  3749. "_objFlags": 0,
  3750. "_parent": {
  3751. "__id__": 67
  3752. },
  3753. "_children": [],
  3754. "_active": false,
  3755. "_components": [
  3756. {
  3757. "__id__": 170
  3758. },
  3759. {
  3760. "__id__": 172
  3761. }
  3762. ],
  3763. "_prefab": {
  3764. "__id__": 174
  3765. },
  3766. "_lpos": {
  3767. "__type__": "cc.Vec3",
  3768. "x": 0,
  3769. "y": 237.5,
  3770. "z": 0
  3771. },
  3772. "_lrot": {
  3773. "__type__": "cc.Quat",
  3774. "x": 0,
  3775. "y": 0,
  3776. "z": 0,
  3777. "w": 1
  3778. },
  3779. "_lscale": {
  3780. "__type__": "cc.Vec3",
  3781. "x": 1,
  3782. "y": 1,
  3783. "z": 1
  3784. },
  3785. "_layer": 33554432,
  3786. "_euler": {
  3787. "__type__": "cc.Vec3",
  3788. "x": 0,
  3789. "y": 0,
  3790. "z": 0
  3791. },
  3792. "_id": ""
  3793. },
  3794. {
  3795. "__type__": "cc.UITransform",
  3796. "_name": "",
  3797. "_objFlags": 0,
  3798. "node": {
  3799. "__id__": 169
  3800. },
  3801. "_enabled": true,
  3802. "__prefab": {
  3803. "__id__": 171
  3804. },
  3805. "_priority": 0,
  3806. "_contentSize": {
  3807. "__type__": "cc.Size",
  3808. "width": 25,
  3809. "height": 25
  3810. },
  3811. "_anchorPoint": {
  3812. "__type__": "cc.Vec2",
  3813. "x": 0.5,
  3814. "y": 0.5
  3815. },
  3816. "_id": ""
  3817. },
  3818. {
  3819. "__type__": "cc.CompPrefabInfo",
  3820. "fileId": "f7NISe7HdAD68SLfhnddy8"
  3821. },
  3822. {
  3823. "__type__": "cc.Sprite",
  3824. "_name": "",
  3825. "_objFlags": 0,
  3826. "node": {
  3827. "__id__": 169
  3828. },
  3829. "_enabled": true,
  3830. "__prefab": {
  3831. "__id__": 173
  3832. },
  3833. "_visFlags": 0,
  3834. "_customMaterial": null,
  3835. "_srcBlendFactor": 2,
  3836. "_dstBlendFactor": 4,
  3837. "_color": {
  3838. "__type__": "cc.Color",
  3839. "r": 255,
  3840. "g": 255,
  3841. "b": 255,
  3842. "a": 255
  3843. },
  3844. "_spriteFrame": null,
  3845. "_type": 0,
  3846. "_fillType": 0,
  3847. "_sizeMode": 0,
  3848. "_fillCenter": {
  3849. "__type__": "cc.Vec2",
  3850. "x": 0,
  3851. "y": 0
  3852. },
  3853. "_fillStart": 0,
  3854. "_fillRange": 0,
  3855. "_isTrimmedMode": true,
  3856. "_useGrayscale": false,
  3857. "_atlas": null,
  3858. "_id": ""
  3859. },
  3860. {
  3861. "__type__": "cc.CompPrefabInfo",
  3862. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  3863. },
  3864. {
  3865. "__type__": "cc.PrefabInfo",
  3866. "root": {
  3867. "__id__": 1
  3868. },
  3869. "asset": {
  3870. "__id__": 0
  3871. },
  3872. "fileId": "27s79/Ip5E7bhemRzCaaVl"
  3873. },
  3874. {
  3875. "__type__": "cc.Node",
  3876. "_name": "灯15",
  3877. "_objFlags": 0,
  3878. "_parent": {
  3879. "__id__": 67
  3880. },
  3881. "_children": [],
  3882. "_active": false,
  3883. "_components": [
  3884. {
  3885. "__id__": 176
  3886. },
  3887. {
  3888. "__id__": 178
  3889. }
  3890. ],
  3891. "_prefab": {
  3892. "__id__": 180
  3893. },
  3894. "_lpos": {
  3895. "__type__": "cc.Vec3",
  3896. "x": 119.75,
  3897. "y": 237.5,
  3898. "z": 0
  3899. },
  3900. "_lrot": {
  3901. "__type__": "cc.Quat",
  3902. "x": 0,
  3903. "y": 0,
  3904. "z": 0,
  3905. "w": 1
  3906. },
  3907. "_lscale": {
  3908. "__type__": "cc.Vec3",
  3909. "x": 1,
  3910. "y": 1,
  3911. "z": 1
  3912. },
  3913. "_layer": 33554432,
  3914. "_euler": {
  3915. "__type__": "cc.Vec3",
  3916. "x": 0,
  3917. "y": 0,
  3918. "z": 0
  3919. },
  3920. "_id": ""
  3921. },
  3922. {
  3923. "__type__": "cc.UITransform",
  3924. "_name": "",
  3925. "_objFlags": 0,
  3926. "node": {
  3927. "__id__": 175
  3928. },
  3929. "_enabled": true,
  3930. "__prefab": {
  3931. "__id__": 177
  3932. },
  3933. "_priority": 0,
  3934. "_contentSize": {
  3935. "__type__": "cc.Size",
  3936. "width": 25,
  3937. "height": 25
  3938. },
  3939. "_anchorPoint": {
  3940. "__type__": "cc.Vec2",
  3941. "x": 0.5,
  3942. "y": 0.5
  3943. },
  3944. "_id": ""
  3945. },
  3946. {
  3947. "__type__": "cc.CompPrefabInfo",
  3948. "fileId": "f7NISe7HdAD68SLfhnddy8"
  3949. },
  3950. {
  3951. "__type__": "cc.Sprite",
  3952. "_name": "",
  3953. "_objFlags": 0,
  3954. "node": {
  3955. "__id__": 175
  3956. },
  3957. "_enabled": true,
  3958. "__prefab": {
  3959. "__id__": 179
  3960. },
  3961. "_visFlags": 0,
  3962. "_customMaterial": null,
  3963. "_srcBlendFactor": 2,
  3964. "_dstBlendFactor": 4,
  3965. "_color": {
  3966. "__type__": "cc.Color",
  3967. "r": 255,
  3968. "g": 255,
  3969. "b": 255,
  3970. "a": 255
  3971. },
  3972. "_spriteFrame": null,
  3973. "_type": 0,
  3974. "_fillType": 0,
  3975. "_sizeMode": 0,
  3976. "_fillCenter": {
  3977. "__type__": "cc.Vec2",
  3978. "x": 0,
  3979. "y": 0
  3980. },
  3981. "_fillStart": 0,
  3982. "_fillRange": 0,
  3983. "_isTrimmedMode": true,
  3984. "_useGrayscale": false,
  3985. "_atlas": null,
  3986. "_id": ""
  3987. },
  3988. {
  3989. "__type__": "cc.CompPrefabInfo",
  3990. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  3991. },
  3992. {
  3993. "__type__": "cc.PrefabInfo",
  3994. "root": {
  3995. "__id__": 1
  3996. },
  3997. "asset": {
  3998. "__id__": 0
  3999. },
  4000. "fileId": "d6dL/Id/FHpqbiBFZ1hkB2"
  4001. },
  4002. {
  4003. "__type__": "cc.UITransform",
  4004. "_name": "",
  4005. "_objFlags": 0,
  4006. "node": {
  4007. "__id__": 67
  4008. },
  4009. "_enabled": true,
  4010. "__prefab": {
  4011. "__id__": 182
  4012. },
  4013. "_priority": 0,
  4014. "_contentSize": {
  4015. "__type__": "cc.Size",
  4016. "width": 500,
  4017. "height": 500
  4018. },
  4019. "_anchorPoint": {
  4020. "__type__": "cc.Vec2",
  4021. "x": 0.5,
  4022. "y": 0.5
  4023. },
  4024. "_id": ""
  4025. },
  4026. {
  4027. "__type__": "cc.CompPrefabInfo",
  4028. "fileId": "71F9vsVsZH7ZFd+PpN0azA"
  4029. },
  4030. {
  4031. "__type__": "cc.Layout",
  4032. "_name": "",
  4033. "_objFlags": 0,
  4034. "node": {
  4035. "__id__": 67
  4036. },
  4037. "_enabled": true,
  4038. "__prefab": {
  4039. "__id__": 184
  4040. },
  4041. "_resizeMode": 0,
  4042. "_layoutType": 0,
  4043. "_cellSize": {
  4044. "__type__": "cc.Size",
  4045. "width": 40,
  4046. "height": 40
  4047. },
  4048. "_startAxis": 0,
  4049. "_paddingLeft": 0,
  4050. "_paddingRight": 0,
  4051. "_paddingTop": 0,
  4052. "_paddingBottom": 0,
  4053. "_spacingX": 0,
  4054. "_spacingY": 0,
  4055. "_verticalDirection": 1,
  4056. "_horizontalDirection": 0,
  4057. "_constraint": 0,
  4058. "_constraintNum": 2,
  4059. "_affectedByScale": false,
  4060. "_isAlign": true,
  4061. "_id": ""
  4062. },
  4063. {
  4064. "__type__": "cc.CompPrefabInfo",
  4065. "fileId": "eaGEkmlCpANK+GS6CImtZa"
  4066. },
  4067. {
  4068. "__type__": "cc.Animation",
  4069. "_name": "",
  4070. "_objFlags": 0,
  4071. "node": {
  4072. "__id__": 67
  4073. },
  4074. "_enabled": true,
  4075. "__prefab": {
  4076. "__id__": 186
  4077. },
  4078. "playOnLoad": false,
  4079. "_clips": [
  4080. {
  4081. "__uuid__": "520e21cc-b4df-45b2-838f-9eeac39817f7"
  4082. }
  4083. ],
  4084. "_defaultClip": {
  4085. "__uuid__": "520e21cc-b4df-45b2-838f-9eeac39817f7"
  4086. },
  4087. "_id": ""
  4088. },
  4089. {
  4090. "__type__": "cc.CompPrefabInfo",
  4091. "fileId": "de4XRNAw5Prav1oJGYP6TG"
  4092. },
  4093. {
  4094. "__type__": "cc.PrefabInfo",
  4095. "root": {
  4096. "__id__": 1
  4097. },
  4098. "asset": {
  4099. "__id__": 0
  4100. },
  4101. "fileId": "67mMMpbCZPloz46AOnwzma"
  4102. },
  4103. {
  4104. "__type__": "cc.Node",
  4105. "_name": "奖品展示框",
  4106. "_objFlags": 0,
  4107. "_parent": {
  4108. "__id__": 12
  4109. },
  4110. "_children": [
  4111. {
  4112. "__id__": 189
  4113. },
  4114. {
  4115. "__id__": 203
  4116. },
  4117. {
  4118. "__id__": 217
  4119. },
  4120. {
  4121. "__id__": 231
  4122. },
  4123. {
  4124. "__id__": 245
  4125. },
  4126. {
  4127. "__id__": 259
  4128. },
  4129. {
  4130. "__id__": 273
  4131. },
  4132. {
  4133. "__id__": 287
  4134. }
  4135. ],
  4136. "_active": true,
  4137. "_components": [
  4138. {
  4139. "__id__": 301
  4140. },
  4141. {
  4142. "__id__": 303
  4143. },
  4144. {
  4145. "__id__": 305
  4146. }
  4147. ],
  4148. "_prefab": {
  4149. "__id__": 307
  4150. },
  4151. "_lpos": {
  4152. "__type__": "cc.Vec3",
  4153. "x": 0,
  4154. "y": 0,
  4155. "z": 0
  4156. },
  4157. "_lrot": {
  4158. "__type__": "cc.Quat",
  4159. "x": 0,
  4160. "y": 0,
  4161. "z": 0,
  4162. "w": 1
  4163. },
  4164. "_lscale": {
  4165. "__type__": "cc.Vec3",
  4166. "x": 1,
  4167. "y": 1,
  4168. "z": 1
  4169. },
  4170. "_layer": 33554432,
  4171. "_euler": {
  4172. "__type__": "cc.Vec3",
  4173. "x": 0,
  4174. "y": 0,
  4175. "z": 0
  4176. },
  4177. "_id": ""
  4178. },
  4179. {
  4180. "__type__": "cc.Node",
  4181. "_name": "奖品8",
  4182. "_objFlags": 0,
  4183. "_parent": {
  4184. "__id__": 188
  4185. },
  4186. "_children": [
  4187. {
  4188. "__id__": 190
  4189. }
  4190. ],
  4191. "_active": true,
  4192. "_components": [
  4193. {
  4194. "__id__": 198
  4195. },
  4196. {
  4197. "__id__": 200
  4198. }
  4199. ],
  4200. "_prefab": {
  4201. "__id__": 202
  4202. },
  4203. "_lpos": {
  4204. "__type__": "cc.Vec3",
  4205. "x": -179,
  4206. "y": 182,
  4207. "z": 0
  4208. },
  4209. "_lrot": {
  4210. "__type__": "cc.Quat",
  4211. "x": 0,
  4212. "y": 0,
  4213. "z": 0,
  4214. "w": 1
  4215. },
  4216. "_lscale": {
  4217. "__type__": "cc.Vec3",
  4218. "x": 1,
  4219. "y": 1,
  4220. "z": 1
  4221. },
  4222. "_layer": 33554432,
  4223. "_euler": {
  4224. "__type__": "cc.Vec3",
  4225. "x": 0,
  4226. "y": 0,
  4227. "z": 0
  4228. },
  4229. "_id": ""
  4230. },
  4231. {
  4232. "__type__": "cc.Node",
  4233. "_name": "title8",
  4234. "_objFlags": 0,
  4235. "_parent": {
  4236. "__id__": 189
  4237. },
  4238. "_children": [],
  4239. "_active": true,
  4240. "_components": [
  4241. {
  4242. "__id__": 191
  4243. },
  4244. {
  4245. "__id__": 193
  4246. },
  4247. {
  4248. "__id__": 195
  4249. }
  4250. ],
  4251. "_prefab": {
  4252. "__id__": 197
  4253. },
  4254. "_lpos": {
  4255. "__type__": "cc.Vec3",
  4256. "x": 0,
  4257. "y": -60,
  4258. "z": 0
  4259. },
  4260. "_lrot": {
  4261. "__type__": "cc.Quat",
  4262. "x": 0,
  4263. "y": 0,
  4264. "z": 0,
  4265. "w": 1
  4266. },
  4267. "_lscale": {
  4268. "__type__": "cc.Vec3",
  4269. "x": 1,
  4270. "y": 1,
  4271. "z": 1
  4272. },
  4273. "_layer": 33554432,
  4274. "_euler": {
  4275. "__type__": "cc.Vec3",
  4276. "x": 0,
  4277. "y": 0,
  4278. "z": 0
  4279. },
  4280. "_id": ""
  4281. },
  4282. {
  4283. "__type__": "cc.UITransform",
  4284. "_name": "",
  4285. "_objFlags": 0,
  4286. "node": {
  4287. "__id__": 190
  4288. },
  4289. "_enabled": true,
  4290. "__prefab": {
  4291. "__id__": 192
  4292. },
  4293. "_priority": 0,
  4294. "_contentSize": {
  4295. "__type__": "cc.Size",
  4296. "width": 127.37,
  4297. "height": 54.4
  4298. },
  4299. "_anchorPoint": {
  4300. "__type__": "cc.Vec2",
  4301. "x": 0.5,
  4302. "y": 0.5
  4303. },
  4304. "_id": ""
  4305. },
  4306. {
  4307. "__type__": "cc.CompPrefabInfo",
  4308. "fileId": "c68UOAlNhN171Umca6yVvF"
  4309. },
  4310. {
  4311. "__type__": "cc.Label",
  4312. "_name": "",
  4313. "_objFlags": 0,
  4314. "node": {
  4315. "__id__": 190
  4316. },
  4317. "_enabled": true,
  4318. "__prefab": {
  4319. "__id__": 194
  4320. },
  4321. "_visFlags": 0,
  4322. "_customMaterial": null,
  4323. "_srcBlendFactor": 2,
  4324. "_dstBlendFactor": 4,
  4325. "_color": {
  4326. "__type__": "cc.Color",
  4327. "r": 251,
  4328. "g": 244,
  4329. "b": 212,
  4330. "a": 255
  4331. },
  4332. "_string": "现金50元",
  4333. "_horizontalAlign": 1,
  4334. "_verticalAlign": 1,
  4335. "_actualFontSize": 30,
  4336. "_fontSize": 30,
  4337. "_fontFamily": "Arial",
  4338. "_lineHeight": 40,
  4339. "_overflow": 0,
  4340. "_enableWrapText": true,
  4341. "_font": null,
  4342. "_isSystemFontUsed": true,
  4343. "_isItalic": false,
  4344. "_isBold": false,
  4345. "_isUnderline": false,
  4346. "_underlineHeight": 2,
  4347. "_cacheMode": 0,
  4348. "_id": ""
  4349. },
  4350. {
  4351. "__type__": "cc.CompPrefabInfo",
  4352. "fileId": "2frm37uaJHQr0AEEaYyM82"
  4353. },
  4354. {
  4355. "__type__": "cc.LabelOutline",
  4356. "_name": "",
  4357. "_objFlags": 0,
  4358. "node": {
  4359. "__id__": 190
  4360. },
  4361. "_enabled": true,
  4362. "__prefab": {
  4363. "__id__": 196
  4364. },
  4365. "_color": {
  4366. "__type__": "cc.Color",
  4367. "r": 124,
  4368. "g": 34,
  4369. "b": 22,
  4370. "a": 255
  4371. },
  4372. "_width": 2,
  4373. "_id": ""
  4374. },
  4375. {
  4376. "__type__": "cc.CompPrefabInfo",
  4377. "fileId": "cfy74zrxVGPpnFIhw/CtWF"
  4378. },
  4379. {
  4380. "__type__": "cc.PrefabInfo",
  4381. "root": {
  4382. "__id__": 1
  4383. },
  4384. "asset": {
  4385. "__id__": 0
  4386. },
  4387. "fileId": "d1eIK4suNLELwJeD+VMKns"
  4388. },
  4389. {
  4390. "__type__": "cc.UITransform",
  4391. "_name": "",
  4392. "_objFlags": 0,
  4393. "node": {
  4394. "__id__": 189
  4395. },
  4396. "_enabled": true,
  4397. "__prefab": {
  4398. "__id__": 199
  4399. },
  4400. "_priority": 0,
  4401. "_contentSize": {
  4402. "__type__": "cc.Size",
  4403. "width": 126,
  4404. "height": 103
  4405. },
  4406. "_anchorPoint": {
  4407. "__type__": "cc.Vec2",
  4408. "x": 0.5,
  4409. "y": 0.5
  4410. },
  4411. "_id": ""
  4412. },
  4413. {
  4414. "__type__": "cc.CompPrefabInfo",
  4415. "fileId": "f7NISe7HdAD68SLfhnddy8"
  4416. },
  4417. {
  4418. "__type__": "cc.Sprite",
  4419. "_name": "",
  4420. "_objFlags": 0,
  4421. "node": {
  4422. "__id__": 189
  4423. },
  4424. "_enabled": true,
  4425. "__prefab": {
  4426. "__id__": 201
  4427. },
  4428. "_visFlags": 0,
  4429. "_customMaterial": null,
  4430. "_srcBlendFactor": 2,
  4431. "_dstBlendFactor": 4,
  4432. "_color": {
  4433. "__type__": "cc.Color",
  4434. "r": 255,
  4435. "g": 255,
  4436. "b": 255,
  4437. "a": 255
  4438. },
  4439. "_spriteFrame": {
  4440. "__uuid__": "44afff33-5eb1-4f20-8d55-794987779216@f9941"
  4441. },
  4442. "_type": 0,
  4443. "_fillType": 0,
  4444. "_sizeMode": 1,
  4445. "_fillCenter": {
  4446. "__type__": "cc.Vec2",
  4447. "x": 0,
  4448. "y": 0
  4449. },
  4450. "_fillStart": 0,
  4451. "_fillRange": 0,
  4452. "_isTrimmedMode": true,
  4453. "_useGrayscale": false,
  4454. "_atlas": null,
  4455. "_id": ""
  4456. },
  4457. {
  4458. "__type__": "cc.CompPrefabInfo",
  4459. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  4460. },
  4461. {
  4462. "__type__": "cc.PrefabInfo",
  4463. "root": {
  4464. "__id__": 1
  4465. },
  4466. "asset": {
  4467. "__id__": 0
  4468. },
  4469. "fileId": "26QQ97tsBCN4dXKA7TxA4r"
  4470. },
  4471. {
  4472. "__type__": "cc.Node",
  4473. "_name": "奖品1",
  4474. "_objFlags": 0,
  4475. "_parent": {
  4476. "__id__": 188
  4477. },
  4478. "_children": [
  4479. {
  4480. "__id__": 204
  4481. }
  4482. ],
  4483. "_active": true,
  4484. "_components": [
  4485. {
  4486. "__id__": 212
  4487. },
  4488. {
  4489. "__id__": 214
  4490. }
  4491. ],
  4492. "_prefab": {
  4493. "__id__": 216
  4494. },
  4495. "_lpos": {
  4496. "__type__": "cc.Vec3",
  4497. "x": 0,
  4498. "y": 182,
  4499. "z": 0
  4500. },
  4501. "_lrot": {
  4502. "__type__": "cc.Quat",
  4503. "x": 0,
  4504. "y": 0,
  4505. "z": 0,
  4506. "w": 1
  4507. },
  4508. "_lscale": {
  4509. "__type__": "cc.Vec3",
  4510. "x": 1,
  4511. "y": 1,
  4512. "z": 1
  4513. },
  4514. "_layer": 33554432,
  4515. "_euler": {
  4516. "__type__": "cc.Vec3",
  4517. "x": 0,
  4518. "y": 0,
  4519. "z": 0
  4520. },
  4521. "_id": ""
  4522. },
  4523. {
  4524. "__type__": "cc.Node",
  4525. "_name": "title1",
  4526. "_objFlags": 0,
  4527. "_parent": {
  4528. "__id__": 203
  4529. },
  4530. "_children": [],
  4531. "_active": true,
  4532. "_components": [
  4533. {
  4534. "__id__": 205
  4535. },
  4536. {
  4537. "__id__": 207
  4538. },
  4539. {
  4540. "__id__": 209
  4541. }
  4542. ],
  4543. "_prefab": {
  4544. "__id__": 211
  4545. },
  4546. "_lpos": {
  4547. "__type__": "cc.Vec3",
  4548. "x": 0,
  4549. "y": -60,
  4550. "z": 0
  4551. },
  4552. "_lrot": {
  4553. "__type__": "cc.Quat",
  4554. "x": 0,
  4555. "y": 0,
  4556. "z": 0,
  4557. "w": 1
  4558. },
  4559. "_lscale": {
  4560. "__type__": "cc.Vec3",
  4561. "x": 1,
  4562. "y": 1,
  4563. "z": 1
  4564. },
  4565. "_layer": 33554432,
  4566. "_euler": {
  4567. "__type__": "cc.Vec3",
  4568. "x": 0,
  4569. "y": 0,
  4570. "z": 0
  4571. },
  4572. "_id": ""
  4573. },
  4574. {
  4575. "__type__": "cc.UITransform",
  4576. "_name": "",
  4577. "_objFlags": 0,
  4578. "node": {
  4579. "__id__": 204
  4580. },
  4581. "_enabled": true,
  4582. "__prefab": {
  4583. "__id__": 206
  4584. },
  4585. "_priority": 0,
  4586. "_contentSize": {
  4587. "__type__": "cc.Size",
  4588. "width": 127.37,
  4589. "height": 54.4
  4590. },
  4591. "_anchorPoint": {
  4592. "__type__": "cc.Vec2",
  4593. "x": 0.5,
  4594. "y": 0.5
  4595. },
  4596. "_id": ""
  4597. },
  4598. {
  4599. "__type__": "cc.CompPrefabInfo",
  4600. "fileId": "dae4Xt4TFDjKSogN0bbUoP"
  4601. },
  4602. {
  4603. "__type__": "cc.Label",
  4604. "_name": "",
  4605. "_objFlags": 0,
  4606. "node": {
  4607. "__id__": 204
  4608. },
  4609. "_enabled": true,
  4610. "__prefab": {
  4611. "__id__": 208
  4612. },
  4613. "_visFlags": 0,
  4614. "_customMaterial": null,
  4615. "_srcBlendFactor": 2,
  4616. "_dstBlendFactor": 4,
  4617. "_color": {
  4618. "__type__": "cc.Color",
  4619. "r": 251,
  4620. "g": 244,
  4621. "b": 212,
  4622. "a": 255
  4623. },
  4624. "_string": "现金50元",
  4625. "_horizontalAlign": 1,
  4626. "_verticalAlign": 1,
  4627. "_actualFontSize": 30,
  4628. "_fontSize": 30,
  4629. "_fontFamily": "Arial",
  4630. "_lineHeight": 40,
  4631. "_overflow": 0,
  4632. "_enableWrapText": true,
  4633. "_font": null,
  4634. "_isSystemFontUsed": true,
  4635. "_isItalic": false,
  4636. "_isBold": false,
  4637. "_isUnderline": false,
  4638. "_underlineHeight": 2,
  4639. "_cacheMode": 0,
  4640. "_id": ""
  4641. },
  4642. {
  4643. "__type__": "cc.CompPrefabInfo",
  4644. "fileId": "f5xViaeCdF0YSl6jfsBylW"
  4645. },
  4646. {
  4647. "__type__": "cc.LabelOutline",
  4648. "_name": "",
  4649. "_objFlags": 0,
  4650. "node": {
  4651. "__id__": 204
  4652. },
  4653. "_enabled": true,
  4654. "__prefab": {
  4655. "__id__": 210
  4656. },
  4657. "_color": {
  4658. "__type__": "cc.Color",
  4659. "r": 124,
  4660. "g": 34,
  4661. "b": 22,
  4662. "a": 255
  4663. },
  4664. "_width": 2,
  4665. "_id": ""
  4666. },
  4667. {
  4668. "__type__": "cc.CompPrefabInfo",
  4669. "fileId": "edQRU2mTpAz4Y85eY6kn6K"
  4670. },
  4671. {
  4672. "__type__": "cc.PrefabInfo",
  4673. "root": {
  4674. "__id__": 1
  4675. },
  4676. "asset": {
  4677. "__id__": 0
  4678. },
  4679. "fileId": "18tg6IUQ5Bl705Yn7iAqqU"
  4680. },
  4681. {
  4682. "__type__": "cc.UITransform",
  4683. "_name": "",
  4684. "_objFlags": 0,
  4685. "node": {
  4686. "__id__": 203
  4687. },
  4688. "_enabled": true,
  4689. "__prefab": {
  4690. "__id__": 213
  4691. },
  4692. "_priority": 0,
  4693. "_contentSize": {
  4694. "__type__": "cc.Size",
  4695. "width": 126,
  4696. "height": 103
  4697. },
  4698. "_anchorPoint": {
  4699. "__type__": "cc.Vec2",
  4700. "x": 0.5,
  4701. "y": 0.5
  4702. },
  4703. "_id": ""
  4704. },
  4705. {
  4706. "__type__": "cc.CompPrefabInfo",
  4707. "fileId": "f7NISe7HdAD68SLfhnddy8"
  4708. },
  4709. {
  4710. "__type__": "cc.Sprite",
  4711. "_name": "",
  4712. "_objFlags": 0,
  4713. "node": {
  4714. "__id__": 203
  4715. },
  4716. "_enabled": true,
  4717. "__prefab": {
  4718. "__id__": 215
  4719. },
  4720. "_visFlags": 0,
  4721. "_customMaterial": null,
  4722. "_srcBlendFactor": 2,
  4723. "_dstBlendFactor": 4,
  4724. "_color": {
  4725. "__type__": "cc.Color",
  4726. "r": 255,
  4727. "g": 255,
  4728. "b": 255,
  4729. "a": 255
  4730. },
  4731. "_spriteFrame": {
  4732. "__uuid__": "44afff33-5eb1-4f20-8d55-794987779216@f9941"
  4733. },
  4734. "_type": 0,
  4735. "_fillType": 0,
  4736. "_sizeMode": 1,
  4737. "_fillCenter": {
  4738. "__type__": "cc.Vec2",
  4739. "x": 0,
  4740. "y": 0
  4741. },
  4742. "_fillStart": 0,
  4743. "_fillRange": 0,
  4744. "_isTrimmedMode": true,
  4745. "_useGrayscale": false,
  4746. "_atlas": null,
  4747. "_id": ""
  4748. },
  4749. {
  4750. "__type__": "cc.CompPrefabInfo",
  4751. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  4752. },
  4753. {
  4754. "__type__": "cc.PrefabInfo",
  4755. "root": {
  4756. "__id__": 1
  4757. },
  4758. "asset": {
  4759. "__id__": 0
  4760. },
  4761. "fileId": "6fFQmksm9OzYQfXQOKQdKt"
  4762. },
  4763. {
  4764. "__type__": "cc.Node",
  4765. "_name": "奖品2",
  4766. "_objFlags": 0,
  4767. "_parent": {
  4768. "__id__": 188
  4769. },
  4770. "_children": [
  4771. {
  4772. "__id__": 218
  4773. }
  4774. ],
  4775. "_active": true,
  4776. "_components": [
  4777. {
  4778. "__id__": 226
  4779. },
  4780. {
  4781. "__id__": 228
  4782. }
  4783. ],
  4784. "_prefab": {
  4785. "__id__": 230
  4786. },
  4787. "_lpos": {
  4788. "__type__": "cc.Vec3",
  4789. "x": 179,
  4790. "y": 182,
  4791. "z": 0
  4792. },
  4793. "_lrot": {
  4794. "__type__": "cc.Quat",
  4795. "x": 0,
  4796. "y": 0,
  4797. "z": 0,
  4798. "w": 1
  4799. },
  4800. "_lscale": {
  4801. "__type__": "cc.Vec3",
  4802. "x": 1,
  4803. "y": 1,
  4804. "z": 1
  4805. },
  4806. "_layer": 33554432,
  4807. "_euler": {
  4808. "__type__": "cc.Vec3",
  4809. "x": 0,
  4810. "y": 0,
  4811. "z": 0
  4812. },
  4813. "_id": ""
  4814. },
  4815. {
  4816. "__type__": "cc.Node",
  4817. "_name": "title2",
  4818. "_objFlags": 0,
  4819. "_parent": {
  4820. "__id__": 217
  4821. },
  4822. "_children": [],
  4823. "_active": true,
  4824. "_components": [
  4825. {
  4826. "__id__": 219
  4827. },
  4828. {
  4829. "__id__": 221
  4830. },
  4831. {
  4832. "__id__": 223
  4833. }
  4834. ],
  4835. "_prefab": {
  4836. "__id__": 225
  4837. },
  4838. "_lpos": {
  4839. "__type__": "cc.Vec3",
  4840. "x": 0,
  4841. "y": -60,
  4842. "z": 0
  4843. },
  4844. "_lrot": {
  4845. "__type__": "cc.Quat",
  4846. "x": 0,
  4847. "y": 0,
  4848. "z": 0,
  4849. "w": 1
  4850. },
  4851. "_lscale": {
  4852. "__type__": "cc.Vec3",
  4853. "x": 1,
  4854. "y": 1,
  4855. "z": 1
  4856. },
  4857. "_layer": 33554432,
  4858. "_euler": {
  4859. "__type__": "cc.Vec3",
  4860. "x": 0,
  4861. "y": 0,
  4862. "z": 0
  4863. },
  4864. "_id": ""
  4865. },
  4866. {
  4867. "__type__": "cc.UITransform",
  4868. "_name": "",
  4869. "_objFlags": 0,
  4870. "node": {
  4871. "__id__": 218
  4872. },
  4873. "_enabled": true,
  4874. "__prefab": {
  4875. "__id__": 220
  4876. },
  4877. "_priority": 0,
  4878. "_contentSize": {
  4879. "__type__": "cc.Size",
  4880. "width": 127.37,
  4881. "height": 54.4
  4882. },
  4883. "_anchorPoint": {
  4884. "__type__": "cc.Vec2",
  4885. "x": 0.5,
  4886. "y": 0.5
  4887. },
  4888. "_id": ""
  4889. },
  4890. {
  4891. "__type__": "cc.CompPrefabInfo",
  4892. "fileId": "8fsJcHx0hAi5ct6iUbVd8G"
  4893. },
  4894. {
  4895. "__type__": "cc.Label",
  4896. "_name": "",
  4897. "_objFlags": 0,
  4898. "node": {
  4899. "__id__": 218
  4900. },
  4901. "_enabled": true,
  4902. "__prefab": {
  4903. "__id__": 222
  4904. },
  4905. "_visFlags": 0,
  4906. "_customMaterial": null,
  4907. "_srcBlendFactor": 2,
  4908. "_dstBlendFactor": 4,
  4909. "_color": {
  4910. "__type__": "cc.Color",
  4911. "r": 251,
  4912. "g": 244,
  4913. "b": 212,
  4914. "a": 255
  4915. },
  4916. "_string": "现金50元",
  4917. "_horizontalAlign": 1,
  4918. "_verticalAlign": 1,
  4919. "_actualFontSize": 30,
  4920. "_fontSize": 30,
  4921. "_fontFamily": "Arial",
  4922. "_lineHeight": 40,
  4923. "_overflow": 0,
  4924. "_enableWrapText": true,
  4925. "_font": null,
  4926. "_isSystemFontUsed": true,
  4927. "_isItalic": false,
  4928. "_isBold": false,
  4929. "_isUnderline": false,
  4930. "_underlineHeight": 2,
  4931. "_cacheMode": 0,
  4932. "_id": ""
  4933. },
  4934. {
  4935. "__type__": "cc.CompPrefabInfo",
  4936. "fileId": "ccExRkuv5AYK1louXjAlsK"
  4937. },
  4938. {
  4939. "__type__": "cc.LabelOutline",
  4940. "_name": "",
  4941. "_objFlags": 0,
  4942. "node": {
  4943. "__id__": 218
  4944. },
  4945. "_enabled": true,
  4946. "__prefab": {
  4947. "__id__": 224
  4948. },
  4949. "_color": {
  4950. "__type__": "cc.Color",
  4951. "r": 124,
  4952. "g": 34,
  4953. "b": 22,
  4954. "a": 255
  4955. },
  4956. "_width": 2,
  4957. "_id": ""
  4958. },
  4959. {
  4960. "__type__": "cc.CompPrefabInfo",
  4961. "fileId": "2aFqUX/7FCsZuIQY4qfQAS"
  4962. },
  4963. {
  4964. "__type__": "cc.PrefabInfo",
  4965. "root": {
  4966. "__id__": 1
  4967. },
  4968. "asset": {
  4969. "__id__": 0
  4970. },
  4971. "fileId": "e80u6fpghBGrhtswVDqdhX"
  4972. },
  4973. {
  4974. "__type__": "cc.UITransform",
  4975. "_name": "",
  4976. "_objFlags": 0,
  4977. "node": {
  4978. "__id__": 217
  4979. },
  4980. "_enabled": true,
  4981. "__prefab": {
  4982. "__id__": 227
  4983. },
  4984. "_priority": 0,
  4985. "_contentSize": {
  4986. "__type__": "cc.Size",
  4987. "width": 126,
  4988. "height": 103
  4989. },
  4990. "_anchorPoint": {
  4991. "__type__": "cc.Vec2",
  4992. "x": 0.5,
  4993. "y": 0.5
  4994. },
  4995. "_id": ""
  4996. },
  4997. {
  4998. "__type__": "cc.CompPrefabInfo",
  4999. "fileId": "f7NISe7HdAD68SLfhnddy8"
  5000. },
  5001. {
  5002. "__type__": "cc.Sprite",
  5003. "_name": "",
  5004. "_objFlags": 0,
  5005. "node": {
  5006. "__id__": 217
  5007. },
  5008. "_enabled": true,
  5009. "__prefab": {
  5010. "__id__": 229
  5011. },
  5012. "_visFlags": 0,
  5013. "_customMaterial": null,
  5014. "_srcBlendFactor": 2,
  5015. "_dstBlendFactor": 4,
  5016. "_color": {
  5017. "__type__": "cc.Color",
  5018. "r": 255,
  5019. "g": 255,
  5020. "b": 255,
  5021. "a": 255
  5022. },
  5023. "_spriteFrame": {
  5024. "__uuid__": "44afff33-5eb1-4f20-8d55-794987779216@f9941"
  5025. },
  5026. "_type": 0,
  5027. "_fillType": 0,
  5028. "_sizeMode": 1,
  5029. "_fillCenter": {
  5030. "__type__": "cc.Vec2",
  5031. "x": 0,
  5032. "y": 0
  5033. },
  5034. "_fillStart": 0,
  5035. "_fillRange": 0,
  5036. "_isTrimmedMode": true,
  5037. "_useGrayscale": false,
  5038. "_atlas": null,
  5039. "_id": ""
  5040. },
  5041. {
  5042. "__type__": "cc.CompPrefabInfo",
  5043. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  5044. },
  5045. {
  5046. "__type__": "cc.PrefabInfo",
  5047. "root": {
  5048. "__id__": 1
  5049. },
  5050. "asset": {
  5051. "__id__": 0
  5052. },
  5053. "fileId": "ecNFtJhvpIr430yHSoxbM6"
  5054. },
  5055. {
  5056. "__type__": "cc.Node",
  5057. "_name": "奖品7",
  5058. "_objFlags": 0,
  5059. "_parent": {
  5060. "__id__": 188
  5061. },
  5062. "_children": [
  5063. {
  5064. "__id__": 232
  5065. }
  5066. ],
  5067. "_active": true,
  5068. "_components": [
  5069. {
  5070. "__id__": 240
  5071. },
  5072. {
  5073. "__id__": 242
  5074. }
  5075. ],
  5076. "_prefab": {
  5077. "__id__": 244
  5078. },
  5079. "_lpos": {
  5080. "__type__": "cc.Vec3",
  5081. "x": -179,
  5082. "y": 0,
  5083. "z": 0
  5084. },
  5085. "_lrot": {
  5086. "__type__": "cc.Quat",
  5087. "x": 0,
  5088. "y": 0,
  5089. "z": 0,
  5090. "w": 1
  5091. },
  5092. "_lscale": {
  5093. "__type__": "cc.Vec3",
  5094. "x": 1,
  5095. "y": 1,
  5096. "z": 1
  5097. },
  5098. "_layer": 33554432,
  5099. "_euler": {
  5100. "__type__": "cc.Vec3",
  5101. "x": 0,
  5102. "y": 0,
  5103. "z": 0
  5104. },
  5105. "_id": ""
  5106. },
  5107. {
  5108. "__type__": "cc.Node",
  5109. "_name": "title7",
  5110. "_objFlags": 0,
  5111. "_parent": {
  5112. "__id__": 231
  5113. },
  5114. "_children": [],
  5115. "_active": true,
  5116. "_components": [
  5117. {
  5118. "__id__": 233
  5119. },
  5120. {
  5121. "__id__": 235
  5122. },
  5123. {
  5124. "__id__": 237
  5125. }
  5126. ],
  5127. "_prefab": {
  5128. "__id__": 239
  5129. },
  5130. "_lpos": {
  5131. "__type__": "cc.Vec3",
  5132. "x": 0,
  5133. "y": -60,
  5134. "z": 0
  5135. },
  5136. "_lrot": {
  5137. "__type__": "cc.Quat",
  5138. "x": 0,
  5139. "y": 0,
  5140. "z": 0,
  5141. "w": 1
  5142. },
  5143. "_lscale": {
  5144. "__type__": "cc.Vec3",
  5145. "x": 1,
  5146. "y": 1,
  5147. "z": 1
  5148. },
  5149. "_layer": 33554432,
  5150. "_euler": {
  5151. "__type__": "cc.Vec3",
  5152. "x": 0,
  5153. "y": 0,
  5154. "z": 0
  5155. },
  5156. "_id": ""
  5157. },
  5158. {
  5159. "__type__": "cc.UITransform",
  5160. "_name": "",
  5161. "_objFlags": 0,
  5162. "node": {
  5163. "__id__": 232
  5164. },
  5165. "_enabled": true,
  5166. "__prefab": {
  5167. "__id__": 234
  5168. },
  5169. "_priority": 0,
  5170. "_contentSize": {
  5171. "__type__": "cc.Size",
  5172. "width": 127.37,
  5173. "height": 54.4
  5174. },
  5175. "_anchorPoint": {
  5176. "__type__": "cc.Vec2",
  5177. "x": 0.5,
  5178. "y": 0.5
  5179. },
  5180. "_id": ""
  5181. },
  5182. {
  5183. "__type__": "cc.CompPrefabInfo",
  5184. "fileId": "73Dthw9U9GGaDxRU5pJGNO"
  5185. },
  5186. {
  5187. "__type__": "cc.Label",
  5188. "_name": "",
  5189. "_objFlags": 0,
  5190. "node": {
  5191. "__id__": 232
  5192. },
  5193. "_enabled": true,
  5194. "__prefab": {
  5195. "__id__": 236
  5196. },
  5197. "_visFlags": 0,
  5198. "_customMaterial": null,
  5199. "_srcBlendFactor": 2,
  5200. "_dstBlendFactor": 4,
  5201. "_color": {
  5202. "__type__": "cc.Color",
  5203. "r": 251,
  5204. "g": 244,
  5205. "b": 212,
  5206. "a": 255
  5207. },
  5208. "_string": "现金50元",
  5209. "_horizontalAlign": 1,
  5210. "_verticalAlign": 1,
  5211. "_actualFontSize": 30,
  5212. "_fontSize": 30,
  5213. "_fontFamily": "Arial",
  5214. "_lineHeight": 40,
  5215. "_overflow": 0,
  5216. "_enableWrapText": true,
  5217. "_font": null,
  5218. "_isSystemFontUsed": true,
  5219. "_isItalic": false,
  5220. "_isBold": false,
  5221. "_isUnderline": false,
  5222. "_underlineHeight": 2,
  5223. "_cacheMode": 0,
  5224. "_id": ""
  5225. },
  5226. {
  5227. "__type__": "cc.CompPrefabInfo",
  5228. "fileId": "d5Un9ub15MHLgsOyyM8uVk"
  5229. },
  5230. {
  5231. "__type__": "cc.LabelOutline",
  5232. "_name": "",
  5233. "_objFlags": 0,
  5234. "node": {
  5235. "__id__": 232
  5236. },
  5237. "_enabled": true,
  5238. "__prefab": {
  5239. "__id__": 238
  5240. },
  5241. "_color": {
  5242. "__type__": "cc.Color",
  5243. "r": 124,
  5244. "g": 34,
  5245. "b": 22,
  5246. "a": 255
  5247. },
  5248. "_width": 2,
  5249. "_id": ""
  5250. },
  5251. {
  5252. "__type__": "cc.CompPrefabInfo",
  5253. "fileId": "57DX6VB+FAqrb8YYdgEjWE"
  5254. },
  5255. {
  5256. "__type__": "cc.PrefabInfo",
  5257. "root": {
  5258. "__id__": 1
  5259. },
  5260. "asset": {
  5261. "__id__": 0
  5262. },
  5263. "fileId": "79+ATp0g1DS6xi8SrnkdzM"
  5264. },
  5265. {
  5266. "__type__": "cc.UITransform",
  5267. "_name": "",
  5268. "_objFlags": 0,
  5269. "node": {
  5270. "__id__": 231
  5271. },
  5272. "_enabled": true,
  5273. "__prefab": {
  5274. "__id__": 241
  5275. },
  5276. "_priority": 0,
  5277. "_contentSize": {
  5278. "__type__": "cc.Size",
  5279. "width": 126,
  5280. "height": 103
  5281. },
  5282. "_anchorPoint": {
  5283. "__type__": "cc.Vec2",
  5284. "x": 0.5,
  5285. "y": 0.5
  5286. },
  5287. "_id": ""
  5288. },
  5289. {
  5290. "__type__": "cc.CompPrefabInfo",
  5291. "fileId": "f7NISe7HdAD68SLfhnddy8"
  5292. },
  5293. {
  5294. "__type__": "cc.Sprite",
  5295. "_name": "",
  5296. "_objFlags": 0,
  5297. "node": {
  5298. "__id__": 231
  5299. },
  5300. "_enabled": true,
  5301. "__prefab": {
  5302. "__id__": 243
  5303. },
  5304. "_visFlags": 0,
  5305. "_customMaterial": null,
  5306. "_srcBlendFactor": 2,
  5307. "_dstBlendFactor": 4,
  5308. "_color": {
  5309. "__type__": "cc.Color",
  5310. "r": 255,
  5311. "g": 255,
  5312. "b": 255,
  5313. "a": 255
  5314. },
  5315. "_spriteFrame": {
  5316. "__uuid__": "44afff33-5eb1-4f20-8d55-794987779216@f9941"
  5317. },
  5318. "_type": 0,
  5319. "_fillType": 0,
  5320. "_sizeMode": 1,
  5321. "_fillCenter": {
  5322. "__type__": "cc.Vec2",
  5323. "x": 0,
  5324. "y": 0
  5325. },
  5326. "_fillStart": 0,
  5327. "_fillRange": 0,
  5328. "_isTrimmedMode": true,
  5329. "_useGrayscale": false,
  5330. "_atlas": null,
  5331. "_id": ""
  5332. },
  5333. {
  5334. "__type__": "cc.CompPrefabInfo",
  5335. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  5336. },
  5337. {
  5338. "__type__": "cc.PrefabInfo",
  5339. "root": {
  5340. "__id__": 1
  5341. },
  5342. "asset": {
  5343. "__id__": 0
  5344. },
  5345. "fileId": "a9D8xRYP1FfoynAWG1m14B"
  5346. },
  5347. {
  5348. "__type__": "cc.Node",
  5349. "_name": "奖品3",
  5350. "_objFlags": 0,
  5351. "_parent": {
  5352. "__id__": 188
  5353. },
  5354. "_children": [
  5355. {
  5356. "__id__": 246
  5357. }
  5358. ],
  5359. "_active": true,
  5360. "_components": [
  5361. {
  5362. "__id__": 254
  5363. },
  5364. {
  5365. "__id__": 256
  5366. }
  5367. ],
  5368. "_prefab": {
  5369. "__id__": 258
  5370. },
  5371. "_lpos": {
  5372. "__type__": "cc.Vec3",
  5373. "x": 179,
  5374. "y": 0,
  5375. "z": 0
  5376. },
  5377. "_lrot": {
  5378. "__type__": "cc.Quat",
  5379. "x": 0,
  5380. "y": 0,
  5381. "z": 0,
  5382. "w": 1
  5383. },
  5384. "_lscale": {
  5385. "__type__": "cc.Vec3",
  5386. "x": 1,
  5387. "y": 1,
  5388. "z": 1
  5389. },
  5390. "_layer": 33554432,
  5391. "_euler": {
  5392. "__type__": "cc.Vec3",
  5393. "x": 0,
  5394. "y": 0,
  5395. "z": 0
  5396. },
  5397. "_id": ""
  5398. },
  5399. {
  5400. "__type__": "cc.Node",
  5401. "_name": "title3",
  5402. "_objFlags": 0,
  5403. "_parent": {
  5404. "__id__": 245
  5405. },
  5406. "_children": [],
  5407. "_active": true,
  5408. "_components": [
  5409. {
  5410. "__id__": 247
  5411. },
  5412. {
  5413. "__id__": 249
  5414. },
  5415. {
  5416. "__id__": 251
  5417. }
  5418. ],
  5419. "_prefab": {
  5420. "__id__": 253
  5421. },
  5422. "_lpos": {
  5423. "__type__": "cc.Vec3",
  5424. "x": 0,
  5425. "y": -60,
  5426. "z": 0
  5427. },
  5428. "_lrot": {
  5429. "__type__": "cc.Quat",
  5430. "x": 0,
  5431. "y": 0,
  5432. "z": 0,
  5433. "w": 1
  5434. },
  5435. "_lscale": {
  5436. "__type__": "cc.Vec3",
  5437. "x": 1,
  5438. "y": 1,
  5439. "z": 1
  5440. },
  5441. "_layer": 33554432,
  5442. "_euler": {
  5443. "__type__": "cc.Vec3",
  5444. "x": 0,
  5445. "y": 0,
  5446. "z": 0
  5447. },
  5448. "_id": ""
  5449. },
  5450. {
  5451. "__type__": "cc.UITransform",
  5452. "_name": "",
  5453. "_objFlags": 0,
  5454. "node": {
  5455. "__id__": 246
  5456. },
  5457. "_enabled": true,
  5458. "__prefab": {
  5459. "__id__": 248
  5460. },
  5461. "_priority": 0,
  5462. "_contentSize": {
  5463. "__type__": "cc.Size",
  5464. "width": 127.37,
  5465. "height": 54.4
  5466. },
  5467. "_anchorPoint": {
  5468. "__type__": "cc.Vec2",
  5469. "x": 0.5,
  5470. "y": 0.5
  5471. },
  5472. "_id": ""
  5473. },
  5474. {
  5475. "__type__": "cc.CompPrefabInfo",
  5476. "fileId": "56d/bOcdpMF5llF0a1gesP"
  5477. },
  5478. {
  5479. "__type__": "cc.Label",
  5480. "_name": "",
  5481. "_objFlags": 0,
  5482. "node": {
  5483. "__id__": 246
  5484. },
  5485. "_enabled": true,
  5486. "__prefab": {
  5487. "__id__": 250
  5488. },
  5489. "_visFlags": 0,
  5490. "_customMaterial": null,
  5491. "_srcBlendFactor": 2,
  5492. "_dstBlendFactor": 4,
  5493. "_color": {
  5494. "__type__": "cc.Color",
  5495. "r": 251,
  5496. "g": 244,
  5497. "b": 212,
  5498. "a": 255
  5499. },
  5500. "_string": "现金50元",
  5501. "_horizontalAlign": 1,
  5502. "_verticalAlign": 1,
  5503. "_actualFontSize": 30,
  5504. "_fontSize": 30,
  5505. "_fontFamily": "Arial",
  5506. "_lineHeight": 40,
  5507. "_overflow": 0,
  5508. "_enableWrapText": true,
  5509. "_font": null,
  5510. "_isSystemFontUsed": true,
  5511. "_isItalic": false,
  5512. "_isBold": false,
  5513. "_isUnderline": false,
  5514. "_underlineHeight": 2,
  5515. "_cacheMode": 0,
  5516. "_id": ""
  5517. },
  5518. {
  5519. "__type__": "cc.CompPrefabInfo",
  5520. "fileId": "4dfvEHb6lOz6XCR7pWlVQY"
  5521. },
  5522. {
  5523. "__type__": "cc.LabelOutline",
  5524. "_name": "",
  5525. "_objFlags": 0,
  5526. "node": {
  5527. "__id__": 246
  5528. },
  5529. "_enabled": true,
  5530. "__prefab": {
  5531. "__id__": 252
  5532. },
  5533. "_color": {
  5534. "__type__": "cc.Color",
  5535. "r": 124,
  5536. "g": 34,
  5537. "b": 22,
  5538. "a": 255
  5539. },
  5540. "_width": 2,
  5541. "_id": ""
  5542. },
  5543. {
  5544. "__type__": "cc.CompPrefabInfo",
  5545. "fileId": "98XTOpsStGN4uz6RQmfvd1"
  5546. },
  5547. {
  5548. "__type__": "cc.PrefabInfo",
  5549. "root": {
  5550. "__id__": 1
  5551. },
  5552. "asset": {
  5553. "__id__": 0
  5554. },
  5555. "fileId": "00Vv4FyZBDf7nV+q3nfzJ8"
  5556. },
  5557. {
  5558. "__type__": "cc.UITransform",
  5559. "_name": "",
  5560. "_objFlags": 0,
  5561. "node": {
  5562. "__id__": 245
  5563. },
  5564. "_enabled": true,
  5565. "__prefab": {
  5566. "__id__": 255
  5567. },
  5568. "_priority": 0,
  5569. "_contentSize": {
  5570. "__type__": "cc.Size",
  5571. "width": 126,
  5572. "height": 103
  5573. },
  5574. "_anchorPoint": {
  5575. "__type__": "cc.Vec2",
  5576. "x": 0.5,
  5577. "y": 0.5
  5578. },
  5579. "_id": ""
  5580. },
  5581. {
  5582. "__type__": "cc.CompPrefabInfo",
  5583. "fileId": "f7NISe7HdAD68SLfhnddy8"
  5584. },
  5585. {
  5586. "__type__": "cc.Sprite",
  5587. "_name": "",
  5588. "_objFlags": 0,
  5589. "node": {
  5590. "__id__": 245
  5591. },
  5592. "_enabled": true,
  5593. "__prefab": {
  5594. "__id__": 257
  5595. },
  5596. "_visFlags": 0,
  5597. "_customMaterial": null,
  5598. "_srcBlendFactor": 2,
  5599. "_dstBlendFactor": 4,
  5600. "_color": {
  5601. "__type__": "cc.Color",
  5602. "r": 255,
  5603. "g": 255,
  5604. "b": 255,
  5605. "a": 255
  5606. },
  5607. "_spriteFrame": {
  5608. "__uuid__": "44afff33-5eb1-4f20-8d55-794987779216@f9941"
  5609. },
  5610. "_type": 0,
  5611. "_fillType": 0,
  5612. "_sizeMode": 1,
  5613. "_fillCenter": {
  5614. "__type__": "cc.Vec2",
  5615. "x": 0,
  5616. "y": 0
  5617. },
  5618. "_fillStart": 0,
  5619. "_fillRange": 0,
  5620. "_isTrimmedMode": true,
  5621. "_useGrayscale": false,
  5622. "_atlas": null,
  5623. "_id": ""
  5624. },
  5625. {
  5626. "__type__": "cc.CompPrefabInfo",
  5627. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  5628. },
  5629. {
  5630. "__type__": "cc.PrefabInfo",
  5631. "root": {
  5632. "__id__": 1
  5633. },
  5634. "asset": {
  5635. "__id__": 0
  5636. },
  5637. "fileId": "13cw1oGWRFOZBn+0wHj0vD"
  5638. },
  5639. {
  5640. "__type__": "cc.Node",
  5641. "_name": "奖品6",
  5642. "_objFlags": 0,
  5643. "_parent": {
  5644. "__id__": 188
  5645. },
  5646. "_children": [
  5647. {
  5648. "__id__": 260
  5649. }
  5650. ],
  5651. "_active": true,
  5652. "_components": [
  5653. {
  5654. "__id__": 268
  5655. },
  5656. {
  5657. "__id__": 270
  5658. }
  5659. ],
  5660. "_prefab": {
  5661. "__id__": 272
  5662. },
  5663. "_lpos": {
  5664. "__type__": "cc.Vec3",
  5665. "x": -179,
  5666. "y": -182,
  5667. "z": 0
  5668. },
  5669. "_lrot": {
  5670. "__type__": "cc.Quat",
  5671. "x": 0,
  5672. "y": 0,
  5673. "z": 0,
  5674. "w": 1
  5675. },
  5676. "_lscale": {
  5677. "__type__": "cc.Vec3",
  5678. "x": 1,
  5679. "y": 1,
  5680. "z": 1
  5681. },
  5682. "_layer": 33554432,
  5683. "_euler": {
  5684. "__type__": "cc.Vec3",
  5685. "x": 0,
  5686. "y": 0,
  5687. "z": 0
  5688. },
  5689. "_id": ""
  5690. },
  5691. {
  5692. "__type__": "cc.Node",
  5693. "_name": "title6",
  5694. "_objFlags": 0,
  5695. "_parent": {
  5696. "__id__": 259
  5697. },
  5698. "_children": [],
  5699. "_active": true,
  5700. "_components": [
  5701. {
  5702. "__id__": 261
  5703. },
  5704. {
  5705. "__id__": 263
  5706. },
  5707. {
  5708. "__id__": 265
  5709. }
  5710. ],
  5711. "_prefab": {
  5712. "__id__": 267
  5713. },
  5714. "_lpos": {
  5715. "__type__": "cc.Vec3",
  5716. "x": 0,
  5717. "y": -60,
  5718. "z": 0
  5719. },
  5720. "_lrot": {
  5721. "__type__": "cc.Quat",
  5722. "x": 0,
  5723. "y": 0,
  5724. "z": 0,
  5725. "w": 1
  5726. },
  5727. "_lscale": {
  5728. "__type__": "cc.Vec3",
  5729. "x": 1,
  5730. "y": 1,
  5731. "z": 1
  5732. },
  5733. "_layer": 33554432,
  5734. "_euler": {
  5735. "__type__": "cc.Vec3",
  5736. "x": 0,
  5737. "y": 0,
  5738. "z": 0
  5739. },
  5740. "_id": ""
  5741. },
  5742. {
  5743. "__type__": "cc.UITransform",
  5744. "_name": "",
  5745. "_objFlags": 0,
  5746. "node": {
  5747. "__id__": 260
  5748. },
  5749. "_enabled": true,
  5750. "__prefab": {
  5751. "__id__": 262
  5752. },
  5753. "_priority": 0,
  5754. "_contentSize": {
  5755. "__type__": "cc.Size",
  5756. "width": 106.81,
  5757. "height": 54.4
  5758. },
  5759. "_anchorPoint": {
  5760. "__type__": "cc.Vec2",
  5761. "x": 0.5,
  5762. "y": 0.5
  5763. },
  5764. "_id": ""
  5765. },
  5766. {
  5767. "__type__": "cc.CompPrefabInfo",
  5768. "fileId": "9bDtDlgd1C2raWX/HAoekC"
  5769. },
  5770. {
  5771. "__type__": "cc.Label",
  5772. "_name": "",
  5773. "_objFlags": 0,
  5774. "node": {
  5775. "__id__": 260
  5776. },
  5777. "_enabled": true,
  5778. "__prefab": {
  5779. "__id__": 264
  5780. },
  5781. "_visFlags": 0,
  5782. "_customMaterial": null,
  5783. "_srcBlendFactor": 2,
  5784. "_dstBlendFactor": 4,
  5785. "_color": {
  5786. "__type__": "cc.Color",
  5787. "r": 251,
  5788. "g": 244,
  5789. "b": 212,
  5790. "a": 255
  5791. },
  5792. "_string": "现金50元",
  5793. "_horizontalAlign": 1,
  5794. "_verticalAlign": 1,
  5795. "_actualFontSize": 25,
  5796. "_fontSize": 25,
  5797. "_fontFamily": "Arial",
  5798. "_lineHeight": 40,
  5799. "_overflow": 0,
  5800. "_enableWrapText": true,
  5801. "_font": null,
  5802. "_isSystemFontUsed": true,
  5803. "_isItalic": false,
  5804. "_isBold": false,
  5805. "_isUnderline": false,
  5806. "_underlineHeight": 2,
  5807. "_cacheMode": 0,
  5808. "_id": ""
  5809. },
  5810. {
  5811. "__type__": "cc.CompPrefabInfo",
  5812. "fileId": "8ePNY0vSlERJXHyB54NjqU"
  5813. },
  5814. {
  5815. "__type__": "cc.LabelOutline",
  5816. "_name": "",
  5817. "_objFlags": 0,
  5818. "node": {
  5819. "__id__": 260
  5820. },
  5821. "_enabled": true,
  5822. "__prefab": {
  5823. "__id__": 266
  5824. },
  5825. "_color": {
  5826. "__type__": "cc.Color",
  5827. "r": 124,
  5828. "g": 34,
  5829. "b": 22,
  5830. "a": 255
  5831. },
  5832. "_width": 2,
  5833. "_id": ""
  5834. },
  5835. {
  5836. "__type__": "cc.CompPrefabInfo",
  5837. "fileId": "431vlT5KFLRaCXYsRRcv6f"
  5838. },
  5839. {
  5840. "__type__": "cc.PrefabInfo",
  5841. "root": {
  5842. "__id__": 1
  5843. },
  5844. "asset": {
  5845. "__id__": 0
  5846. },
  5847. "fileId": "8dXovjubJJ4ppZ8pJOyfBh"
  5848. },
  5849. {
  5850. "__type__": "cc.UITransform",
  5851. "_name": "",
  5852. "_objFlags": 0,
  5853. "node": {
  5854. "__id__": 259
  5855. },
  5856. "_enabled": true,
  5857. "__prefab": {
  5858. "__id__": 269
  5859. },
  5860. "_priority": 0,
  5861. "_contentSize": {
  5862. "__type__": "cc.Size",
  5863. "width": 126,
  5864. "height": 103
  5865. },
  5866. "_anchorPoint": {
  5867. "__type__": "cc.Vec2",
  5868. "x": 0.5,
  5869. "y": 0.5
  5870. },
  5871. "_id": ""
  5872. },
  5873. {
  5874. "__type__": "cc.CompPrefabInfo",
  5875. "fileId": "f7NISe7HdAD68SLfhnddy8"
  5876. },
  5877. {
  5878. "__type__": "cc.Sprite",
  5879. "_name": "",
  5880. "_objFlags": 0,
  5881. "node": {
  5882. "__id__": 259
  5883. },
  5884. "_enabled": true,
  5885. "__prefab": {
  5886. "__id__": 271
  5887. },
  5888. "_visFlags": 0,
  5889. "_customMaterial": null,
  5890. "_srcBlendFactor": 2,
  5891. "_dstBlendFactor": 4,
  5892. "_color": {
  5893. "__type__": "cc.Color",
  5894. "r": 255,
  5895. "g": 255,
  5896. "b": 255,
  5897. "a": 255
  5898. },
  5899. "_spriteFrame": {
  5900. "__uuid__": "44afff33-5eb1-4f20-8d55-794987779216@f9941"
  5901. },
  5902. "_type": 0,
  5903. "_fillType": 0,
  5904. "_sizeMode": 1,
  5905. "_fillCenter": {
  5906. "__type__": "cc.Vec2",
  5907. "x": 0,
  5908. "y": 0
  5909. },
  5910. "_fillStart": 0,
  5911. "_fillRange": 0,
  5912. "_isTrimmedMode": true,
  5913. "_useGrayscale": false,
  5914. "_atlas": null,
  5915. "_id": ""
  5916. },
  5917. {
  5918. "__type__": "cc.CompPrefabInfo",
  5919. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  5920. },
  5921. {
  5922. "__type__": "cc.PrefabInfo",
  5923. "root": {
  5924. "__id__": 1
  5925. },
  5926. "asset": {
  5927. "__id__": 0
  5928. },
  5929. "fileId": "d6ywRI76tGgIXw9JQ+yz3R"
  5930. },
  5931. {
  5932. "__type__": "cc.Node",
  5933. "_name": "奖品5",
  5934. "_objFlags": 0,
  5935. "_parent": {
  5936. "__id__": 188
  5937. },
  5938. "_children": [
  5939. {
  5940. "__id__": 274
  5941. }
  5942. ],
  5943. "_active": true,
  5944. "_components": [
  5945. {
  5946. "__id__": 282
  5947. },
  5948. {
  5949. "__id__": 284
  5950. }
  5951. ],
  5952. "_prefab": {
  5953. "__id__": 286
  5954. },
  5955. "_lpos": {
  5956. "__type__": "cc.Vec3",
  5957. "x": 0,
  5958. "y": -182,
  5959. "z": 0
  5960. },
  5961. "_lrot": {
  5962. "__type__": "cc.Quat",
  5963. "x": 0,
  5964. "y": 0,
  5965. "z": 0,
  5966. "w": 1
  5967. },
  5968. "_lscale": {
  5969. "__type__": "cc.Vec3",
  5970. "x": 1,
  5971. "y": 1,
  5972. "z": 1
  5973. },
  5974. "_layer": 33554432,
  5975. "_euler": {
  5976. "__type__": "cc.Vec3",
  5977. "x": 0,
  5978. "y": 0,
  5979. "z": 0
  5980. },
  5981. "_id": ""
  5982. },
  5983. {
  5984. "__type__": "cc.Node",
  5985. "_name": "title5",
  5986. "_objFlags": 0,
  5987. "_parent": {
  5988. "__id__": 273
  5989. },
  5990. "_children": [],
  5991. "_active": true,
  5992. "_components": [
  5993. {
  5994. "__id__": 275
  5995. },
  5996. {
  5997. "__id__": 277
  5998. },
  5999. {
  6000. "__id__": 279
  6001. }
  6002. ],
  6003. "_prefab": {
  6004. "__id__": 281
  6005. },
  6006. "_lpos": {
  6007. "__type__": "cc.Vec3",
  6008. "x": 0,
  6009. "y": -60,
  6010. "z": 0
  6011. },
  6012. "_lrot": {
  6013. "__type__": "cc.Quat",
  6014. "x": 0,
  6015. "y": 0,
  6016. "z": 0,
  6017. "w": 1
  6018. },
  6019. "_lscale": {
  6020. "__type__": "cc.Vec3",
  6021. "x": 1,
  6022. "y": 1,
  6023. "z": 1
  6024. },
  6025. "_layer": 33554432,
  6026. "_euler": {
  6027. "__type__": "cc.Vec3",
  6028. "x": 0,
  6029. "y": 0,
  6030. "z": 0
  6031. },
  6032. "_id": ""
  6033. },
  6034. {
  6035. "__type__": "cc.UITransform",
  6036. "_name": "",
  6037. "_objFlags": 0,
  6038. "node": {
  6039. "__id__": 274
  6040. },
  6041. "_enabled": true,
  6042. "__prefab": {
  6043. "__id__": 276
  6044. },
  6045. "_priority": 0,
  6046. "_contentSize": {
  6047. "__type__": "cc.Size",
  6048. "width": 127.37,
  6049. "height": 54.4
  6050. },
  6051. "_anchorPoint": {
  6052. "__type__": "cc.Vec2",
  6053. "x": 0.5,
  6054. "y": 0.5
  6055. },
  6056. "_id": ""
  6057. },
  6058. {
  6059. "__type__": "cc.CompPrefabInfo",
  6060. "fileId": "2910fs/WpISoBcw9jTl4a0"
  6061. },
  6062. {
  6063. "__type__": "cc.Label",
  6064. "_name": "",
  6065. "_objFlags": 0,
  6066. "node": {
  6067. "__id__": 274
  6068. },
  6069. "_enabled": true,
  6070. "__prefab": {
  6071. "__id__": 278
  6072. },
  6073. "_visFlags": 0,
  6074. "_customMaterial": null,
  6075. "_srcBlendFactor": 2,
  6076. "_dstBlendFactor": 4,
  6077. "_color": {
  6078. "__type__": "cc.Color",
  6079. "r": 251,
  6080. "g": 244,
  6081. "b": 212,
  6082. "a": 255
  6083. },
  6084. "_string": "现金50元",
  6085. "_horizontalAlign": 1,
  6086. "_verticalAlign": 1,
  6087. "_actualFontSize": 30,
  6088. "_fontSize": 30,
  6089. "_fontFamily": "Arial",
  6090. "_lineHeight": 40,
  6091. "_overflow": 0,
  6092. "_enableWrapText": true,
  6093. "_font": null,
  6094. "_isSystemFontUsed": true,
  6095. "_isItalic": false,
  6096. "_isBold": false,
  6097. "_isUnderline": false,
  6098. "_underlineHeight": 2,
  6099. "_cacheMode": 0,
  6100. "_id": ""
  6101. },
  6102. {
  6103. "__type__": "cc.CompPrefabInfo",
  6104. "fileId": "ada3OTVD9GY5+sTi0p2ZER"
  6105. },
  6106. {
  6107. "__type__": "cc.LabelOutline",
  6108. "_name": "",
  6109. "_objFlags": 0,
  6110. "node": {
  6111. "__id__": 274
  6112. },
  6113. "_enabled": true,
  6114. "__prefab": {
  6115. "__id__": 280
  6116. },
  6117. "_color": {
  6118. "__type__": "cc.Color",
  6119. "r": 124,
  6120. "g": 34,
  6121. "b": 22,
  6122. "a": 255
  6123. },
  6124. "_width": 2,
  6125. "_id": ""
  6126. },
  6127. {
  6128. "__type__": "cc.CompPrefabInfo",
  6129. "fileId": "600cLgE1NAPrvZivG6T2kN"
  6130. },
  6131. {
  6132. "__type__": "cc.PrefabInfo",
  6133. "root": {
  6134. "__id__": 1
  6135. },
  6136. "asset": {
  6137. "__id__": 0
  6138. },
  6139. "fileId": "d3hiZidE9EnJwodVaEPh20"
  6140. },
  6141. {
  6142. "__type__": "cc.UITransform",
  6143. "_name": "",
  6144. "_objFlags": 0,
  6145. "node": {
  6146. "__id__": 273
  6147. },
  6148. "_enabled": true,
  6149. "__prefab": {
  6150. "__id__": 283
  6151. },
  6152. "_priority": 0,
  6153. "_contentSize": {
  6154. "__type__": "cc.Size",
  6155. "width": 126,
  6156. "height": 103
  6157. },
  6158. "_anchorPoint": {
  6159. "__type__": "cc.Vec2",
  6160. "x": 0.5,
  6161. "y": 0.5
  6162. },
  6163. "_id": ""
  6164. },
  6165. {
  6166. "__type__": "cc.CompPrefabInfo",
  6167. "fileId": "f7NISe7HdAD68SLfhnddy8"
  6168. },
  6169. {
  6170. "__type__": "cc.Sprite",
  6171. "_name": "",
  6172. "_objFlags": 0,
  6173. "node": {
  6174. "__id__": 273
  6175. },
  6176. "_enabled": true,
  6177. "__prefab": {
  6178. "__id__": 285
  6179. },
  6180. "_visFlags": 0,
  6181. "_customMaterial": null,
  6182. "_srcBlendFactor": 2,
  6183. "_dstBlendFactor": 4,
  6184. "_color": {
  6185. "__type__": "cc.Color",
  6186. "r": 255,
  6187. "g": 255,
  6188. "b": 255,
  6189. "a": 255
  6190. },
  6191. "_spriteFrame": {
  6192. "__uuid__": "44afff33-5eb1-4f20-8d55-794987779216@f9941"
  6193. },
  6194. "_type": 0,
  6195. "_fillType": 0,
  6196. "_sizeMode": 1,
  6197. "_fillCenter": {
  6198. "__type__": "cc.Vec2",
  6199. "x": 0,
  6200. "y": 0
  6201. },
  6202. "_fillStart": 0,
  6203. "_fillRange": 0,
  6204. "_isTrimmedMode": true,
  6205. "_useGrayscale": false,
  6206. "_atlas": null,
  6207. "_id": ""
  6208. },
  6209. {
  6210. "__type__": "cc.CompPrefabInfo",
  6211. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  6212. },
  6213. {
  6214. "__type__": "cc.PrefabInfo",
  6215. "root": {
  6216. "__id__": 1
  6217. },
  6218. "asset": {
  6219. "__id__": 0
  6220. },
  6221. "fileId": "c8N7btrm9Fw4QqLyzrv1Nh"
  6222. },
  6223. {
  6224. "__type__": "cc.Node",
  6225. "_name": "奖品4",
  6226. "_objFlags": 0,
  6227. "_parent": {
  6228. "__id__": 188
  6229. },
  6230. "_children": [
  6231. {
  6232. "__id__": 288
  6233. }
  6234. ],
  6235. "_active": true,
  6236. "_components": [
  6237. {
  6238. "__id__": 296
  6239. },
  6240. {
  6241. "__id__": 298
  6242. }
  6243. ],
  6244. "_prefab": {
  6245. "__id__": 300
  6246. },
  6247. "_lpos": {
  6248. "__type__": "cc.Vec3",
  6249. "x": 179,
  6250. "y": -182,
  6251. "z": 0
  6252. },
  6253. "_lrot": {
  6254. "__type__": "cc.Quat",
  6255. "x": 0,
  6256. "y": 0,
  6257. "z": 0,
  6258. "w": 1
  6259. },
  6260. "_lscale": {
  6261. "__type__": "cc.Vec3",
  6262. "x": 1,
  6263. "y": 1,
  6264. "z": 1
  6265. },
  6266. "_layer": 33554432,
  6267. "_euler": {
  6268. "__type__": "cc.Vec3",
  6269. "x": 0,
  6270. "y": 0,
  6271. "z": 0
  6272. },
  6273. "_id": ""
  6274. },
  6275. {
  6276. "__type__": "cc.Node",
  6277. "_name": "title4",
  6278. "_objFlags": 0,
  6279. "_parent": {
  6280. "__id__": 287
  6281. },
  6282. "_children": [],
  6283. "_active": true,
  6284. "_components": [
  6285. {
  6286. "__id__": 289
  6287. },
  6288. {
  6289. "__id__": 291
  6290. },
  6291. {
  6292. "__id__": 293
  6293. }
  6294. ],
  6295. "_prefab": {
  6296. "__id__": 295
  6297. },
  6298. "_lpos": {
  6299. "__type__": "cc.Vec3",
  6300. "x": 0,
  6301. "y": -60,
  6302. "z": 0
  6303. },
  6304. "_lrot": {
  6305. "__type__": "cc.Quat",
  6306. "x": 0,
  6307. "y": 0,
  6308. "z": 0,
  6309. "w": 1
  6310. },
  6311. "_lscale": {
  6312. "__type__": "cc.Vec3",
  6313. "x": 1,
  6314. "y": 1,
  6315. "z": 1
  6316. },
  6317. "_layer": 33554432,
  6318. "_euler": {
  6319. "__type__": "cc.Vec3",
  6320. "x": 0,
  6321. "y": 0,
  6322. "z": 0
  6323. },
  6324. "_id": ""
  6325. },
  6326. {
  6327. "__type__": "cc.UITransform",
  6328. "_name": "",
  6329. "_objFlags": 0,
  6330. "node": {
  6331. "__id__": 288
  6332. },
  6333. "_enabled": true,
  6334. "__prefab": {
  6335. "__id__": 290
  6336. },
  6337. "_priority": 0,
  6338. "_contentSize": {
  6339. "__type__": "cc.Size",
  6340. "width": 127.37,
  6341. "height": 54.4
  6342. },
  6343. "_anchorPoint": {
  6344. "__type__": "cc.Vec2",
  6345. "x": 0.5,
  6346. "y": 0.5
  6347. },
  6348. "_id": ""
  6349. },
  6350. {
  6351. "__type__": "cc.CompPrefabInfo",
  6352. "fileId": "75DUK75xRGG4YUxesTlpjc"
  6353. },
  6354. {
  6355. "__type__": "cc.Label",
  6356. "_name": "",
  6357. "_objFlags": 0,
  6358. "node": {
  6359. "__id__": 288
  6360. },
  6361. "_enabled": true,
  6362. "__prefab": {
  6363. "__id__": 292
  6364. },
  6365. "_visFlags": 0,
  6366. "_customMaterial": null,
  6367. "_srcBlendFactor": 2,
  6368. "_dstBlendFactor": 4,
  6369. "_color": {
  6370. "__type__": "cc.Color",
  6371. "r": 251,
  6372. "g": 244,
  6373. "b": 212,
  6374. "a": 255
  6375. },
  6376. "_string": "现金50元",
  6377. "_horizontalAlign": 1,
  6378. "_verticalAlign": 1,
  6379. "_actualFontSize": 30,
  6380. "_fontSize": 30,
  6381. "_fontFamily": "Arial",
  6382. "_lineHeight": 40,
  6383. "_overflow": 0,
  6384. "_enableWrapText": true,
  6385. "_font": null,
  6386. "_isSystemFontUsed": true,
  6387. "_isItalic": false,
  6388. "_isBold": false,
  6389. "_isUnderline": false,
  6390. "_underlineHeight": 2,
  6391. "_cacheMode": 0,
  6392. "_id": ""
  6393. },
  6394. {
  6395. "__type__": "cc.CompPrefabInfo",
  6396. "fileId": "ecvrJ5pehORLE3h+RxAzPg"
  6397. },
  6398. {
  6399. "__type__": "cc.LabelOutline",
  6400. "_name": "",
  6401. "_objFlags": 0,
  6402. "node": {
  6403. "__id__": 288
  6404. },
  6405. "_enabled": true,
  6406. "__prefab": {
  6407. "__id__": 294
  6408. },
  6409. "_color": {
  6410. "__type__": "cc.Color",
  6411. "r": 124,
  6412. "g": 34,
  6413. "b": 22,
  6414. "a": 255
  6415. },
  6416. "_width": 2,
  6417. "_id": ""
  6418. },
  6419. {
  6420. "__type__": "cc.CompPrefabInfo",
  6421. "fileId": "0fl5OJ1A5MLbU66imsp3oE"
  6422. },
  6423. {
  6424. "__type__": "cc.PrefabInfo",
  6425. "root": {
  6426. "__id__": 1
  6427. },
  6428. "asset": {
  6429. "__id__": 0
  6430. },
  6431. "fileId": "ccWqWNyw1Crbp0dWMFfx+X"
  6432. },
  6433. {
  6434. "__type__": "cc.UITransform",
  6435. "_name": "",
  6436. "_objFlags": 0,
  6437. "node": {
  6438. "__id__": 287
  6439. },
  6440. "_enabled": true,
  6441. "__prefab": {
  6442. "__id__": 297
  6443. },
  6444. "_priority": 0,
  6445. "_contentSize": {
  6446. "__type__": "cc.Size",
  6447. "width": 126,
  6448. "height": 103
  6449. },
  6450. "_anchorPoint": {
  6451. "__type__": "cc.Vec2",
  6452. "x": 0.5,
  6453. "y": 0.5
  6454. },
  6455. "_id": ""
  6456. },
  6457. {
  6458. "__type__": "cc.CompPrefabInfo",
  6459. "fileId": "f7NISe7HdAD68SLfhnddy8"
  6460. },
  6461. {
  6462. "__type__": "cc.Sprite",
  6463. "_name": "",
  6464. "_objFlags": 0,
  6465. "node": {
  6466. "__id__": 287
  6467. },
  6468. "_enabled": true,
  6469. "__prefab": {
  6470. "__id__": 299
  6471. },
  6472. "_visFlags": 0,
  6473. "_customMaterial": null,
  6474. "_srcBlendFactor": 2,
  6475. "_dstBlendFactor": 4,
  6476. "_color": {
  6477. "__type__": "cc.Color",
  6478. "r": 255,
  6479. "g": 255,
  6480. "b": 255,
  6481. "a": 255
  6482. },
  6483. "_spriteFrame": {
  6484. "__uuid__": "44afff33-5eb1-4f20-8d55-794987779216@f9941"
  6485. },
  6486. "_type": 0,
  6487. "_fillType": 0,
  6488. "_sizeMode": 1,
  6489. "_fillCenter": {
  6490. "__type__": "cc.Vec2",
  6491. "x": 0,
  6492. "y": 0
  6493. },
  6494. "_fillStart": 0,
  6495. "_fillRange": 0,
  6496. "_isTrimmedMode": true,
  6497. "_useGrayscale": false,
  6498. "_atlas": null,
  6499. "_id": ""
  6500. },
  6501. {
  6502. "__type__": "cc.CompPrefabInfo",
  6503. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  6504. },
  6505. {
  6506. "__type__": "cc.PrefabInfo",
  6507. "root": {
  6508. "__id__": 1
  6509. },
  6510. "asset": {
  6511. "__id__": 0
  6512. },
  6513. "fileId": "8ec34n28BBcKBCJaW/1Jfv"
  6514. },
  6515. {
  6516. "__type__": "cc.UITransform",
  6517. "_name": "",
  6518. "_objFlags": 0,
  6519. "node": {
  6520. "__id__": 188
  6521. },
  6522. "_enabled": true,
  6523. "__prefab": {
  6524. "__id__": 302
  6525. },
  6526. "_priority": 0,
  6527. "_contentSize": {
  6528. "__type__": "cc.Size",
  6529. "width": 500,
  6530. "height": 500
  6531. },
  6532. "_anchorPoint": {
  6533. "__type__": "cc.Vec2",
  6534. "x": 0.5,
  6535. "y": 0.5
  6536. },
  6537. "_id": ""
  6538. },
  6539. {
  6540. "__type__": "cc.CompPrefabInfo",
  6541. "fileId": "71F9vsVsZH7ZFd+PpN0azA"
  6542. },
  6543. {
  6544. "__type__": "cc.Layout",
  6545. "_name": "",
  6546. "_objFlags": 0,
  6547. "node": {
  6548. "__id__": 188
  6549. },
  6550. "_enabled": true,
  6551. "__prefab": {
  6552. "__id__": 304
  6553. },
  6554. "_resizeMode": 0,
  6555. "_layoutType": 0,
  6556. "_cellSize": {
  6557. "__type__": "cc.Size",
  6558. "width": 40,
  6559. "height": 40
  6560. },
  6561. "_startAxis": 0,
  6562. "_paddingLeft": 0,
  6563. "_paddingRight": 0,
  6564. "_paddingTop": 0,
  6565. "_paddingBottom": 0,
  6566. "_spacingX": 0,
  6567. "_spacingY": 0,
  6568. "_verticalDirection": 1,
  6569. "_horizontalDirection": 0,
  6570. "_constraint": 0,
  6571. "_constraintNum": 2,
  6572. "_affectedByScale": false,
  6573. "_isAlign": true,
  6574. "_id": ""
  6575. },
  6576. {
  6577. "__type__": "cc.CompPrefabInfo",
  6578. "fileId": "eaGEkmlCpANK+GS6CImtZa"
  6579. },
  6580. {
  6581. "__type__": "318b85k+u5JyasDUVrrNdEo",
  6582. "_name": "",
  6583. "_objFlags": 0,
  6584. "node": {
  6585. "__id__": 188
  6586. },
  6587. "_enabled": true,
  6588. "__prefab": {
  6589. "__id__": 306
  6590. },
  6591. "prize1": {
  6592. "__id__": 203
  6593. },
  6594. "prize2": {
  6595. "__id__": 217
  6596. },
  6597. "prize3": {
  6598. "__id__": 245
  6599. },
  6600. "prize4": {
  6601. "__id__": 287
  6602. },
  6603. "prize5": {
  6604. "__id__": 273
  6605. },
  6606. "prize6": {
  6607. "__id__": 259
  6608. },
  6609. "prize7": {
  6610. "__id__": 231
  6611. },
  6612. "prize8": {
  6613. "__id__": 189
  6614. },
  6615. "prizeTxt1": {
  6616. "__id__": 204
  6617. },
  6618. "prizeTxt2": {
  6619. "__id__": 218
  6620. },
  6621. "prizeTxt3": {
  6622. "__id__": 246
  6623. },
  6624. "prizeTxt4": {
  6625. "__id__": 288
  6626. },
  6627. "prizeTxt5": {
  6628. "__id__": 274
  6629. },
  6630. "prizeTxt6": {
  6631. "__id__": 260
  6632. },
  6633. "prizeTxt7": {
  6634. "__id__": 232
  6635. },
  6636. "prizeTxt8": {
  6637. "__id__": 190
  6638. },
  6639. "_id": ""
  6640. },
  6641. {
  6642. "__type__": "cc.CompPrefabInfo",
  6643. "fileId": "6bOz2lC/RFdrBs/Kuddoi3"
  6644. },
  6645. {
  6646. "__type__": "cc.PrefabInfo",
  6647. "root": {
  6648. "__id__": 1
  6649. },
  6650. "asset": {
  6651. "__id__": 0
  6652. },
  6653. "fileId": "75REXJfgJI3q9FQMY/WQL8"
  6654. },
  6655. {
  6656. "__type__": "cc.Node",
  6657. "_name": "启动按钮",
  6658. "_objFlags": 0,
  6659. "_parent": {
  6660. "__id__": 12
  6661. },
  6662. "_children": [],
  6663. "_active": true,
  6664. "_components": [
  6665. {
  6666. "__id__": 309
  6667. },
  6668. {
  6669. "__id__": 311
  6670. }
  6671. ],
  6672. "_prefab": {
  6673. "__id__": 313
  6674. },
  6675. "_lpos": {
  6676. "__type__": "cc.Vec3",
  6677. "x": 0,
  6678. "y": 0,
  6679. "z": 0
  6680. },
  6681. "_lrot": {
  6682. "__type__": "cc.Quat",
  6683. "x": 0,
  6684. "y": 0,
  6685. "z": 0,
  6686. "w": 1
  6687. },
  6688. "_lscale": {
  6689. "__type__": "cc.Vec3",
  6690. "x": 1,
  6691. "y": 1,
  6692. "z": 1
  6693. },
  6694. "_layer": 33554432,
  6695. "_euler": {
  6696. "__type__": "cc.Vec3",
  6697. "x": 0,
  6698. "y": 0,
  6699. "z": 0
  6700. },
  6701. "_id": ""
  6702. },
  6703. {
  6704. "__type__": "cc.UITransform",
  6705. "_name": "",
  6706. "_objFlags": 0,
  6707. "node": {
  6708. "__id__": 308
  6709. },
  6710. "_enabled": true,
  6711. "__prefab": {
  6712. "__id__": 310
  6713. },
  6714. "_priority": 0,
  6715. "_contentSize": {
  6716. "__type__": "cc.Size",
  6717. "width": 159,
  6718. "height": 168
  6719. },
  6720. "_anchorPoint": {
  6721. "__type__": "cc.Vec2",
  6722. "x": 0.5,
  6723. "y": 0.5
  6724. },
  6725. "_id": ""
  6726. },
  6727. {
  6728. "__type__": "cc.CompPrefabInfo",
  6729. "fileId": "98TYGMtwRBTYZZn4EZmhzJ"
  6730. },
  6731. {
  6732. "__type__": "cc.Sprite",
  6733. "_name": "",
  6734. "_objFlags": 0,
  6735. "node": {
  6736. "__id__": 308
  6737. },
  6738. "_enabled": true,
  6739. "__prefab": {
  6740. "__id__": 312
  6741. },
  6742. "_visFlags": 0,
  6743. "_customMaterial": null,
  6744. "_srcBlendFactor": 2,
  6745. "_dstBlendFactor": 4,
  6746. "_color": {
  6747. "__type__": "cc.Color",
  6748. "r": 255,
  6749. "g": 255,
  6750. "b": 255,
  6751. "a": 255
  6752. },
  6753. "_spriteFrame": {
  6754. "__uuid__": "61add1df-c930-48ed-9353-7a4658826c39@f9941"
  6755. },
  6756. "_type": 1,
  6757. "_fillType": 0,
  6758. "_sizeMode": 1,
  6759. "_fillCenter": {
  6760. "__type__": "cc.Vec2",
  6761. "x": 0,
  6762. "y": 0
  6763. },
  6764. "_fillStart": 0,
  6765. "_fillRange": 0,
  6766. "_isTrimmedMode": true,
  6767. "_useGrayscale": false,
  6768. "_atlas": null,
  6769. "_id": ""
  6770. },
  6771. {
  6772. "__type__": "cc.CompPrefabInfo",
  6773. "fileId": "77BcV1zfNHo4LI4KRqZupe"
  6774. },
  6775. {
  6776. "__type__": "cc.PrefabInfo",
  6777. "root": {
  6778. "__id__": 1
  6779. },
  6780. "asset": {
  6781. "__id__": 0
  6782. },
  6783. "fileId": "b7nSrLwB5O6rA3t1JTYwog"
  6784. },
  6785. {
  6786. "__type__": "cc.Node",
  6787. "_name": "标题_幸运抽奖",
  6788. "_objFlags": 0,
  6789. "_parent": {
  6790. "__id__": 12
  6791. },
  6792. "_children": [
  6793. {
  6794. "__id__": 315
  6795. },
  6796. {
  6797. "__id__": 323
  6798. }
  6799. ],
  6800. "_active": true,
  6801. "_components": [
  6802. {
  6803. "__id__": 331
  6804. },
  6805. {
  6806. "__id__": 333
  6807. },
  6808. {
  6809. "__id__": 335
  6810. }
  6811. ],
  6812. "_prefab": {
  6813. "__id__": 337
  6814. },
  6815. "_lpos": {
  6816. "__type__": "cc.Vec3",
  6817. "x": 0,
  6818. "y": 338.139,
  6819. "z": 0
  6820. },
  6821. "_lrot": {
  6822. "__type__": "cc.Quat",
  6823. "x": 0,
  6824. "y": 0,
  6825. "z": 0,
  6826. "w": 1
  6827. },
  6828. "_lscale": {
  6829. "__type__": "cc.Vec3",
  6830. "x": 1,
  6831. "y": 1,
  6832. "z": 1
  6833. },
  6834. "_layer": 33554432,
  6835. "_euler": {
  6836. "__type__": "cc.Vec3",
  6837. "x": 0,
  6838. "y": 0,
  6839. "z": 0
  6840. },
  6841. "_id": ""
  6842. },
  6843. {
  6844. "__type__": "cc.Node",
  6845. "_name": "标题",
  6846. "_objFlags": 0,
  6847. "_parent": {
  6848. "__id__": 314
  6849. },
  6850. "_children": [],
  6851. "_active": true,
  6852. "_components": [
  6853. {
  6854. "__id__": 316
  6855. },
  6856. {
  6857. "__id__": 318
  6858. },
  6859. {
  6860. "__id__": 320
  6861. }
  6862. ],
  6863. "_prefab": {
  6864. "__id__": 322
  6865. },
  6866. "_lpos": {
  6867. "__type__": "cc.Vec3",
  6868. "x": 0,
  6869. "y": 25.04,
  6870. "z": 0
  6871. },
  6872. "_lrot": {
  6873. "__type__": "cc.Quat",
  6874. "x": 0,
  6875. "y": 0,
  6876. "z": 0,
  6877. "w": 1
  6878. },
  6879. "_lscale": {
  6880. "__type__": "cc.Vec3",
  6881. "x": 1,
  6882. "y": 1,
  6883. "z": 1
  6884. },
  6885. "_layer": 33554432,
  6886. "_euler": {
  6887. "__type__": "cc.Vec3",
  6888. "x": 0,
  6889. "y": 0,
  6890. "z": 0
  6891. },
  6892. "_id": ""
  6893. },
  6894. {
  6895. "__type__": "cc.UITransform",
  6896. "_name": "",
  6897. "_objFlags": 0,
  6898. "node": {
  6899. "__id__": 315
  6900. },
  6901. "_enabled": true,
  6902. "__prefab": {
  6903. "__id__": 317
  6904. },
  6905. "_priority": 0,
  6906. "_contentSize": {
  6907. "__type__": "cc.Size",
  6908. "width": 256,
  6909. "height": 49
  6910. },
  6911. "_anchorPoint": {
  6912. "__type__": "cc.Vec2",
  6913. "x": 0.5,
  6914. "y": 0.5
  6915. },
  6916. "_id": ""
  6917. },
  6918. {
  6919. "__type__": "cc.CompPrefabInfo",
  6920. "fileId": "f7NISe7HdAD68SLfhnddy8"
  6921. },
  6922. {
  6923. "__type__": "cc.Sprite",
  6924. "_name": "",
  6925. "_objFlags": 0,
  6926. "node": {
  6927. "__id__": 315
  6928. },
  6929. "_enabled": true,
  6930. "__prefab": {
  6931. "__id__": 319
  6932. },
  6933. "_visFlags": 0,
  6934. "_customMaterial": null,
  6935. "_srcBlendFactor": 2,
  6936. "_dstBlendFactor": 4,
  6937. "_color": {
  6938. "__type__": "cc.Color",
  6939. "r": 255,
  6940. "g": 255,
  6941. "b": 255,
  6942. "a": 255
  6943. },
  6944. "_spriteFrame": {
  6945. "__uuid__": "b01411e7-efd0-494b-b584-fb8e9c396f77@f9941"
  6946. },
  6947. "_type": 0,
  6948. "_fillType": 0,
  6949. "_sizeMode": 1,
  6950. "_fillCenter": {
  6951. "__type__": "cc.Vec2",
  6952. "x": 0,
  6953. "y": 0
  6954. },
  6955. "_fillStart": 0,
  6956. "_fillRange": 0,
  6957. "_isTrimmedMode": true,
  6958. "_useGrayscale": false,
  6959. "_atlas": null,
  6960. "_id": ""
  6961. },
  6962. {
  6963. "__type__": "cc.CompPrefabInfo",
  6964. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  6965. },
  6966. {
  6967. "__type__": "cc.Widget",
  6968. "_name": "",
  6969. "_objFlags": 0,
  6970. "node": {
  6971. "__id__": 315
  6972. },
  6973. "_enabled": true,
  6974. "__prefab": {
  6975. "__id__": 321
  6976. },
  6977. "_alignFlags": 18,
  6978. "_target": null,
  6979. "_left": 0,
  6980. "_right": 0,
  6981. "_top": 0,
  6982. "_bottom": 0,
  6983. "_horizontalCenter": 0,
  6984. "_verticalCenter": 25.04,
  6985. "_isAbsLeft": true,
  6986. "_isAbsRight": true,
  6987. "_isAbsTop": true,
  6988. "_isAbsBottom": true,
  6989. "_isAbsHorizontalCenter": true,
  6990. "_isAbsVerticalCenter": true,
  6991. "_originalWidth": 0,
  6992. "_originalHeight": 0,
  6993. "_alignMode": 2,
  6994. "_lockFlags": 0,
  6995. "_id": ""
  6996. },
  6997. {
  6998. "__type__": "cc.CompPrefabInfo",
  6999. "fileId": "b1y5RpH0VJR76Vp58533QB"
  7000. },
  7001. {
  7002. "__type__": "cc.PrefabInfo",
  7003. "root": {
  7004. "__id__": 1
  7005. },
  7006. "asset": {
  7007. "__id__": 0
  7008. },
  7009. "fileId": "87aDa4ZGVKu5E1dFZubwuQ"
  7010. },
  7011. {
  7012. "__type__": "cc.Node",
  7013. "_name": "云",
  7014. "_objFlags": 0,
  7015. "_parent": {
  7016. "__id__": 314
  7017. },
  7018. "_children": [],
  7019. "_active": true,
  7020. "_components": [
  7021. {
  7022. "__id__": 324
  7023. },
  7024. {
  7025. "__id__": 326
  7026. },
  7027. {
  7028. "__id__": 328
  7029. }
  7030. ],
  7031. "_prefab": {
  7032. "__id__": 330
  7033. },
  7034. "_lpos": {
  7035. "__type__": "cc.Vec3",
  7036. "x": -152.153,
  7037. "y": 51.38900000000001,
  7038. "z": 0
  7039. },
  7040. "_lrot": {
  7041. "__type__": "cc.Quat",
  7042. "x": 0,
  7043. "y": 0,
  7044. "z": 0,
  7045. "w": 1
  7046. },
  7047. "_lscale": {
  7048. "__type__": "cc.Vec3",
  7049. "x": 1,
  7050. "y": 1,
  7051. "z": 1
  7052. },
  7053. "_layer": 33554432,
  7054. "_euler": {
  7055. "__type__": "cc.Vec3",
  7056. "x": 0,
  7057. "y": 0,
  7058. "z": 0
  7059. },
  7060. "_id": ""
  7061. },
  7062. {
  7063. "__type__": "cc.UITransform",
  7064. "_name": "",
  7065. "_objFlags": 0,
  7066. "node": {
  7067. "__id__": 323
  7068. },
  7069. "_enabled": true,
  7070. "__prefab": {
  7071. "__id__": 325
  7072. },
  7073. "_priority": 0,
  7074. "_contentSize": {
  7075. "__type__": "cc.Size",
  7076. "width": 146,
  7077. "height": 62
  7078. },
  7079. "_anchorPoint": {
  7080. "__type__": "cc.Vec2",
  7081. "x": 0.5,
  7082. "y": 0.5
  7083. },
  7084. "_id": ""
  7085. },
  7086. {
  7087. "__type__": "cc.CompPrefabInfo",
  7088. "fileId": "f7NISe7HdAD68SLfhnddy8"
  7089. },
  7090. {
  7091. "__type__": "cc.Sprite",
  7092. "_name": "",
  7093. "_objFlags": 0,
  7094. "node": {
  7095. "__id__": 323
  7096. },
  7097. "_enabled": true,
  7098. "__prefab": {
  7099. "__id__": 327
  7100. },
  7101. "_visFlags": 0,
  7102. "_customMaterial": null,
  7103. "_srcBlendFactor": 2,
  7104. "_dstBlendFactor": 4,
  7105. "_color": {
  7106. "__type__": "cc.Color",
  7107. "r": 255,
  7108. "g": 255,
  7109. "b": 255,
  7110. "a": 255
  7111. },
  7112. "_spriteFrame": {
  7113. "__uuid__": "fa1f2034-cc29-4f02-b1f1-a2d0a8489a13@f9941"
  7114. },
  7115. "_type": 0,
  7116. "_fillType": 0,
  7117. "_sizeMode": 1,
  7118. "_fillCenter": {
  7119. "__type__": "cc.Vec2",
  7120. "x": 0,
  7121. "y": 0
  7122. },
  7123. "_fillStart": 0,
  7124. "_fillRange": 0,
  7125. "_isTrimmedMode": true,
  7126. "_useGrayscale": false,
  7127. "_atlas": null,
  7128. "_id": ""
  7129. },
  7130. {
  7131. "__type__": "cc.CompPrefabInfo",
  7132. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  7133. },
  7134. {
  7135. "__type__": "cc.Widget",
  7136. "_name": "",
  7137. "_objFlags": 0,
  7138. "node": {
  7139. "__id__": 323
  7140. },
  7141. "_enabled": true,
  7142. "__prefab": {
  7143. "__id__": 329
  7144. },
  7145. "_alignFlags": 9,
  7146. "_target": null,
  7147. "_left": 19.84700000000001,
  7148. "_right": 0,
  7149. "_top": -11.38900000000001,
  7150. "_bottom": 0,
  7151. "_horizontalCenter": 0,
  7152. "_verticalCenter": 0,
  7153. "_isAbsLeft": true,
  7154. "_isAbsRight": true,
  7155. "_isAbsTop": true,
  7156. "_isAbsBottom": true,
  7157. "_isAbsHorizontalCenter": true,
  7158. "_isAbsVerticalCenter": true,
  7159. "_originalWidth": 0,
  7160. "_originalHeight": 0,
  7161. "_alignMode": 2,
  7162. "_lockFlags": 0,
  7163. "_id": ""
  7164. },
  7165. {
  7166. "__type__": "cc.CompPrefabInfo",
  7167. "fileId": "2eOiykWG1H2ZhL3Jcey8jw"
  7168. },
  7169. {
  7170. "__type__": "cc.PrefabInfo",
  7171. "root": {
  7172. "__id__": 1
  7173. },
  7174. "asset": {
  7175. "__id__": 0
  7176. },
  7177. "fileId": "b51b0XRUxCMYh5jY0pFz0q"
  7178. },
  7179. {
  7180. "__type__": "cc.UITransform",
  7181. "_name": "",
  7182. "_objFlags": 0,
  7183. "node": {
  7184. "__id__": 314
  7185. },
  7186. "_enabled": true,
  7187. "__prefab": {
  7188. "__id__": 332
  7189. },
  7190. "_priority": 0,
  7191. "_contentSize": {
  7192. "__type__": "cc.Size",
  7193. "width": 490,
  7194. "height": 142
  7195. },
  7196. "_anchorPoint": {
  7197. "__type__": "cc.Vec2",
  7198. "x": 0.5,
  7199. "y": 0.5
  7200. },
  7201. "_id": ""
  7202. },
  7203. {
  7204. "__type__": "cc.CompPrefabInfo",
  7205. "fileId": "f7NISe7HdAD68SLfhnddy8"
  7206. },
  7207. {
  7208. "__type__": "cc.Sprite",
  7209. "_name": "",
  7210. "_objFlags": 0,
  7211. "node": {
  7212. "__id__": 314
  7213. },
  7214. "_enabled": true,
  7215. "__prefab": {
  7216. "__id__": 334
  7217. },
  7218. "_visFlags": 0,
  7219. "_customMaterial": null,
  7220. "_srcBlendFactor": 2,
  7221. "_dstBlendFactor": 4,
  7222. "_color": {
  7223. "__type__": "cc.Color",
  7224. "r": 255,
  7225. "g": 255,
  7226. "b": 255,
  7227. "a": 255
  7228. },
  7229. "_spriteFrame": {
  7230. "__uuid__": "621658d2-8b44-4ac2-b2d7-486a14602400@f9941"
  7231. },
  7232. "_type": 0,
  7233. "_fillType": 0,
  7234. "_sizeMode": 1,
  7235. "_fillCenter": {
  7236. "__type__": "cc.Vec2",
  7237. "x": 0,
  7238. "y": 0
  7239. },
  7240. "_fillStart": 0,
  7241. "_fillRange": 0,
  7242. "_isTrimmedMode": true,
  7243. "_useGrayscale": false,
  7244. "_atlas": null,
  7245. "_id": ""
  7246. },
  7247. {
  7248. "__type__": "cc.CompPrefabInfo",
  7249. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  7250. },
  7251. {
  7252. "__type__": "cc.Widget",
  7253. "_name": "",
  7254. "_objFlags": 0,
  7255. "node": {
  7256. "__id__": 314
  7257. },
  7258. "_enabled": true,
  7259. "__prefab": {
  7260. "__id__": 336
  7261. },
  7262. "_alignFlags": 17,
  7263. "_target": null,
  7264. "_left": 0,
  7265. "_right": 0,
  7266. "_top": -86.13900000000001,
  7267. "_bottom": 0,
  7268. "_horizontalCenter": 0,
  7269. "_verticalCenter": 0,
  7270. "_isAbsLeft": true,
  7271. "_isAbsRight": true,
  7272. "_isAbsTop": true,
  7273. "_isAbsBottom": true,
  7274. "_isAbsHorizontalCenter": true,
  7275. "_isAbsVerticalCenter": true,
  7276. "_originalWidth": 0,
  7277. "_originalHeight": 0,
  7278. "_alignMode": 2,
  7279. "_lockFlags": 0,
  7280. "_id": ""
  7281. },
  7282. {
  7283. "__type__": "cc.CompPrefabInfo",
  7284. "fileId": "a5+y5CmE1Jw589xoK4qOkx"
  7285. },
  7286. {
  7287. "__type__": "cc.PrefabInfo",
  7288. "root": {
  7289. "__id__": 1
  7290. },
  7291. "asset": {
  7292. "__id__": 0
  7293. },
  7294. "fileId": "441hCAC1xI8oZQUV5oZq5f"
  7295. },
  7296. {
  7297. "__type__": "cc.Node",
  7298. "_name": "关闭窗口",
  7299. "_objFlags": 0,
  7300. "_parent": {
  7301. "__id__": 12
  7302. },
  7303. "_children": [],
  7304. "_active": true,
  7305. "_components": [
  7306. {
  7307. "__id__": 339
  7308. },
  7309. {
  7310. "__id__": 341
  7311. },
  7312. {
  7313. "__id__": 343
  7314. },
  7315. {
  7316. "__id__": 345
  7317. }
  7318. ],
  7319. "_prefab": {
  7320. "__id__": 347
  7321. },
  7322. "_lpos": {
  7323. "__type__": "cc.Vec3",
  7324. "x": 305.222,
  7325. "y": 312.17,
  7326. "z": 0
  7327. },
  7328. "_lrot": {
  7329. "__type__": "cc.Quat",
  7330. "x": 0,
  7331. "y": 0,
  7332. "z": 0,
  7333. "w": 1
  7334. },
  7335. "_lscale": {
  7336. "__type__": "cc.Vec3",
  7337. "x": 1,
  7338. "y": 1,
  7339. "z": 1
  7340. },
  7341. "_layer": 33554432,
  7342. "_euler": {
  7343. "__type__": "cc.Vec3",
  7344. "x": 0,
  7345. "y": 0,
  7346. "z": 0
  7347. },
  7348. "_id": ""
  7349. },
  7350. {
  7351. "__type__": "cc.UITransform",
  7352. "_name": "",
  7353. "_objFlags": 0,
  7354. "node": {
  7355. "__id__": 338
  7356. },
  7357. "_enabled": true,
  7358. "__prefab": {
  7359. "__id__": 340
  7360. },
  7361. "_priority": 0,
  7362. "_contentSize": {
  7363. "__type__": "cc.Size",
  7364. "width": 89,
  7365. "height": 119
  7366. },
  7367. "_anchorPoint": {
  7368. "__type__": "cc.Vec2",
  7369. "x": 0.5,
  7370. "y": 0.5
  7371. },
  7372. "_id": ""
  7373. },
  7374. {
  7375. "__type__": "cc.CompPrefabInfo",
  7376. "fileId": "98TYGMtwRBTYZZn4EZmhzJ"
  7377. },
  7378. {
  7379. "__type__": "cc.Sprite",
  7380. "_name": "",
  7381. "_objFlags": 0,
  7382. "node": {
  7383. "__id__": 338
  7384. },
  7385. "_enabled": true,
  7386. "__prefab": {
  7387. "__id__": 342
  7388. },
  7389. "_visFlags": 0,
  7390. "_customMaterial": null,
  7391. "_srcBlendFactor": 2,
  7392. "_dstBlendFactor": 4,
  7393. "_color": {
  7394. "__type__": "cc.Color",
  7395. "r": 214,
  7396. "g": 214,
  7397. "b": 214,
  7398. "a": 255
  7399. },
  7400. "_spriteFrame": {
  7401. "__uuid__": "1787ec66-9027-45d4-bd4a-2911f4e5f767@f9941"
  7402. },
  7403. "_type": 1,
  7404. "_fillType": 0,
  7405. "_sizeMode": 1,
  7406. "_fillCenter": {
  7407. "__type__": "cc.Vec2",
  7408. "x": 0,
  7409. "y": 0
  7410. },
  7411. "_fillStart": 0,
  7412. "_fillRange": 0,
  7413. "_isTrimmedMode": true,
  7414. "_useGrayscale": false,
  7415. "_atlas": null,
  7416. "_id": ""
  7417. },
  7418. {
  7419. "__type__": "cc.CompPrefabInfo",
  7420. "fileId": "77BcV1zfNHo4LI4KRqZupe"
  7421. },
  7422. {
  7423. "__type__": "cc.Button",
  7424. "_name": "",
  7425. "_objFlags": 0,
  7426. "node": {
  7427. "__id__": 338
  7428. },
  7429. "_enabled": true,
  7430. "__prefab": {
  7431. "__id__": 344
  7432. },
  7433. "clickEvents": [],
  7434. "_interactable": true,
  7435. "_transition": 3,
  7436. "_normalColor": {
  7437. "__type__": "cc.Color",
  7438. "r": 214,
  7439. "g": 214,
  7440. "b": 214,
  7441. "a": 255
  7442. },
  7443. "_hoverColor": {
  7444. "__type__": "cc.Color",
  7445. "r": 211,
  7446. "g": 211,
  7447. "b": 211,
  7448. "a": 255
  7449. },
  7450. "_pressedColor": {
  7451. "__type__": "cc.Color",
  7452. "r": 255,
  7453. "g": 255,
  7454. "b": 255,
  7455. "a": 255
  7456. },
  7457. "_disabledColor": {
  7458. "__type__": "cc.Color",
  7459. "r": 124,
  7460. "g": 124,
  7461. "b": 124,
  7462. "a": 255
  7463. },
  7464. "_normalSprite": {
  7465. "__uuid__": "1787ec66-9027-45d4-bd4a-2911f4e5f767@f9941"
  7466. },
  7467. "_hoverSprite": null,
  7468. "_pressedSprite": null,
  7469. "_disabledSprite": null,
  7470. "_duration": 0.1,
  7471. "_zoomScale": 1.1,
  7472. "_target": {
  7473. "__id__": 338
  7474. },
  7475. "_id": ""
  7476. },
  7477. {
  7478. "__type__": "cc.CompPrefabInfo",
  7479. "fileId": "2fOwBXUwBNvaJ4NyyrOq4C"
  7480. },
  7481. {
  7482. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  7483. "_name": "",
  7484. "_objFlags": 0,
  7485. "node": {
  7486. "__id__": 338
  7487. },
  7488. "_enabled": true,
  7489. "__prefab": {
  7490. "__id__": 346
  7491. },
  7492. "clips": [
  7493. {
  7494. "__uuid__": "946aa2bf-b5ec-40a8-b0ba-666c9d8263ca"
  7495. }
  7496. ],
  7497. "_volume": 1,
  7498. "useGlobalVolume": true,
  7499. "playOnLoad": false,
  7500. "playOnTouch": true,
  7501. "oneShot": true,
  7502. "loop": false,
  7503. "_id": ""
  7504. },
  7505. {
  7506. "__type__": "cc.CompPrefabInfo",
  7507. "fileId": "a77QZn7Q1H/I8sUuuSKz7l"
  7508. },
  7509. {
  7510. "__type__": "cc.PrefabInfo",
  7511. "root": {
  7512. "__id__": 1
  7513. },
  7514. "asset": {
  7515. "__id__": 0
  7516. },
  7517. "fileId": "efb+7g5xhJvIm2a5ULzlIG"
  7518. },
  7519. {
  7520. "__type__": "cc.Node",
  7521. "_name": "规则",
  7522. "_objFlags": 0,
  7523. "_parent": {
  7524. "__id__": 12
  7525. },
  7526. "_children": [],
  7527. "_active": true,
  7528. "_components": [
  7529. {
  7530. "__id__": 349
  7531. },
  7532. {
  7533. "__id__": 351
  7534. },
  7535. {
  7536. "__id__": 353
  7537. },
  7538. {
  7539. "__id__": 355
  7540. },
  7541. {
  7542. "__id__": 357
  7543. },
  7544. {
  7545. "__id__": 359
  7546. }
  7547. ],
  7548. "_prefab": {
  7549. "__id__": 361
  7550. },
  7551. "_lpos": {
  7552. "__type__": "cc.Vec3",
  7553. "x": -290,
  7554. "y": 362.417,
  7555. "z": 0
  7556. },
  7557. "_lrot": {
  7558. "__type__": "cc.Quat",
  7559. "x": 0,
  7560. "y": 0,
  7561. "z": 0,
  7562. "w": 1
  7563. },
  7564. "_lscale": {
  7565. "__type__": "cc.Vec3",
  7566. "x": 1,
  7567. "y": 1,
  7568. "z": 1
  7569. },
  7570. "_layer": 33554432,
  7571. "_euler": {
  7572. "__type__": "cc.Vec3",
  7573. "x": 0,
  7574. "y": 0,
  7575. "z": 0
  7576. },
  7577. "_id": ""
  7578. },
  7579. {
  7580. "__type__": "cc.UITransform",
  7581. "_name": "",
  7582. "_objFlags": 0,
  7583. "node": {
  7584. "__id__": 348
  7585. },
  7586. "_enabled": true,
  7587. "__prefab": {
  7588. "__id__": 350
  7589. },
  7590. "_priority": 0,
  7591. "_contentSize": {
  7592. "__type__": "cc.Size",
  7593. "width": 66,
  7594. "height": 66
  7595. },
  7596. "_anchorPoint": {
  7597. "__type__": "cc.Vec2",
  7598. "x": 0.5,
  7599. "y": 0.5
  7600. },
  7601. "_id": ""
  7602. },
  7603. {
  7604. "__type__": "cc.CompPrefabInfo",
  7605. "fileId": "98TYGMtwRBTYZZn4EZmhzJ"
  7606. },
  7607. {
  7608. "__type__": "cc.Sprite",
  7609. "_name": "",
  7610. "_objFlags": 0,
  7611. "node": {
  7612. "__id__": 348
  7613. },
  7614. "_enabled": true,
  7615. "__prefab": {
  7616. "__id__": 352
  7617. },
  7618. "_visFlags": 0,
  7619. "_customMaterial": null,
  7620. "_srcBlendFactor": 2,
  7621. "_dstBlendFactor": 4,
  7622. "_color": {
  7623. "__type__": "cc.Color",
  7624. "r": 255,
  7625. "g": 255,
  7626. "b": 255,
  7627. "a": 255
  7628. },
  7629. "_spriteFrame": {
  7630. "__uuid__": "fb1b420f-f12f-4c8c-833d-52b6a80ff821@f9941"
  7631. },
  7632. "_type": 1,
  7633. "_fillType": 0,
  7634. "_sizeMode": 1,
  7635. "_fillCenter": {
  7636. "__type__": "cc.Vec2",
  7637. "x": 0,
  7638. "y": 0
  7639. },
  7640. "_fillStart": 0,
  7641. "_fillRange": 0,
  7642. "_isTrimmedMode": true,
  7643. "_useGrayscale": false,
  7644. "_atlas": null,
  7645. "_id": ""
  7646. },
  7647. {
  7648. "__type__": "cc.CompPrefabInfo",
  7649. "fileId": "77BcV1zfNHo4LI4KRqZupe"
  7650. },
  7651. {
  7652. "__type__": "cc.Button",
  7653. "_name": "",
  7654. "_objFlags": 0,
  7655. "node": {
  7656. "__id__": 348
  7657. },
  7658. "_enabled": true,
  7659. "__prefab": {
  7660. "__id__": 354
  7661. },
  7662. "clickEvents": [],
  7663. "_interactable": true,
  7664. "_transition": 3,
  7665. "_normalColor": {
  7666. "__type__": "cc.Color",
  7667. "r": 214,
  7668. "g": 214,
  7669. "b": 214,
  7670. "a": 255
  7671. },
  7672. "_hoverColor": {
  7673. "__type__": "cc.Color",
  7674. "r": 211,
  7675. "g": 211,
  7676. "b": 211,
  7677. "a": 255
  7678. },
  7679. "_pressedColor": {
  7680. "__type__": "cc.Color",
  7681. "r": 255,
  7682. "g": 255,
  7683. "b": 255,
  7684. "a": 255
  7685. },
  7686. "_disabledColor": {
  7687. "__type__": "cc.Color",
  7688. "r": 124,
  7689. "g": 124,
  7690. "b": 124,
  7691. "a": 255
  7692. },
  7693. "_normalSprite": {
  7694. "__uuid__": "fb1b420f-f12f-4c8c-833d-52b6a80ff821@f9941"
  7695. },
  7696. "_hoverSprite": {
  7697. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941"
  7698. },
  7699. "_pressedSprite": {
  7700. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941"
  7701. },
  7702. "_disabledSprite": {
  7703. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941"
  7704. },
  7705. "_duration": 0.1,
  7706. "_zoomScale": 1.1,
  7707. "_target": {
  7708. "__id__": 348
  7709. },
  7710. "_id": ""
  7711. },
  7712. {
  7713. "__type__": "cc.CompPrefabInfo",
  7714. "fileId": "2fOwBXUwBNvaJ4NyyrOq4C"
  7715. },
  7716. {
  7717. "__type__": "cc.Widget",
  7718. "_name": "",
  7719. "_objFlags": 0,
  7720. "node": {
  7721. "__id__": 348
  7722. },
  7723. "_enabled": true,
  7724. "__prefab": {
  7725. "__id__": 356
  7726. },
  7727. "_alignFlags": 9,
  7728. "_target": null,
  7729. "_left": 0,
  7730. "_right": 0,
  7731. "_top": -72.41699999999997,
  7732. "_bottom": 0,
  7733. "_horizontalCenter": 0,
  7734. "_verticalCenter": 0,
  7735. "_isAbsLeft": true,
  7736. "_isAbsRight": true,
  7737. "_isAbsTop": true,
  7738. "_isAbsBottom": true,
  7739. "_isAbsHorizontalCenter": true,
  7740. "_isAbsVerticalCenter": true,
  7741. "_originalWidth": 0,
  7742. "_originalHeight": 0,
  7743. "_alignMode": 2,
  7744. "_lockFlags": 0,
  7745. "_id": ""
  7746. },
  7747. {
  7748. "__type__": "cc.CompPrefabInfo",
  7749. "fileId": "afOs5DbTpHsLYL7W3Xxx5L"
  7750. },
  7751. {
  7752. "__type__": "5dbc7RZgppH0phbd/ybYswr",
  7753. "_name": "",
  7754. "_objFlags": 0,
  7755. "node": {
  7756. "__id__": 348
  7757. },
  7758. "_enabled": true,
  7759. "__prefab": {
  7760. "__id__": 358
  7761. },
  7762. "prefabPath": "Prefabs/Windows/TurnRule",
  7763. "openMode": 0,
  7764. "params": [],
  7765. "openFroms": [
  7766. {
  7767. "__id__": 348
  7768. }
  7769. ],
  7770. "_id": ""
  7771. },
  7772. {
  7773. "__type__": "cc.CompPrefabInfo",
  7774. "fileId": "83S/TkErhEsZGQlEuUexni"
  7775. },
  7776. {
  7777. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  7778. "_name": "",
  7779. "_objFlags": 0,
  7780. "node": {
  7781. "__id__": 348
  7782. },
  7783. "_enabled": true,
  7784. "__prefab": {
  7785. "__id__": 360
  7786. },
  7787. "clips": [
  7788. {
  7789. "__uuid__": "946aa2bf-b5ec-40a8-b0ba-666c9d8263ca"
  7790. }
  7791. ],
  7792. "_volume": 1,
  7793. "useGlobalVolume": true,
  7794. "playOnLoad": false,
  7795. "playOnTouch": true,
  7796. "oneShot": true,
  7797. "loop": false,
  7798. "_id": ""
  7799. },
  7800. {
  7801. "__type__": "cc.CompPrefabInfo",
  7802. "fileId": "5fJUw1si9Kv6ny3P7hPQSR"
  7803. },
  7804. {
  7805. "__type__": "cc.PrefabInfo",
  7806. "root": {
  7807. "__id__": 1
  7808. },
  7809. "asset": {
  7810. "__id__": 0
  7811. },
  7812. "fileId": "91dt73fTRFNanc8KTbq4dn"
  7813. },
  7814. {
  7815. "__type__": "cc.UITransform",
  7816. "_name": "",
  7817. "_objFlags": 0,
  7818. "node": {
  7819. "__id__": 12
  7820. },
  7821. "_enabled": true,
  7822. "__prefab": {
  7823. "__id__": 363
  7824. },
  7825. "_priority": 0,
  7826. "_contentSize": {
  7827. "__type__": "cc.Size",
  7828. "width": 646,
  7829. "height": 646
  7830. },
  7831. "_anchorPoint": {
  7832. "__type__": "cc.Vec2",
  7833. "x": 0.5,
  7834. "y": 0.5
  7835. },
  7836. "_id": ""
  7837. },
  7838. {
  7839. "__type__": "cc.CompPrefabInfo",
  7840. "fileId": "f7NISe7HdAD68SLfhnddy8"
  7841. },
  7842. {
  7843. "__type__": "cc.Sprite",
  7844. "_name": "",
  7845. "_objFlags": 0,
  7846. "node": {
  7847. "__id__": 12
  7848. },
  7849. "_enabled": true,
  7850. "__prefab": {
  7851. "__id__": 365
  7852. },
  7853. "_visFlags": 0,
  7854. "_customMaterial": null,
  7855. "_srcBlendFactor": 2,
  7856. "_dstBlendFactor": 4,
  7857. "_color": {
  7858. "__type__": "cc.Color",
  7859. "r": 255,
  7860. "g": 255,
  7861. "b": 255,
  7862. "a": 255
  7863. },
  7864. "_spriteFrame": {
  7865. "__uuid__": "96c7013f-b5dd-4c7b-8bc4-72672b53d679@f9941"
  7866. },
  7867. "_type": 0,
  7868. "_fillType": 0,
  7869. "_sizeMode": 1,
  7870. "_fillCenter": {
  7871. "__type__": "cc.Vec2",
  7872. "x": 0,
  7873. "y": 0
  7874. },
  7875. "_fillStart": 0,
  7876. "_fillRange": 0,
  7877. "_isTrimmedMode": true,
  7878. "_useGrayscale": false,
  7879. "_atlas": null,
  7880. "_id": ""
  7881. },
  7882. {
  7883. "__type__": "cc.CompPrefabInfo",
  7884. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  7885. },
  7886. {
  7887. "__type__": "cc.PrefabInfo",
  7888. "root": {
  7889. "__id__": 1
  7890. },
  7891. "asset": {
  7892. "__id__": 0
  7893. },
  7894. "fileId": "ecGclxfYVCrqUJ1QHSY+ZL"
  7895. },
  7896. {
  7897. "__type__": "cc.Node",
  7898. "_name": "观看视频",
  7899. "_objFlags": 0,
  7900. "_parent": {
  7901. "__id__": 1
  7902. },
  7903. "_children": [
  7904. {
  7905. "__id__": 368
  7906. },
  7907. {
  7908. "__id__": 388
  7909. }
  7910. ],
  7911. "_active": true,
  7912. "_components": [
  7913. {
  7914. "__id__": 396
  7915. },
  7916. {
  7917. "__id__": 398
  7918. },
  7919. {
  7920. "__id__": 400
  7921. },
  7922. {
  7923. "__id__": 403
  7924. }
  7925. ],
  7926. "_prefab": {
  7927. "__id__": 405
  7928. },
  7929. "_lpos": {
  7930. "__type__": "cc.Vec3",
  7931. "x": 0,
  7932. "y": -391.887,
  7933. "z": 0
  7934. },
  7935. "_lrot": {
  7936. "__type__": "cc.Quat",
  7937. "x": 0,
  7938. "y": 0,
  7939. "z": 0,
  7940. "w": 1
  7941. },
  7942. "_lscale": {
  7943. "__type__": "cc.Vec3",
  7944. "x": 1,
  7945. "y": 1,
  7946. "z": 1
  7947. },
  7948. "_layer": 33554432,
  7949. "_euler": {
  7950. "__type__": "cc.Vec3",
  7951. "x": 0,
  7952. "y": 0,
  7953. "z": 0
  7954. },
  7955. "_id": ""
  7956. },
  7957. {
  7958. "__type__": "cc.Node",
  7959. "_name": "Layout",
  7960. "_objFlags": 0,
  7961. "_parent": {
  7962. "__id__": 367
  7963. },
  7964. "_children": [
  7965. {
  7966. "__id__": 369
  7967. },
  7968. {
  7969. "__id__": 375
  7970. }
  7971. ],
  7972. "_active": true,
  7973. "_components": [
  7974. {
  7975. "__id__": 381
  7976. },
  7977. {
  7978. "__id__": 383
  7979. },
  7980. {
  7981. "__id__": 385
  7982. }
  7983. ],
  7984. "_prefab": {
  7985. "__id__": 387
  7986. },
  7987. "_lpos": {
  7988. "__type__": "cc.Vec3",
  7989. "x": 0,
  7990. "y": 4.606,
  7991. "z": 0
  7992. },
  7993. "_lrot": {
  7994. "__type__": "cc.Quat",
  7995. "x": 0,
  7996. "y": 0,
  7997. "z": 0,
  7998. "w": 1
  7999. },
  8000. "_lscale": {
  8001. "__type__": "cc.Vec3",
  8002. "x": 1,
  8003. "y": 1,
  8004. "z": 1
  8005. },
  8006. "_layer": 33554432,
  8007. "_euler": {
  8008. "__type__": "cc.Vec3",
  8009. "x": 0,
  8010. "y": 0,
  8011. "z": 0
  8012. },
  8013. "_id": ""
  8014. },
  8015. {
  8016. "__type__": "cc.Node",
  8017. "_name": "Sprite",
  8018. "_objFlags": 0,
  8019. "_parent": {
  8020. "__id__": 368
  8021. },
  8022. "_children": [],
  8023. "_active": true,
  8024. "_components": [
  8025. {
  8026. "__id__": 370
  8027. },
  8028. {
  8029. "__id__": 372
  8030. }
  8031. ],
  8032. "_prefab": {
  8033. "__id__": 374
  8034. },
  8035. "_lpos": {
  8036. "__type__": "cc.Vec3",
  8037. "x": -85,
  8038. "y": 0,
  8039. "z": 0
  8040. },
  8041. "_lrot": {
  8042. "__type__": "cc.Quat",
  8043. "x": 0,
  8044. "y": 0,
  8045. "z": 0,
  8046. "w": 1
  8047. },
  8048. "_lscale": {
  8049. "__type__": "cc.Vec3",
  8050. "x": 1,
  8051. "y": 1,
  8052. "z": 1
  8053. },
  8054. "_layer": 33554432,
  8055. "_euler": {
  8056. "__type__": "cc.Vec3",
  8057. "x": 0,
  8058. "y": 0,
  8059. "z": 0
  8060. },
  8061. "_id": ""
  8062. },
  8063. {
  8064. "__type__": "cc.UITransform",
  8065. "_name": "",
  8066. "_objFlags": 0,
  8067. "node": {
  8068. "__id__": 369
  8069. },
  8070. "_enabled": true,
  8071. "__prefab": {
  8072. "__id__": 371
  8073. },
  8074. "_priority": 0,
  8075. "_contentSize": {
  8076. "__type__": "cc.Size",
  8077. "width": 66,
  8078. "height": 57
  8079. },
  8080. "_anchorPoint": {
  8081. "__type__": "cc.Vec2",
  8082. "x": 0.5,
  8083. "y": 0.5
  8084. },
  8085. "_id": ""
  8086. },
  8087. {
  8088. "__type__": "cc.CompPrefabInfo",
  8089. "fileId": "f7NISe7HdAD68SLfhnddy8"
  8090. },
  8091. {
  8092. "__type__": "cc.Sprite",
  8093. "_name": "",
  8094. "_objFlags": 0,
  8095. "node": {
  8096. "__id__": 369
  8097. },
  8098. "_enabled": true,
  8099. "__prefab": {
  8100. "__id__": 373
  8101. },
  8102. "_visFlags": 0,
  8103. "_customMaterial": null,
  8104. "_srcBlendFactor": 2,
  8105. "_dstBlendFactor": 4,
  8106. "_color": {
  8107. "__type__": "cc.Color",
  8108. "r": 255,
  8109. "g": 255,
  8110. "b": 255,
  8111. "a": 255
  8112. },
  8113. "_spriteFrame": {
  8114. "__uuid__": "c4b42db0-2df4-4995-aa41-86d79298bffe@f9941"
  8115. },
  8116. "_type": 0,
  8117. "_fillType": 0,
  8118. "_sizeMode": 1,
  8119. "_fillCenter": {
  8120. "__type__": "cc.Vec2",
  8121. "x": 0,
  8122. "y": 0
  8123. },
  8124. "_fillStart": 0,
  8125. "_fillRange": 0,
  8126. "_isTrimmedMode": true,
  8127. "_useGrayscale": false,
  8128. "_atlas": null,
  8129. "_id": ""
  8130. },
  8131. {
  8132. "__type__": "cc.CompPrefabInfo",
  8133. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  8134. },
  8135. {
  8136. "__type__": "cc.PrefabInfo",
  8137. "root": {
  8138. "__id__": 1
  8139. },
  8140. "asset": {
  8141. "__id__": 0
  8142. },
  8143. "fileId": "4c/yXuZdtKoL1afaHuPFIo"
  8144. },
  8145. {
  8146. "__type__": "cc.Node",
  8147. "_name": "Sprite",
  8148. "_objFlags": 0,
  8149. "_parent": {
  8150. "__id__": 368
  8151. },
  8152. "_children": [],
  8153. "_active": true,
  8154. "_components": [
  8155. {
  8156. "__id__": 376
  8157. },
  8158. {
  8159. "__id__": 378
  8160. }
  8161. ],
  8162. "_prefab": {
  8163. "__id__": 380
  8164. },
  8165. "_lpos": {
  8166. "__type__": "cc.Vec3",
  8167. "x": 43,
  8168. "y": 0,
  8169. "z": 0
  8170. },
  8171. "_lrot": {
  8172. "__type__": "cc.Quat",
  8173. "x": 0,
  8174. "y": 0,
  8175. "z": 0,
  8176. "w": 1
  8177. },
  8178. "_lscale": {
  8179. "__type__": "cc.Vec3",
  8180. "x": 1,
  8181. "y": 1,
  8182. "z": 1
  8183. },
  8184. "_layer": 33554432,
  8185. "_euler": {
  8186. "__type__": "cc.Vec3",
  8187. "x": 0,
  8188. "y": 0,
  8189. "z": 0
  8190. },
  8191. "_id": ""
  8192. },
  8193. {
  8194. "__type__": "cc.UITransform",
  8195. "_name": "",
  8196. "_objFlags": 0,
  8197. "node": {
  8198. "__id__": 375
  8199. },
  8200. "_enabled": true,
  8201. "__prefab": {
  8202. "__id__": 377
  8203. },
  8204. "_priority": 0,
  8205. "_contentSize": {
  8206. "__type__": "cc.Size",
  8207. "width": 150,
  8208. "height": 67
  8209. },
  8210. "_anchorPoint": {
  8211. "__type__": "cc.Vec2",
  8212. "x": 0.5,
  8213. "y": 0.5
  8214. },
  8215. "_id": ""
  8216. },
  8217. {
  8218. "__type__": "cc.CompPrefabInfo",
  8219. "fileId": "f7NISe7HdAD68SLfhnddy8"
  8220. },
  8221. {
  8222. "__type__": "cc.Sprite",
  8223. "_name": "",
  8224. "_objFlags": 0,
  8225. "node": {
  8226. "__id__": 375
  8227. },
  8228. "_enabled": true,
  8229. "__prefab": {
  8230. "__id__": 379
  8231. },
  8232. "_visFlags": 0,
  8233. "_customMaterial": null,
  8234. "_srcBlendFactor": 2,
  8235. "_dstBlendFactor": 4,
  8236. "_color": {
  8237. "__type__": "cc.Color",
  8238. "r": 255,
  8239. "g": 255,
  8240. "b": 255,
  8241. "a": 255
  8242. },
  8243. "_spriteFrame": {
  8244. "__uuid__": "7c23ee72-fbfd-492c-be4b-b94431ebdd46@f9941"
  8245. },
  8246. "_type": 0,
  8247. "_fillType": 0,
  8248. "_sizeMode": 1,
  8249. "_fillCenter": {
  8250. "__type__": "cc.Vec2",
  8251. "x": 0,
  8252. "y": 0
  8253. },
  8254. "_fillStart": 0,
  8255. "_fillRange": 0,
  8256. "_isTrimmedMode": true,
  8257. "_useGrayscale": false,
  8258. "_atlas": null,
  8259. "_id": ""
  8260. },
  8261. {
  8262. "__type__": "cc.CompPrefabInfo",
  8263. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  8264. },
  8265. {
  8266. "__type__": "cc.PrefabInfo",
  8267. "root": {
  8268. "__id__": 1
  8269. },
  8270. "asset": {
  8271. "__id__": 0
  8272. },
  8273. "fileId": "24i20n81dH6YDwMjKyNajO"
  8274. },
  8275. {
  8276. "__type__": "cc.UITransform",
  8277. "_name": "",
  8278. "_objFlags": 0,
  8279. "node": {
  8280. "__id__": 368
  8281. },
  8282. "_enabled": true,
  8283. "__prefab": {
  8284. "__id__": 382
  8285. },
  8286. "_priority": 0,
  8287. "_contentSize": {
  8288. "__type__": "cc.Size",
  8289. "width": 236,
  8290. "height": 100
  8291. },
  8292. "_anchorPoint": {
  8293. "__type__": "cc.Vec2",
  8294. "x": 0.5,
  8295. "y": 0.5
  8296. },
  8297. "_id": ""
  8298. },
  8299. {
  8300. "__type__": "cc.CompPrefabInfo",
  8301. "fileId": "71F9vsVsZH7ZFd+PpN0azA"
  8302. },
  8303. {
  8304. "__type__": "cc.Layout",
  8305. "_name": "",
  8306. "_objFlags": 0,
  8307. "node": {
  8308. "__id__": 368
  8309. },
  8310. "_enabled": true,
  8311. "__prefab": {
  8312. "__id__": 384
  8313. },
  8314. "_resizeMode": 1,
  8315. "_layoutType": 1,
  8316. "_cellSize": {
  8317. "__type__": "cc.Size",
  8318. "width": 40,
  8319. "height": 40
  8320. },
  8321. "_startAxis": 0,
  8322. "_paddingLeft": 0,
  8323. "_paddingRight": 0,
  8324. "_paddingTop": 0,
  8325. "_paddingBottom": 0,
  8326. "_spacingX": 20,
  8327. "_spacingY": 0,
  8328. "_verticalDirection": 1,
  8329. "_horizontalDirection": 0,
  8330. "_constraint": 0,
  8331. "_constraintNum": 2,
  8332. "_affectedByScale": false,
  8333. "_isAlign": true,
  8334. "_id": ""
  8335. },
  8336. {
  8337. "__type__": "cc.CompPrefabInfo",
  8338. "fileId": "eaGEkmlCpANK+GS6CImtZa"
  8339. },
  8340. {
  8341. "__type__": "cc.Widget",
  8342. "_name": "",
  8343. "_objFlags": 0,
  8344. "node": {
  8345. "__id__": 368
  8346. },
  8347. "_enabled": true,
  8348. "__prefab": {
  8349. "__id__": 386
  8350. },
  8351. "_alignFlags": 18,
  8352. "_target": null,
  8353. "_left": 0,
  8354. "_right": 0,
  8355. "_top": 0,
  8356. "_bottom": 0,
  8357. "_horizontalCenter": 0,
  8358. "_verticalCenter": 4.606,
  8359. "_isAbsLeft": true,
  8360. "_isAbsRight": true,
  8361. "_isAbsTop": true,
  8362. "_isAbsBottom": true,
  8363. "_isAbsHorizontalCenter": true,
  8364. "_isAbsVerticalCenter": true,
  8365. "_originalWidth": 0,
  8366. "_originalHeight": 0,
  8367. "_alignMode": 2,
  8368. "_lockFlags": 0,
  8369. "_id": ""
  8370. },
  8371. {
  8372. "__type__": "cc.CompPrefabInfo",
  8373. "fileId": "42DnYcCYZHUL97xneVOd8u"
  8374. },
  8375. {
  8376. "__type__": "cc.PrefabInfo",
  8377. "root": {
  8378. "__id__": 1
  8379. },
  8380. "asset": {
  8381. "__id__": 0
  8382. },
  8383. "fileId": "e1by3rq71Ix6iMAaw2Vf0F"
  8384. },
  8385. {
  8386. "__type__": "cc.Node",
  8387. "_name": "云",
  8388. "_objFlags": 0,
  8389. "_parent": {
  8390. "__id__": 367
  8391. },
  8392. "_children": [],
  8393. "_active": true,
  8394. "_components": [
  8395. {
  8396. "__id__": 389
  8397. },
  8398. {
  8399. "__id__": 391
  8400. },
  8401. {
  8402. "__id__": 393
  8403. }
  8404. ],
  8405. "_prefab": {
  8406. "__id__": 395
  8407. },
  8408. "_lpos": {
  8409. "__type__": "cc.Vec3",
  8410. "x": 142.36400000000003,
  8411. "y": -49.275999999999996,
  8412. "z": 0
  8413. },
  8414. "_lrot": {
  8415. "__type__": "cc.Quat",
  8416. "x": 0,
  8417. "y": 0,
  8418. "z": 0,
  8419. "w": 1
  8420. },
  8421. "_lscale": {
  8422. "__type__": "cc.Vec3",
  8423. "x": 1,
  8424. "y": 1,
  8425. "z": 1
  8426. },
  8427. "_layer": 33554432,
  8428. "_euler": {
  8429. "__type__": "cc.Vec3",
  8430. "x": 0,
  8431. "y": 0,
  8432. "z": 0
  8433. },
  8434. "_id": ""
  8435. },
  8436. {
  8437. "__type__": "cc.UITransform",
  8438. "_name": "",
  8439. "_objFlags": 0,
  8440. "node": {
  8441. "__id__": 388
  8442. },
  8443. "_enabled": true,
  8444. "__prefab": {
  8445. "__id__": 390
  8446. },
  8447. "_priority": 0,
  8448. "_contentSize": {
  8449. "__type__": "cc.Size",
  8450. "width": 137,
  8451. "height": 59
  8452. },
  8453. "_anchorPoint": {
  8454. "__type__": "cc.Vec2",
  8455. "x": 0.5,
  8456. "y": 0.5
  8457. },
  8458. "_id": ""
  8459. },
  8460. {
  8461. "__type__": "cc.CompPrefabInfo",
  8462. "fileId": "f7NISe7HdAD68SLfhnddy8"
  8463. },
  8464. {
  8465. "__type__": "cc.Sprite",
  8466. "_name": "",
  8467. "_objFlags": 0,
  8468. "node": {
  8469. "__id__": 388
  8470. },
  8471. "_enabled": true,
  8472. "__prefab": {
  8473. "__id__": 392
  8474. },
  8475. "_visFlags": 0,
  8476. "_customMaterial": null,
  8477. "_srcBlendFactor": 2,
  8478. "_dstBlendFactor": 4,
  8479. "_color": {
  8480. "__type__": "cc.Color",
  8481. "r": 255,
  8482. "g": 255,
  8483. "b": 255,
  8484. "a": 255
  8485. },
  8486. "_spriteFrame": {
  8487. "__uuid__": "3b4238e3-50d1-4f11-b335-2fea856e2450@f9941"
  8488. },
  8489. "_type": 0,
  8490. "_fillType": 0,
  8491. "_sizeMode": 1,
  8492. "_fillCenter": {
  8493. "__type__": "cc.Vec2",
  8494. "x": 0,
  8495. "y": 0
  8496. },
  8497. "_fillStart": 0,
  8498. "_fillRange": 0,
  8499. "_isTrimmedMode": true,
  8500. "_useGrayscale": false,
  8501. "_atlas": null,
  8502. "_id": ""
  8503. },
  8504. {
  8505. "__type__": "cc.CompPrefabInfo",
  8506. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  8507. },
  8508. {
  8509. "__type__": "cc.Widget",
  8510. "_name": "",
  8511. "_objFlags": 0,
  8512. "node": {
  8513. "__id__": 388
  8514. },
  8515. "_enabled": true,
  8516. "__prefab": {
  8517. "__id__": 394
  8518. },
  8519. "_alignFlags": 36,
  8520. "_target": null,
  8521. "_left": 0,
  8522. "_right": -43.36400000000002,
  8523. "_top": 0,
  8524. "_bottom": -8.776,
  8525. "_horizontalCenter": 0,
  8526. "_verticalCenter": 0,
  8527. "_isAbsLeft": true,
  8528. "_isAbsRight": true,
  8529. "_isAbsTop": true,
  8530. "_isAbsBottom": true,
  8531. "_isAbsHorizontalCenter": true,
  8532. "_isAbsVerticalCenter": true,
  8533. "_originalWidth": 0,
  8534. "_originalHeight": 0,
  8535. "_alignMode": 2,
  8536. "_lockFlags": 0,
  8537. "_id": ""
  8538. },
  8539. {
  8540. "__type__": "cc.CompPrefabInfo",
  8541. "fileId": "6f50mMcXtPV4fcHdb3oGct"
  8542. },
  8543. {
  8544. "__type__": "cc.PrefabInfo",
  8545. "root": {
  8546. "__id__": 1
  8547. },
  8548. "asset": {
  8549. "__id__": 0
  8550. },
  8551. "fileId": "ddIRDcNq1AvY0YA2rCEpWa"
  8552. },
  8553. {
  8554. "__type__": "cc.UITransform",
  8555. "_name": "",
  8556. "_objFlags": 0,
  8557. "node": {
  8558. "__id__": 367
  8559. },
  8560. "_enabled": true,
  8561. "__prefab": {
  8562. "__id__": 397
  8563. },
  8564. "_priority": 0,
  8565. "_contentSize": {
  8566. "__type__": "cc.Size",
  8567. "width": 335,
  8568. "height": 140
  8569. },
  8570. "_anchorPoint": {
  8571. "__type__": "cc.Vec2",
  8572. "x": 0.5,
  8573. "y": 0.5
  8574. },
  8575. "_id": ""
  8576. },
  8577. {
  8578. "__type__": "cc.CompPrefabInfo",
  8579. "fileId": "98TYGMtwRBTYZZn4EZmhzJ"
  8580. },
  8581. {
  8582. "__type__": "cc.Sprite",
  8583. "_name": "",
  8584. "_objFlags": 0,
  8585. "node": {
  8586. "__id__": 367
  8587. },
  8588. "_enabled": true,
  8589. "__prefab": {
  8590. "__id__": 399
  8591. },
  8592. "_visFlags": 0,
  8593. "_customMaterial": null,
  8594. "_srcBlendFactor": 2,
  8595. "_dstBlendFactor": 4,
  8596. "_color": {
  8597. "__type__": "cc.Color",
  8598. "r": 255,
  8599. "g": 255,
  8600. "b": 255,
  8601. "a": 255
  8602. },
  8603. "_spriteFrame": {
  8604. "__uuid__": "becb1a5f-abc6-441f-bd37-35d167e323eb@f9941"
  8605. },
  8606. "_type": 0,
  8607. "_fillType": 0,
  8608. "_sizeMode": 1,
  8609. "_fillCenter": {
  8610. "__type__": "cc.Vec2",
  8611. "x": 0,
  8612. "y": 0
  8613. },
  8614. "_fillStart": 0,
  8615. "_fillRange": 0,
  8616. "_isTrimmedMode": true,
  8617. "_useGrayscale": false,
  8618. "_atlas": null,
  8619. "_id": ""
  8620. },
  8621. {
  8622. "__type__": "cc.CompPrefabInfo",
  8623. "fileId": "77BcV1zfNHo4LI4KRqZupe"
  8624. },
  8625. {
  8626. "__type__": "cc.Button",
  8627. "_name": "",
  8628. "_objFlags": 0,
  8629. "node": {
  8630. "__id__": 367
  8631. },
  8632. "_enabled": true,
  8633. "__prefab": {
  8634. "__id__": 401
  8635. },
  8636. "clickEvents": [
  8637. {
  8638. "__id__": 402
  8639. }
  8640. ],
  8641. "_interactable": true,
  8642. "_transition": 3,
  8643. "_normalColor": {
  8644. "__type__": "cc.Color",
  8645. "r": 214,
  8646. "g": 214,
  8647. "b": 214,
  8648. "a": 255
  8649. },
  8650. "_hoverColor": {
  8651. "__type__": "cc.Color",
  8652. "r": 211,
  8653. "g": 211,
  8654. "b": 211,
  8655. "a": 255
  8656. },
  8657. "_pressedColor": {
  8658. "__type__": "cc.Color",
  8659. "r": 255,
  8660. "g": 255,
  8661. "b": 255,
  8662. "a": 255
  8663. },
  8664. "_disabledColor": {
  8665. "__type__": "cc.Color",
  8666. "r": 124,
  8667. "g": 124,
  8668. "b": 124,
  8669. "a": 255
  8670. },
  8671. "_normalSprite": {
  8672. "__uuid__": "becb1a5f-abc6-441f-bd37-35d167e323eb@f9941"
  8673. },
  8674. "_hoverSprite": null,
  8675. "_pressedSprite": null,
  8676. "_disabledSprite": null,
  8677. "_duration": 0.1,
  8678. "_zoomScale": 1.1,
  8679. "_target": {
  8680. "__id__": 367
  8681. },
  8682. "_id": ""
  8683. },
  8684. {
  8685. "__type__": "cc.CompPrefabInfo",
  8686. "fileId": "2fOwBXUwBNvaJ4NyyrOq4C"
  8687. },
  8688. {
  8689. "__type__": "cc.ClickEvent",
  8690. "target": {
  8691. "__id__": 1
  8692. },
  8693. "component": "",
  8694. "_componentId": "41374oEF8xOm6wIwDuMhGAS",
  8695. "handler": "drawPrize",
  8696. "customEventData": ""
  8697. },
  8698. {
  8699. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  8700. "_name": "",
  8701. "_objFlags": 0,
  8702. "node": {
  8703. "__id__": 367
  8704. },
  8705. "_enabled": true,
  8706. "__prefab": {
  8707. "__id__": 404
  8708. },
  8709. "clips": [
  8710. {
  8711. "__uuid__": "946aa2bf-b5ec-40a8-b0ba-666c9d8263ca"
  8712. }
  8713. ],
  8714. "_volume": 1,
  8715. "useGlobalVolume": true,
  8716. "playOnLoad": false,
  8717. "playOnTouch": true,
  8718. "oneShot": true,
  8719. "loop": false,
  8720. "_id": ""
  8721. },
  8722. {
  8723. "__type__": "cc.CompPrefabInfo",
  8724. "fileId": "8e4xM/RA1N7Ijre4L3qbir"
  8725. },
  8726. {
  8727. "__type__": "cc.PrefabInfo",
  8728. "root": {
  8729. "__id__": 1
  8730. },
  8731. "asset": {
  8732. "__id__": 0
  8733. },
  8734. "fileId": "51sXms5K5Jh6EY7w75l3wh"
  8735. },
  8736. {
  8737. "__type__": "cc.Node",
  8738. "_name": "剩余次数",
  8739. "_objFlags": 0,
  8740. "_parent": {
  8741. "__id__": 1
  8742. },
  8743. "_children": [],
  8744. "_active": true,
  8745. "_components": [
  8746. {
  8747. "__id__": 407
  8748. },
  8749. {
  8750. "__id__": 409
  8751. }
  8752. ],
  8753. "_prefab": {
  8754. "__id__": 411
  8755. },
  8756. "_lpos": {
  8757. "__type__": "cc.Vec3",
  8758. "x": 0,
  8759. "y": -288.566,
  8760. "z": 0
  8761. },
  8762. "_lrot": {
  8763. "__type__": "cc.Quat",
  8764. "x": 0,
  8765. "y": 0,
  8766. "z": 0,
  8767. "w": 1
  8768. },
  8769. "_lscale": {
  8770. "__type__": "cc.Vec3",
  8771. "x": 1,
  8772. "y": 1,
  8773. "z": 1
  8774. },
  8775. "_layer": 33554432,
  8776. "_euler": {
  8777. "__type__": "cc.Vec3",
  8778. "x": 0,
  8779. "y": 0,
  8780. "z": 0
  8781. },
  8782. "_id": ""
  8783. },
  8784. {
  8785. "__type__": "cc.UITransform",
  8786. "_name": "",
  8787. "_objFlags": 0,
  8788. "node": {
  8789. "__id__": 406
  8790. },
  8791. "_enabled": true,
  8792. "__prefab": {
  8793. "__id__": 408
  8794. },
  8795. "_priority": 0,
  8796. "_contentSize": {
  8797. "__type__": "cc.Size",
  8798. "width": 273.37,
  8799. "height": 50.4
  8800. },
  8801. "_anchorPoint": {
  8802. "__type__": "cc.Vec2",
  8803. "x": 0.5,
  8804. "y": 0.5
  8805. },
  8806. "_id": ""
  8807. },
  8808. {
  8809. "__type__": "cc.CompPrefabInfo",
  8810. "fileId": "c68UOAlNhN171Umca6yVvF"
  8811. },
  8812. {
  8813. "__type__": "cc.Label",
  8814. "_name": "",
  8815. "_objFlags": 0,
  8816. "node": {
  8817. "__id__": 406
  8818. },
  8819. "_enabled": true,
  8820. "__prefab": {
  8821. "__id__": 410
  8822. },
  8823. "_visFlags": 0,
  8824. "_customMaterial": null,
  8825. "_srcBlendFactor": 2,
  8826. "_dstBlendFactor": 4,
  8827. "_color": {
  8828. "__type__": "cc.Color",
  8829. "r": 255,
  8830. "g": 241,
  8831. "b": 209,
  8832. "a": 255
  8833. },
  8834. "_string": "今日剩余次数:18次",
  8835. "_horizontalAlign": 1,
  8836. "_verticalAlign": 1,
  8837. "_actualFontSize": 30,
  8838. "_fontSize": 30,
  8839. "_fontFamily": "Arial",
  8840. "_lineHeight": 40,
  8841. "_overflow": 0,
  8842. "_enableWrapText": true,
  8843. "_font": null,
  8844. "_isSystemFontUsed": true,
  8845. "_isItalic": false,
  8846. "_isBold": false,
  8847. "_isUnderline": false,
  8848. "_underlineHeight": 2,
  8849. "_cacheMode": 0,
  8850. "_id": ""
  8851. },
  8852. {
  8853. "__type__": "cc.CompPrefabInfo",
  8854. "fileId": "2frm37uaJHQr0AEEaYyM82"
  8855. },
  8856. {
  8857. "__type__": "cc.PrefabInfo",
  8858. "root": {
  8859. "__id__": 1
  8860. },
  8861. "asset": {
  8862. "__id__": 0
  8863. },
  8864. "fileId": "6bjuKBbhVPl6l4jdFlgdRh"
  8865. },
  8866. {
  8867. "__type__": "cc.Node",
  8868. "_name": "跳过动画",
  8869. "_objFlags": 0,
  8870. "_parent": {
  8871. "__id__": 1
  8872. },
  8873. "_children": [],
  8874. "_active": false,
  8875. "_components": [
  8876. {
  8877. "__id__": 413
  8878. },
  8879. {
  8880. "__id__": 415
  8881. },
  8882. {
  8883. "__id__": 417
  8884. }
  8885. ],
  8886. "_prefab": {
  8887. "__id__": 419
  8888. },
  8889. "_lpos": {
  8890. "__type__": "cc.Vec3",
  8891. "x": 214.179,
  8892. "y": -360.974,
  8893. "z": 0
  8894. },
  8895. "_lrot": {
  8896. "__type__": "cc.Quat",
  8897. "x": 0,
  8898. "y": 0,
  8899. "z": 0,
  8900. "w": 1
  8901. },
  8902. "_lscale": {
  8903. "__type__": "cc.Vec3",
  8904. "x": 1,
  8905. "y": 1,
  8906. "z": 1
  8907. },
  8908. "_layer": 33554432,
  8909. "_euler": {
  8910. "__type__": "cc.Vec3",
  8911. "x": 0,
  8912. "y": 0,
  8913. "z": 0
  8914. },
  8915. "_id": ""
  8916. },
  8917. {
  8918. "__type__": "cc.UITransform",
  8919. "_name": "",
  8920. "_objFlags": 0,
  8921. "node": {
  8922. "__id__": 412
  8923. },
  8924. "_enabled": true,
  8925. "__prefab": {
  8926. "__id__": 414
  8927. },
  8928. "_priority": 0,
  8929. "_contentSize": {
  8930. "__type__": "cc.Size",
  8931. "width": 110,
  8932. "height": 50.4
  8933. },
  8934. "_anchorPoint": {
  8935. "__type__": "cc.Vec2",
  8936. "x": 0.5,
  8937. "y": 0.5
  8938. },
  8939. "_id": ""
  8940. },
  8941. {
  8942. "__type__": "cc.CompPrefabInfo",
  8943. "fileId": "c68UOAlNhN171Umca6yVvF"
  8944. },
  8945. {
  8946. "__type__": "cc.Label",
  8947. "_name": "",
  8948. "_objFlags": 0,
  8949. "node": {
  8950. "__id__": 412
  8951. },
  8952. "_enabled": true,
  8953. "__prefab": {
  8954. "__id__": 416
  8955. },
  8956. "_visFlags": 0,
  8957. "_customMaterial": null,
  8958. "_srcBlendFactor": 2,
  8959. "_dstBlendFactor": 4,
  8960. "_color": {
  8961. "__type__": "cc.Color",
  8962. "r": 255,
  8963. "g": 255,
  8964. "b": 255,
  8965. "a": 255
  8966. },
  8967. "_string": "跳过动画",
  8968. "_horizontalAlign": 1,
  8969. "_verticalAlign": 1,
  8970. "_actualFontSize": 25,
  8971. "_fontSize": 25,
  8972. "_fontFamily": "Arial",
  8973. "_lineHeight": 40,
  8974. "_overflow": 1,
  8975. "_enableWrapText": true,
  8976. "_font": null,
  8977. "_isSystemFontUsed": true,
  8978. "_isItalic": false,
  8979. "_isBold": false,
  8980. "_isUnderline": true,
  8981. "_underlineHeight": 2,
  8982. "_cacheMode": 0,
  8983. "_id": ""
  8984. },
  8985. {
  8986. "__type__": "cc.CompPrefabInfo",
  8987. "fileId": "2frm37uaJHQr0AEEaYyM82"
  8988. },
  8989. {
  8990. "__type__": "cc.Button",
  8991. "_name": "",
  8992. "_objFlags": 0,
  8993. "node": {
  8994. "__id__": 412
  8995. },
  8996. "_enabled": true,
  8997. "__prefab": {
  8998. "__id__": 418
  8999. },
  9000. "clickEvents": [],
  9001. "_interactable": true,
  9002. "_transition": 3,
  9003. "_normalColor": {
  9004. "__type__": "cc.Color",
  9005. "r": 255,
  9006. "g": 255,
  9007. "b": 255,
  9008. "a": 255
  9009. },
  9010. "_hoverColor": {
  9011. "__type__": "cc.Color",
  9012. "r": 211,
  9013. "g": 211,
  9014. "b": 211,
  9015. "a": 255
  9016. },
  9017. "_pressedColor": {
  9018. "__type__": "cc.Color",
  9019. "r": 255,
  9020. "g": 255,
  9021. "b": 255,
  9022. "a": 255
  9023. },
  9024. "_disabledColor": {
  9025. "__type__": "cc.Color",
  9026. "r": 124,
  9027. "g": 124,
  9028. "b": 124,
  9029. "a": 255
  9030. },
  9031. "_normalSprite": null,
  9032. "_hoverSprite": null,
  9033. "_pressedSprite": null,
  9034. "_disabledSprite": null,
  9035. "_duration": 0.1,
  9036. "_zoomScale": 1.1,
  9037. "_target": null,
  9038. "_id": ""
  9039. },
  9040. {
  9041. "__type__": "cc.CompPrefabInfo",
  9042. "fileId": "8bRFZTRmlCs5MM5ZWw9uTW"
  9043. },
  9044. {
  9045. "__type__": "cc.PrefabInfo",
  9046. "root": {
  9047. "__id__": 1
  9048. },
  9049. "asset": {
  9050. "__id__": 0
  9051. },
  9052. "fileId": "39O77NZUJFRomdQ5i1TjCx"
  9053. },
  9054. {
  9055. "__type__": "cc.Node",
  9056. "_name": "http组件",
  9057. "_objFlags": 0,
  9058. "_parent": {
  9059. "__id__": 1
  9060. },
  9061. "_children": [],
  9062. "_active": true,
  9063. "_components": [
  9064. {
  9065. "__id__": 421
  9066. },
  9067. {
  9068. "__id__": 423
  9069. }
  9070. ],
  9071. "_prefab": {
  9072. "__id__": 425
  9073. },
  9074. "_lpos": {
  9075. "__type__": "cc.Vec3",
  9076. "x": 0,
  9077. "y": 0,
  9078. "z": 0
  9079. },
  9080. "_lrot": {
  9081. "__type__": "cc.Quat",
  9082. "x": 0,
  9083. "y": 0,
  9084. "z": 0,
  9085. "w": 1
  9086. },
  9087. "_lscale": {
  9088. "__type__": "cc.Vec3",
  9089. "x": 1,
  9090. "y": 1,
  9091. "z": 1
  9092. },
  9093. "_layer": 1073741824,
  9094. "_euler": {
  9095. "__type__": "cc.Vec3",
  9096. "x": 0,
  9097. "y": 0,
  9098. "z": 0
  9099. },
  9100. "_id": ""
  9101. },
  9102. {
  9103. "__type__": "cc.UITransform",
  9104. "_name": "",
  9105. "_objFlags": 0,
  9106. "node": {
  9107. "__id__": 420
  9108. },
  9109. "_enabled": true,
  9110. "__prefab": {
  9111. "__id__": 422
  9112. },
  9113. "_priority": 0,
  9114. "_contentSize": {
  9115. "__type__": "cc.Size",
  9116. "width": 100,
  9117. "height": 100
  9118. },
  9119. "_anchorPoint": {
  9120. "__type__": "cc.Vec2",
  9121. "x": 0.5,
  9122. "y": 0.5
  9123. },
  9124. "_id": ""
  9125. },
  9126. {
  9127. "__type__": "cc.CompPrefabInfo",
  9128. "fileId": "16GbiHRplGS7pG9UwD/qhu"
  9129. },
  9130. {
  9131. "__type__": "dac21xJD+VAUaoh8lKjfmQr",
  9132. "_name": "",
  9133. "_objFlags": 0,
  9134. "node": {
  9135. "__id__": 420
  9136. },
  9137. "_enabled": true,
  9138. "__prefab": {
  9139. "__id__": 424
  9140. },
  9141. "hostAlias": "",
  9142. "withCredentials": false,
  9143. "timeout": 0,
  9144. "responseType": 3,
  9145. "useEncrypt": true,
  9146. "useLog": true,
  9147. "_id": ""
  9148. },
  9149. {
  9150. "__type__": "cc.CompPrefabInfo",
  9151. "fileId": "3apY8wzJJEBZ+FkMBcmETO"
  9152. },
  9153. {
  9154. "__type__": "cc.PrefabInfo",
  9155. "root": {
  9156. "__id__": 1
  9157. },
  9158. "asset": {
  9159. "__id__": 0
  9160. },
  9161. "fileId": "5aHKplNs1HlpP/DK29LRKI"
  9162. },
  9163. {
  9164. "__type__": "cc.UITransform",
  9165. "_name": "",
  9166. "_objFlags": 0,
  9167. "node": {
  9168. "__id__": 1
  9169. },
  9170. "_enabled": true,
  9171. "__prefab": {
  9172. "__id__": 427
  9173. },
  9174. "_priority": 0,
  9175. "_contentSize": {
  9176. "__type__": "cc.Size",
  9177. "width": 750,
  9178. "height": 1334
  9179. },
  9180. "_anchorPoint": {
  9181. "__type__": "cc.Vec2",
  9182. "x": 0.5,
  9183. "y": 0.5
  9184. },
  9185. "_id": ""
  9186. },
  9187. {
  9188. "__type__": "cc.CompPrefabInfo",
  9189. "fileId": "02Hg8CyY5DMot/S9a3jsN6"
  9190. },
  9191. {
  9192. "__type__": "bd869tPK79PH4A99v6jE8q0",
  9193. "_name": "",
  9194. "_objFlags": 0,
  9195. "node": {
  9196. "__id__": 1
  9197. },
  9198. "_enabled": true,
  9199. "__prefab": null,
  9200. "closeNodes": [
  9201. {
  9202. "__id__": 338
  9203. }
  9204. ],
  9205. "onParams": null,
  9206. "onClosing": null,
  9207. "closeTween": null,
  9208. "_id": ""
  9209. },
  9210. {
  9211. "__type__": "cc.Widget",
  9212. "_name": "",
  9213. "_objFlags": 0,
  9214. "node": {
  9215. "__id__": 1
  9216. },
  9217. "_enabled": true,
  9218. "__prefab": {
  9219. "__id__": 430
  9220. },
  9221. "_alignFlags": 45,
  9222. "_target": null,
  9223. "_left": 0,
  9224. "_right": 0,
  9225. "_top": 0,
  9226. "_bottom": 0,
  9227. "_horizontalCenter": 0,
  9228. "_verticalCenter": 0,
  9229. "_isAbsLeft": true,
  9230. "_isAbsRight": true,
  9231. "_isAbsTop": true,
  9232. "_isAbsBottom": true,
  9233. "_isAbsHorizontalCenter": true,
  9234. "_isAbsVerticalCenter": true,
  9235. "_originalWidth": 750,
  9236. "_originalHeight": 1344,
  9237. "_alignMode": 2,
  9238. "_lockFlags": 0,
  9239. "_id": ""
  9240. },
  9241. {
  9242. "__type__": "cc.CompPrefabInfo",
  9243. "fileId": "4032KsK+hCYrqfMdc3XGa+"
  9244. },
  9245. {
  9246. "__type__": "2eeebmv6vRD2qNmpoUq3uvp",
  9247. "_name": "",
  9248. "_objFlags": 0,
  9249. "node": {
  9250. "__id__": 1
  9251. },
  9252. "_enabled": true,
  9253. "__prefab": {
  9254. "__id__": 432
  9255. },
  9256. "showType": 0,
  9257. "ads": [
  9258. {
  9259. "__id__": 433
  9260. },
  9261. {
  9262. "__id__": 435
  9263. }
  9264. ],
  9265. "showOnLoad": true,
  9266. "_id": ""
  9267. },
  9268. {
  9269. "__type__": "cc.CompPrefabInfo",
  9270. "fileId": "be1aLwx/ZEiJ3XZ1OWHkoy"
  9271. },
  9272. {
  9273. "__type__": "ADHelperData",
  9274. "type": 0,
  9275. "weight": 0,
  9276. "deley": {
  9277. "__id__": 434
  9278. }
  9279. },
  9280. {
  9281. "__type__": "ADHelperDeleyData",
  9282. "type": 0,
  9283. "deley_const": 0,
  9284. "deley_random": {
  9285. "__type__": "cc.Vec2",
  9286. "x": 0,
  9287. "y": 0
  9288. }
  9289. },
  9290. {
  9291. "__type__": "ADHelperData",
  9292. "type": 3,
  9293. "weight": 100,
  9294. "deley": {
  9295. "__id__": 436
  9296. }
  9297. },
  9298. {
  9299. "__type__": "ADHelperDeleyData",
  9300. "type": 0,
  9301. "deley_const": 0,
  9302. "deley_random": {
  9303. "__type__": "cc.Vec2",
  9304. "x": 0,
  9305. "y": 0
  9306. }
  9307. },
  9308. {
  9309. "__type__": "41374oEF8xOm6wIwDuMhGAS",
  9310. "_name": "",
  9311. "_objFlags": 0,
  9312. "node": {
  9313. "__id__": 1
  9314. },
  9315. "_enabled": true,
  9316. "__prefab": {
  9317. "__id__": 438
  9318. },
  9319. "prize": {
  9320. "__id__": 68
  9321. },
  9322. "prizeBg": {
  9323. "__id__": 67
  9324. },
  9325. "http": {
  9326. "__id__": 423
  9327. },
  9328. "getDiamondBack": {
  9329. "__id__": 439
  9330. },
  9331. "getPrizeBack": {
  9332. "__id__": 440
  9333. },
  9334. "turntableWin": {
  9335. "__id__": 1
  9336. },
  9337. "drawBack": {
  9338. "__id__": 441
  9339. },
  9340. "drawTimes": {
  9341. "__id__": 406
  9342. },
  9343. "closeBtn": {
  9344. "__id__": 338
  9345. },
  9346. "ruleBtn": {
  9347. "__id__": 348
  9348. },
  9349. "turntableSound": {
  9350. "__id__": 78
  9351. },
  9352. "drawaBtn": {
  9353. "__id__": 367
  9354. },
  9355. "_id": ""
  9356. },
  9357. {
  9358. "__type__": "cc.CompPrefabInfo",
  9359. "fileId": "6eGhP/htVFfJrMc4CC6paS"
  9360. },
  9361. {
  9362. "__type__": "cc.ClickEvent",
  9363. "target": {
  9364. "__id__": 1
  9365. },
  9366. "component": "",
  9367. "_componentId": "41374oEF8xOm6wIwDuMhGAS",
  9368. "handler": "getDiamondBackFun",
  9369. "customEventData": ""
  9370. },
  9371. {
  9372. "__type__": "cc.ClickEvent",
  9373. "target": {
  9374. "__id__": 1
  9375. },
  9376. "component": "",
  9377. "_componentId": "41374oEF8xOm6wIwDuMhGAS",
  9378. "handler": "getPrizeBackFun",
  9379. "customEventData": ""
  9380. },
  9381. {
  9382. "__type__": "cc.ClickEvent",
  9383. "target": {
  9384. "__id__": 68
  9385. },
  9386. "component": "",
  9387. "_componentId": "cae7cbKLC9GtbRBSPu9VAQJ",
  9388. "handler": "setPrizeNum",
  9389. "customEventData": ""
  9390. },
  9391. {
  9392. "__type__": "5dbc7RZgppH0phbd/ybYswr",
  9393. "_name": "",
  9394. "_objFlags": 0,
  9395. "node": {
  9396. "__id__": 1
  9397. },
  9398. "_enabled": true,
  9399. "__prefab": {
  9400. "__id__": 443
  9401. },
  9402. "prefabPath": "Prefabs/Windows/神石领取界面",
  9403. "openMode": 0,
  9404. "params": [],
  9405. "openFroms": [],
  9406. "_id": ""
  9407. },
  9408. {
  9409. "__type__": "cc.CompPrefabInfo",
  9410. "fileId": "91KcKyE7lL1IIQXvU3pseP"
  9411. },
  9412. {
  9413. "__type__": "cc.PrefabInfo",
  9414. "root": {
  9415. "__id__": 1
  9416. },
  9417. "asset": {
  9418. "__id__": 0
  9419. },
  9420. "fileId": "b6G/lXkPdK9bp4VNF+CZts"
  9421. }
  9422. ]