test.scene 128 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "test",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "scene": {
  9. "__id__": 1
  10. }
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "test",
  15. "_objFlags": 0,
  16. "__editorExtras__": {},
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_components": [],
  25. "_prefab": null,
  26. "_lpos": {
  27. "__type__": "cc.Vec3",
  28. "x": 0,
  29. "y": 0,
  30. "z": 0
  31. },
  32. "_lrot": {
  33. "__type__": "cc.Quat",
  34. "x": 0,
  35. "y": 0,
  36. "z": 0,
  37. "w": 1
  38. },
  39. "_lscale": {
  40. "__type__": "cc.Vec3",
  41. "x": 1,
  42. "y": 1,
  43. "z": 1
  44. },
  45. "_mobility": 0,
  46. "_layer": 1073741824,
  47. "_euler": {
  48. "__type__": "cc.Vec3",
  49. "x": 0,
  50. "y": 0,
  51. "z": 0
  52. },
  53. "autoReleaseAssets": false,
  54. "_globals": {
  55. "__id__": 183
  56. },
  57. "_id": "2031795d-6ee4-433a-a4c3-6c5688b83d87"
  58. },
  59. {
  60. "__type__": "cc.Node",
  61. "_name": "Canvas",
  62. "_objFlags": 0,
  63. "__editorExtras__": {},
  64. "_parent": {
  65. "__id__": 1
  66. },
  67. "_children": [
  68. {
  69. "__id__": 3
  70. },
  71. {
  72. "__id__": 5
  73. },
  74. {
  75. "__id__": 22
  76. },
  77. {
  78. "__id__": 39
  79. },
  80. {
  81. "__id__": 53
  82. },
  83. {
  84. "__id__": 67
  85. },
  86. {
  87. "__id__": 78
  88. },
  89. {
  90. "__id__": 89
  91. },
  92. {
  93. "__id__": 111
  94. },
  95. {
  96. "__id__": 130
  97. },
  98. {
  99. "__id__": 146
  100. },
  101. {
  102. "__id__": 156
  103. },
  104. {
  105. "__id__": 164
  106. },
  107. {
  108. "__id__": 172
  109. }
  110. ],
  111. "_active": true,
  112. "_components": [
  113. {
  114. "__id__": 180
  115. },
  116. {
  117. "__id__": 181
  118. },
  119. {
  120. "__id__": 182
  121. }
  122. ],
  123. "_prefab": null,
  124. "_lpos": {
  125. "__type__": "cc.Vec3",
  126. "x": 360,
  127. "y": 640,
  128. "z": 0
  129. },
  130. "_lrot": {
  131. "__type__": "cc.Quat",
  132. "x": 0,
  133. "y": 0,
  134. "z": 0,
  135. "w": 1
  136. },
  137. "_lscale": {
  138. "__type__": "cc.Vec3",
  139. "x": 1,
  140. "y": 1,
  141. "z": 1
  142. },
  143. "_mobility": 0,
  144. "_layer": 33554432,
  145. "_euler": {
  146. "__type__": "cc.Vec3",
  147. "x": 0,
  148. "y": 0,
  149. "z": 0
  150. },
  151. "_id": "beI88Z2HpFELqR4T5EMHpg"
  152. },
  153. {
  154. "__type__": "cc.Node",
  155. "_name": "Camera",
  156. "_objFlags": 0,
  157. "__editorExtras__": {},
  158. "_parent": {
  159. "__id__": 2
  160. },
  161. "_children": [],
  162. "_active": true,
  163. "_components": [
  164. {
  165. "__id__": 4
  166. }
  167. ],
  168. "_prefab": null,
  169. "_lpos": {
  170. "__type__": "cc.Vec3",
  171. "x": 0,
  172. "y": 0,
  173. "z": 1000
  174. },
  175. "_lrot": {
  176. "__type__": "cc.Quat",
  177. "x": 0,
  178. "y": 0,
  179. "z": 0,
  180. "w": 1
  181. },
  182. "_lscale": {
  183. "__type__": "cc.Vec3",
  184. "x": 1,
  185. "y": 1,
  186. "z": 1
  187. },
  188. "_mobility": 0,
  189. "_layer": 1073741824,
  190. "_euler": {
  191. "__type__": "cc.Vec3",
  192. "x": 0,
  193. "y": 0,
  194. "z": 0
  195. },
  196. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  197. },
  198. {
  199. "__type__": "cc.Camera",
  200. "_name": "",
  201. "_objFlags": 0,
  202. "__editorExtras__": {},
  203. "node": {
  204. "__id__": 3
  205. },
  206. "_enabled": true,
  207. "__prefab": null,
  208. "_projection": 0,
  209. "_priority": 0,
  210. "_fov": 45,
  211. "_fovAxis": 0,
  212. "_orthoHeight": 640,
  213. "_near": 0,
  214. "_far": 1000,
  215. "_color": {
  216. "__type__": "cc.Color",
  217. "r": 0,
  218. "g": 0,
  219. "b": 0,
  220. "a": 255
  221. },
  222. "_depth": 1,
  223. "_stencil": 0,
  224. "_clearFlags": 7,
  225. "_rect": {
  226. "__type__": "cc.Rect",
  227. "x": 0,
  228. "y": 0,
  229. "width": 1,
  230. "height": 1
  231. },
  232. "_aperture": 19,
  233. "_shutter": 7,
  234. "_iso": 0,
  235. "_screenScale": 1,
  236. "_visibility": 1108344832,
  237. "_targetTexture": null,
  238. "_postProcess": null,
  239. "_usePostProcess": false,
  240. "_cameraType": -1,
  241. "_trackingType": 0,
  242. "_id": "63WIch3o5BEYRlXzTT0oWc"
  243. },
  244. {
  245. "__type__": "cc.Node",
  246. "_name": "4water",
  247. "_objFlags": 0,
  248. "__editorExtras__": {},
  249. "_parent": {
  250. "__id__": 2
  251. },
  252. "_children": [
  253. {
  254. "__id__": 6
  255. },
  256. {
  257. "__id__": 9
  258. },
  259. {
  260. "__id__": 12
  261. },
  262. {
  263. "__id__": 15
  264. },
  265. {
  266. "__id__": 18
  267. }
  268. ],
  269. "_active": true,
  270. "_components": [
  271. {
  272. "__id__": 21
  273. }
  274. ],
  275. "_prefab": null,
  276. "_lpos": {
  277. "__type__": "cc.Vec3",
  278. "x": -138.911,
  279. "y": 0,
  280. "z": 0
  281. },
  282. "_lrot": {
  283. "__type__": "cc.Quat",
  284. "x": 0,
  285. "y": 0,
  286. "z": 0,
  287. "w": 1
  288. },
  289. "_lscale": {
  290. "__type__": "cc.Vec3",
  291. "x": 1,
  292. "y": 1,
  293. "z": 1
  294. },
  295. "_mobility": 0,
  296. "_layer": 33554432,
  297. "_euler": {
  298. "__type__": "cc.Vec3",
  299. "x": 0,
  300. "y": 0,
  301. "z": 0
  302. },
  303. "_id": "064cs9qbNDIoAq1uUR2S1a"
  304. },
  305. {
  306. "__type__": "cc.Node",
  307. "_name": "Node-004",
  308. "_objFlags": 0,
  309. "__editorExtras__": {},
  310. "_parent": {
  311. "__id__": 5
  312. },
  313. "_children": [],
  314. "_active": true,
  315. "_components": [
  316. {
  317. "__id__": 7
  318. },
  319. {
  320. "__id__": 8
  321. }
  322. ],
  323. "_prefab": null,
  324. "_lpos": {
  325. "__type__": "cc.Vec3",
  326. "x": -52,
  327. "y": -98,
  328. "z": 0
  329. },
  330. "_lrot": {
  331. "__type__": "cc.Quat",
  332. "x": 0,
  333. "y": 0,
  334. "z": 0,
  335. "w": 1
  336. },
  337. "_lscale": {
  338. "__type__": "cc.Vec3",
  339. "x": 1,
  340. "y": 1,
  341. "z": 1
  342. },
  343. "_mobility": 0,
  344. "_layer": 33554432,
  345. "_euler": {
  346. "__type__": "cc.Vec3",
  347. "x": 0,
  348. "y": 0,
  349. "z": 0
  350. },
  351. "_id": "17mRINO+xOX6HVWQI6E3au"
  352. },
  353. {
  354. "__type__": "cc.UITransform",
  355. "_name": "",
  356. "_objFlags": 0,
  357. "__editorExtras__": {},
  358. "node": {
  359. "__id__": 6
  360. },
  361. "_enabled": true,
  362. "__prefab": null,
  363. "_contentSize": {
  364. "__type__": "cc.Size",
  365. "width": 107,
  366. "height": 254
  367. },
  368. "_anchorPoint": {
  369. "__type__": "cc.Vec2",
  370. "x": 0.4953271028037383,
  371. "y": 0.48724410289854514
  372. },
  373. "_id": "596323KAdGIpYv3BTZ5bnY"
  374. },
  375. {
  376. "__type__": "sp.Skeleton",
  377. "_name": "",
  378. "_objFlags": 0,
  379. "__editorExtras__": {},
  380. "node": {
  381. "__id__": 6
  382. },
  383. "_enabled": true,
  384. "__prefab": null,
  385. "_customMaterial": null,
  386. "_srcBlendFactor": 2,
  387. "_dstBlendFactor": 4,
  388. "_color": {
  389. "__type__": "cc.Color",
  390. "r": 255,
  391. "g": 0,
  392. "b": 0,
  393. "a": 255
  394. },
  395. "_skeletonData": {
  396. "__uuid__": "a35308ab-bf3a-4d35-977b-30cad3e0f335",
  397. "__expectedType__": "sp.SkeletonData"
  398. },
  399. "defaultSkin": "water04",
  400. "defaultAnimation": "",
  401. "_premultipliedAlpha": false,
  402. "_timeScale": 1,
  403. "_preCacheMode": 0,
  404. "_cacheMode": 0,
  405. "_sockets": [],
  406. "_useTint": false,
  407. "_debugMesh": false,
  408. "_debugBones": false,
  409. "_debugSlots": false,
  410. "_enableBatch": false,
  411. "loop": true,
  412. "_id": "bcX/CgBc5Fa5r+YjV9ov8t"
  413. },
  414. {
  415. "__type__": "cc.Node",
  416. "_name": "Node-003",
  417. "_objFlags": 0,
  418. "__editorExtras__": {},
  419. "_parent": {
  420. "__id__": 5
  421. },
  422. "_children": [],
  423. "_active": true,
  424. "_components": [
  425. {
  426. "__id__": 10
  427. },
  428. {
  429. "__id__": 11
  430. }
  431. ],
  432. "_prefab": null,
  433. "_lpos": {
  434. "__type__": "cc.Vec3",
  435. "x": -52,
  436. "y": -98,
  437. "z": 0
  438. },
  439. "_lrot": {
  440. "__type__": "cc.Quat",
  441. "x": 0,
  442. "y": 0,
  443. "z": 0,
  444. "w": 1
  445. },
  446. "_lscale": {
  447. "__type__": "cc.Vec3",
  448. "x": 1,
  449. "y": 1,
  450. "z": 1
  451. },
  452. "_mobility": 0,
  453. "_layer": 33554432,
  454. "_euler": {
  455. "__type__": "cc.Vec3",
  456. "x": 0,
  457. "y": 0,
  458. "z": 0
  459. },
  460. "_id": "f0yQ8V52lFiJhDSHB0lci4"
  461. },
  462. {
  463. "__type__": "cc.UITransform",
  464. "_name": "",
  465. "_objFlags": 0,
  466. "__editorExtras__": {},
  467. "node": {
  468. "__id__": 9
  469. },
  470. "_enabled": true,
  471. "__prefab": null,
  472. "_contentSize": {
  473. "__type__": "cc.Size",
  474. "width": 107,
  475. "height": 254
  476. },
  477. "_anchorPoint": {
  478. "__type__": "cc.Vec2",
  479. "x": 0.4953271028037383,
  480. "y": 0.48724410289854514
  481. },
  482. "_id": "27Lo81NgtHaqAh/8SW09/m"
  483. },
  484. {
  485. "__type__": "sp.Skeleton",
  486. "_name": "",
  487. "_objFlags": 0,
  488. "__editorExtras__": {},
  489. "node": {
  490. "__id__": 9
  491. },
  492. "_enabled": true,
  493. "__prefab": null,
  494. "_customMaterial": null,
  495. "_srcBlendFactor": 2,
  496. "_dstBlendFactor": 4,
  497. "_color": {
  498. "__type__": "cc.Color",
  499. "r": 255,
  500. "g": 0,
  501. "b": 0,
  502. "a": 255
  503. },
  504. "_skeletonData": {
  505. "__uuid__": "a35308ab-bf3a-4d35-977b-30cad3e0f335",
  506. "__expectedType__": "sp.SkeletonData"
  507. },
  508. "defaultSkin": "water03",
  509. "defaultAnimation": "",
  510. "_premultipliedAlpha": false,
  511. "_timeScale": 1,
  512. "_preCacheMode": 0,
  513. "_cacheMode": 0,
  514. "_sockets": [],
  515. "_useTint": false,
  516. "_debugMesh": false,
  517. "_debugBones": false,
  518. "_debugSlots": false,
  519. "_enableBatch": false,
  520. "loop": true,
  521. "_id": "e2mJVCXUxFFImoX01mjnCW"
  522. },
  523. {
  524. "__type__": "cc.Node",
  525. "_name": "Node-002",
  526. "_objFlags": 0,
  527. "__editorExtras__": {},
  528. "_parent": {
  529. "__id__": 5
  530. },
  531. "_children": [],
  532. "_active": true,
  533. "_components": [
  534. {
  535. "__id__": 13
  536. },
  537. {
  538. "__id__": 14
  539. }
  540. ],
  541. "_prefab": null,
  542. "_lpos": {
  543. "__type__": "cc.Vec3",
  544. "x": -52,
  545. "y": -98,
  546. "z": 0
  547. },
  548. "_lrot": {
  549. "__type__": "cc.Quat",
  550. "x": 0,
  551. "y": 0,
  552. "z": 0,
  553. "w": 1
  554. },
  555. "_lscale": {
  556. "__type__": "cc.Vec3",
  557. "x": 1,
  558. "y": 1,
  559. "z": 1
  560. },
  561. "_mobility": 0,
  562. "_layer": 33554432,
  563. "_euler": {
  564. "__type__": "cc.Vec3",
  565. "x": 0,
  566. "y": 0,
  567. "z": 0
  568. },
  569. "_id": "cdy19ux8lNcolX59aXm1in"
  570. },
  571. {
  572. "__type__": "cc.UITransform",
  573. "_name": "",
  574. "_objFlags": 0,
  575. "__editorExtras__": {},
  576. "node": {
  577. "__id__": 12
  578. },
  579. "_enabled": true,
  580. "__prefab": null,
  581. "_contentSize": {
  582. "__type__": "cc.Size",
  583. "width": 107,
  584. "height": 254
  585. },
  586. "_anchorPoint": {
  587. "__type__": "cc.Vec2",
  588. "x": 0.4953271028037383,
  589. "y": 0.48724410289854514
  590. },
  591. "_id": "4f0e/MgMxGM54Y/K/gj08K"
  592. },
  593. {
  594. "__type__": "sp.Skeleton",
  595. "_name": "",
  596. "_objFlags": 0,
  597. "__editorExtras__": {},
  598. "node": {
  599. "__id__": 12
  600. },
  601. "_enabled": true,
  602. "__prefab": null,
  603. "_customMaterial": null,
  604. "_srcBlendFactor": 2,
  605. "_dstBlendFactor": 4,
  606. "_color": {
  607. "__type__": "cc.Color",
  608. "r": 255,
  609. "g": 0,
  610. "b": 0,
  611. "a": 255
  612. },
  613. "_skeletonData": {
  614. "__uuid__": "a35308ab-bf3a-4d35-977b-30cad3e0f335",
  615. "__expectedType__": "sp.SkeletonData"
  616. },
  617. "defaultSkin": "water02",
  618. "defaultAnimation": "",
  619. "_premultipliedAlpha": false,
  620. "_timeScale": 1,
  621. "_preCacheMode": 0,
  622. "_cacheMode": 0,
  623. "_sockets": [],
  624. "_useTint": false,
  625. "_debugMesh": false,
  626. "_debugBones": false,
  627. "_debugSlots": false,
  628. "_enableBatch": false,
  629. "loop": true,
  630. "_id": "fa04EoYVNBIpbnuu8AuGI1"
  631. },
  632. {
  633. "__type__": "cc.Node",
  634. "_name": "Node-001",
  635. "_objFlags": 0,
  636. "__editorExtras__": {},
  637. "_parent": {
  638. "__id__": 5
  639. },
  640. "_children": [],
  641. "_active": true,
  642. "_components": [
  643. {
  644. "__id__": 16
  645. },
  646. {
  647. "__id__": 17
  648. }
  649. ],
  650. "_prefab": null,
  651. "_lpos": {
  652. "__type__": "cc.Vec3",
  653. "x": -52,
  654. "y": -98,
  655. "z": 0
  656. },
  657. "_lrot": {
  658. "__type__": "cc.Quat",
  659. "x": 0,
  660. "y": 0,
  661. "z": 0,
  662. "w": 1
  663. },
  664. "_lscale": {
  665. "__type__": "cc.Vec3",
  666. "x": 1,
  667. "y": 1,
  668. "z": 1
  669. },
  670. "_mobility": 0,
  671. "_layer": 33554432,
  672. "_euler": {
  673. "__type__": "cc.Vec3",
  674. "x": 0,
  675. "y": 0,
  676. "z": 0
  677. },
  678. "_id": "c6LaOuHyFDQqd37DL/gayr"
  679. },
  680. {
  681. "__type__": "cc.UITransform",
  682. "_name": "",
  683. "_objFlags": 0,
  684. "__editorExtras__": {},
  685. "node": {
  686. "__id__": 15
  687. },
  688. "_enabled": true,
  689. "__prefab": null,
  690. "_contentSize": {
  691. "__type__": "cc.Size",
  692. "width": 107,
  693. "height": 254
  694. },
  695. "_anchorPoint": {
  696. "__type__": "cc.Vec2",
  697. "x": 0.4953271028037383,
  698. "y": 0.48724410289854514
  699. },
  700. "_id": "4c+ddPUJVCQoVD9Z59C3OR"
  701. },
  702. {
  703. "__type__": "sp.Skeleton",
  704. "_name": "",
  705. "_objFlags": 0,
  706. "__editorExtras__": {},
  707. "node": {
  708. "__id__": 15
  709. },
  710. "_enabled": true,
  711. "__prefab": null,
  712. "_customMaterial": null,
  713. "_srcBlendFactor": 2,
  714. "_dstBlendFactor": 4,
  715. "_color": {
  716. "__type__": "cc.Color",
  717. "r": 255,
  718. "g": 0,
  719. "b": 0,
  720. "a": 255
  721. },
  722. "_skeletonData": {
  723. "__uuid__": "a35308ab-bf3a-4d35-977b-30cad3e0f335",
  724. "__expectedType__": "sp.SkeletonData"
  725. },
  726. "defaultSkin": "water01",
  727. "defaultAnimation": "",
  728. "_premultipliedAlpha": false,
  729. "_timeScale": 1,
  730. "_preCacheMode": 0,
  731. "_cacheMode": 0,
  732. "_sockets": [],
  733. "_useTint": false,
  734. "_debugMesh": false,
  735. "_debugBones": false,
  736. "_debugSlots": false,
  737. "_enableBatch": false,
  738. "loop": true,
  739. "_id": "36zs+WhatNn4ZxT7lj+bMf"
  740. },
  741. {
  742. "__type__": "cc.Node",
  743. "_name": "Node",
  744. "_objFlags": 0,
  745. "__editorExtras__": {},
  746. "_parent": {
  747. "__id__": 5
  748. },
  749. "_children": [],
  750. "_active": true,
  751. "_components": [
  752. {
  753. "__id__": 19
  754. },
  755. {
  756. "__id__": 20
  757. }
  758. ],
  759. "_prefab": null,
  760. "_lpos": {
  761. "__type__": "cc.Vec3",
  762. "x": -52,
  763. "y": -98,
  764. "z": 0
  765. },
  766. "_lrot": {
  767. "__type__": "cc.Quat",
  768. "x": 0,
  769. "y": 0,
  770. "z": 0,
  771. "w": 1
  772. },
  773. "_lscale": {
  774. "__type__": "cc.Vec3",
  775. "x": 1,
  776. "y": 1,
  777. "z": 1
  778. },
  779. "_mobility": 0,
  780. "_layer": 33554432,
  781. "_euler": {
  782. "__type__": "cc.Vec3",
  783. "x": 0,
  784. "y": 0,
  785. "z": 0
  786. },
  787. "_id": "63nofhe8JK4aPuApd6Anw4"
  788. },
  789. {
  790. "__type__": "cc.UITransform",
  791. "_name": "",
  792. "_objFlags": 0,
  793. "__editorExtras__": {},
  794. "node": {
  795. "__id__": 18
  796. },
  797. "_enabled": true,
  798. "__prefab": null,
  799. "_contentSize": {
  800. "__type__": "cc.Size",
  801. "width": 107,
  802. "height": 254
  803. },
  804. "_anchorPoint": {
  805. "__type__": "cc.Vec2",
  806. "x": 0.4953271028037383,
  807. "y": 0.48724410289854514
  808. },
  809. "_id": "68SFOQwyBHfJb4SnLjsSBX"
  810. },
  811. {
  812. "__type__": "sp.Skeleton",
  813. "_name": "",
  814. "_objFlags": 0,
  815. "__editorExtras__": {},
  816. "node": {
  817. "__id__": 18
  818. },
  819. "_enabled": true,
  820. "__prefab": null,
  821. "_customMaterial": null,
  822. "_srcBlendFactor": 2,
  823. "_dstBlendFactor": 4,
  824. "_color": {
  825. "__type__": "cc.Color",
  826. "r": 255,
  827. "g": 255,
  828. "b": 255,
  829. "a": 255
  830. },
  831. "_skeletonData": {
  832. "__uuid__": "a35308ab-bf3a-4d35-977b-30cad3e0f335",
  833. "__expectedType__": "sp.SkeletonData"
  834. },
  835. "defaultSkin": "cup",
  836. "defaultAnimation": "",
  837. "_premultipliedAlpha": false,
  838. "_timeScale": 1,
  839. "_preCacheMode": 0,
  840. "_cacheMode": 0,
  841. "_sockets": [],
  842. "_useTint": false,
  843. "_debugMesh": false,
  844. "_debugBones": false,
  845. "_debugSlots": false,
  846. "_enableBatch": false,
  847. "loop": true,
  848. "_id": "afmhAlCCxKXrwXvsnChLG2"
  849. },
  850. {
  851. "__type__": "cc.UITransform",
  852. "_name": "",
  853. "_objFlags": 0,
  854. "__editorExtras__": {},
  855. "node": {
  856. "__id__": 5
  857. },
  858. "_enabled": true,
  859. "__prefab": null,
  860. "_contentSize": {
  861. "__type__": "cc.Size",
  862. "width": 104.8,
  863. "height": 249.4
  864. },
  865. "_anchorPoint": {
  866. "__type__": "cc.Vec2",
  867. "x": 1,
  868. "y": 0.9
  869. },
  870. "_id": "37jPch6ORAzKV1P5QqmNiC"
  871. },
  872. {
  873. "__type__": "cc.Node",
  874. "_name": "4Black",
  875. "_objFlags": 0,
  876. "__editorExtras__": {},
  877. "_parent": {
  878. "__id__": 2
  879. },
  880. "_children": [
  881. {
  882. "__id__": 23
  883. },
  884. {
  885. "__id__": 26
  886. },
  887. {
  888. "__id__": 29
  889. },
  890. {
  891. "__id__": 32
  892. },
  893. {
  894. "__id__": 35
  895. }
  896. ],
  897. "_active": false,
  898. "_components": [
  899. {
  900. "__id__": 38
  901. }
  902. ],
  903. "_prefab": null,
  904. "_lpos": {
  905. "__type__": "cc.Vec3",
  906. "x": -190.911,
  907. "y": -95.964,
  908. "z": 0
  909. },
  910. "_lrot": {
  911. "__type__": "cc.Quat",
  912. "x": 0,
  913. "y": 0,
  914. "z": 0,
  915. "w": 1
  916. },
  917. "_lscale": {
  918. "__type__": "cc.Vec3",
  919. "x": 1,
  920. "y": 1,
  921. "z": 1
  922. },
  923. "_mobility": 0,
  924. "_layer": 33554432,
  925. "_euler": {
  926. "__type__": "cc.Vec3",
  927. "x": 0,
  928. "y": 0,
  929. "z": 0
  930. },
  931. "_id": "9dh72U9QNK8pNp2VJi28b6"
  932. },
  933. {
  934. "__type__": "cc.Node",
  935. "_name": "black01",
  936. "_objFlags": 0,
  937. "__editorExtras__": {},
  938. "_parent": {
  939. "__id__": 22
  940. },
  941. "_children": [],
  942. "_active": true,
  943. "_components": [
  944. {
  945. "__id__": 24
  946. },
  947. {
  948. "__id__": 25
  949. }
  950. ],
  951. "_prefab": null,
  952. "_lpos": {
  953. "__type__": "cc.Vec3",
  954. "x": 0,
  955. "y": 62.26,
  956. "z": 0
  957. },
  958. "_lrot": {
  959. "__type__": "cc.Quat",
  960. "x": 0,
  961. "y": 0,
  962. "z": 0,
  963. "w": 1
  964. },
  965. "_lscale": {
  966. "__type__": "cc.Vec3",
  967. "x": 1,
  968. "y": 1.024,
  969. "z": 1
  970. },
  971. "_mobility": 0,
  972. "_layer": 33554432,
  973. "_euler": {
  974. "__type__": "cc.Vec3",
  975. "x": 0,
  976. "y": 0,
  977. "z": 0
  978. },
  979. "_id": "fczKY7mIZBGYc9VKKY/D55"
  980. },
  981. {
  982. "__type__": "cc.UITransform",
  983. "_name": "",
  984. "_objFlags": 0,
  985. "__editorExtras__": {},
  986. "node": {
  987. "__id__": 23
  988. },
  989. "_enabled": true,
  990. "__prefab": null,
  991. "_contentSize": {
  992. "__type__": "cc.Size",
  993. "width": 101,
  994. "height": 79
  995. },
  996. "_anchorPoint": {
  997. "__type__": "cc.Vec2",
  998. "x": 0.5,
  999. "y": 0.5
  1000. },
  1001. "_id": "c5k10GgkhAQaSNatZAfIq5"
  1002. },
  1003. {
  1004. "__type__": "cc.Sprite",
  1005. "_name": "",
  1006. "_objFlags": 0,
  1007. "__editorExtras__": {},
  1008. "node": {
  1009. "__id__": 23
  1010. },
  1011. "_enabled": true,
  1012. "__prefab": null,
  1013. "_customMaterial": null,
  1014. "_srcBlendFactor": 2,
  1015. "_dstBlendFactor": 4,
  1016. "_color": {
  1017. "__type__": "cc.Color",
  1018. "r": 255,
  1019. "g": 255,
  1020. "b": 255,
  1021. "a": 255
  1022. },
  1023. "_spriteFrame": {
  1024. "__uuid__": "31d8838d-ddab-46cd-8ea2-3c4a2ab155f7@f9941",
  1025. "__expectedType__": "cc.SpriteFrame"
  1026. },
  1027. "_type": 0,
  1028. "_fillType": 0,
  1029. "_sizeMode": 1,
  1030. "_fillCenter": {
  1031. "__type__": "cc.Vec2",
  1032. "x": 0,
  1033. "y": 0
  1034. },
  1035. "_fillStart": 0,
  1036. "_fillRange": 0,
  1037. "_isTrimmedMode": false,
  1038. "_useGrayscale": false,
  1039. "_atlas": null,
  1040. "_id": "08NXmX5UpMTbtFyMvlJzjH"
  1041. },
  1042. {
  1043. "__type__": "cc.Node",
  1044. "_name": "black02",
  1045. "_objFlags": 0,
  1046. "__editorExtras__": {},
  1047. "_parent": {
  1048. "__id__": 22
  1049. },
  1050. "_children": [],
  1051. "_active": true,
  1052. "_components": [
  1053. {
  1054. "__id__": 27
  1055. },
  1056. {
  1057. "__id__": 28
  1058. }
  1059. ],
  1060. "_prefab": null,
  1061. "_lpos": {
  1062. "__type__": "cc.Vec3",
  1063. "x": 0,
  1064. "y": 11.99,
  1065. "z": 0
  1066. },
  1067. "_lrot": {
  1068. "__type__": "cc.Quat",
  1069. "x": 0,
  1070. "y": 0,
  1071. "z": 0,
  1072. "w": 1
  1073. },
  1074. "_lscale": {
  1075. "__type__": "cc.Vec3",
  1076. "x": 1,
  1077. "y": 1.112,
  1078. "z": 1
  1079. },
  1080. "_mobility": 0,
  1081. "_layer": 33554432,
  1082. "_euler": {
  1083. "__type__": "cc.Vec3",
  1084. "x": 0,
  1085. "y": 0,
  1086. "z": 0
  1087. },
  1088. "_id": "60sqadcBZFGYRmCjCjivlM"
  1089. },
  1090. {
  1091. "__type__": "cc.UITransform",
  1092. "_name": "",
  1093. "_objFlags": 0,
  1094. "__editorExtras__": {},
  1095. "node": {
  1096. "__id__": 26
  1097. },
  1098. "_enabled": true,
  1099. "__prefab": null,
  1100. "_contentSize": {
  1101. "__type__": "cc.Size",
  1102. "width": 100,
  1103. "height": 56
  1104. },
  1105. "_anchorPoint": {
  1106. "__type__": "cc.Vec2",
  1107. "x": 0.5,
  1108. "y": 0.5
  1109. },
  1110. "_id": "38MnJPCnJIUIUB1lrwHKiB"
  1111. },
  1112. {
  1113. "__type__": "cc.Sprite",
  1114. "_name": "",
  1115. "_objFlags": 0,
  1116. "__editorExtras__": {},
  1117. "node": {
  1118. "__id__": 26
  1119. },
  1120. "_enabled": true,
  1121. "__prefab": null,
  1122. "_customMaterial": null,
  1123. "_srcBlendFactor": 2,
  1124. "_dstBlendFactor": 4,
  1125. "_color": {
  1126. "__type__": "cc.Color",
  1127. "r": 255,
  1128. "g": 255,
  1129. "b": 255,
  1130. "a": 255
  1131. },
  1132. "_spriteFrame": {
  1133. "__uuid__": "bbae49db-3aac-4fb9-aa41-d3195a8a8719@f9941",
  1134. "__expectedType__": "cc.SpriteFrame"
  1135. },
  1136. "_type": 0,
  1137. "_fillType": 0,
  1138. "_sizeMode": 1,
  1139. "_fillCenter": {
  1140. "__type__": "cc.Vec2",
  1141. "x": 0,
  1142. "y": 0
  1143. },
  1144. "_fillStart": 0,
  1145. "_fillRange": 0,
  1146. "_isTrimmedMode": false,
  1147. "_useGrayscale": false,
  1148. "_atlas": null,
  1149. "_id": "235aoTGtNFp4EtdizTDgoe"
  1150. },
  1151. {
  1152. "__type__": "cc.Node",
  1153. "_name": "black03",
  1154. "_objFlags": 0,
  1155. "__editorExtras__": {},
  1156. "_parent": {
  1157. "__id__": 22
  1158. },
  1159. "_children": [],
  1160. "_active": true,
  1161. "_components": [
  1162. {
  1163. "__id__": 30
  1164. },
  1165. {
  1166. "__id__": 31
  1167. }
  1168. ],
  1169. "_prefab": null,
  1170. "_lpos": {
  1171. "__type__": "cc.Vec3",
  1172. "x": 0,
  1173. "y": -27.597,
  1174. "z": 0
  1175. },
  1176. "_lrot": {
  1177. "__type__": "cc.Quat",
  1178. "x": 0,
  1179. "y": 0,
  1180. "z": 0,
  1181. "w": 1
  1182. },
  1183. "_lscale": {
  1184. "__type__": "cc.Vec3",
  1185. "x": 1,
  1186. "y": 1,
  1187. "z": 1
  1188. },
  1189. "_mobility": 0,
  1190. "_layer": 33554432,
  1191. "_euler": {
  1192. "__type__": "cc.Vec3",
  1193. "x": 0,
  1194. "y": 0,
  1195. "z": 0
  1196. },
  1197. "_id": "902qMZfsFNJLT5vcKNFyqL"
  1198. },
  1199. {
  1200. "__type__": "cc.UITransform",
  1201. "_name": "",
  1202. "_objFlags": 0,
  1203. "__editorExtras__": {},
  1204. "node": {
  1205. "__id__": 29
  1206. },
  1207. "_enabled": true,
  1208. "__prefab": null,
  1209. "_contentSize": {
  1210. "__type__": "cc.Size",
  1211. "width": 96,
  1212. "height": 60
  1213. },
  1214. "_anchorPoint": {
  1215. "__type__": "cc.Vec2",
  1216. "x": 0.5,
  1217. "y": 0.5
  1218. },
  1219. "_id": "84B0zaokFE6YDgIwS2DqiF"
  1220. },
  1221. {
  1222. "__type__": "cc.Sprite",
  1223. "_name": "",
  1224. "_objFlags": 0,
  1225. "__editorExtras__": {},
  1226. "node": {
  1227. "__id__": 29
  1228. },
  1229. "_enabled": true,
  1230. "__prefab": null,
  1231. "_customMaterial": null,
  1232. "_srcBlendFactor": 2,
  1233. "_dstBlendFactor": 4,
  1234. "_color": {
  1235. "__type__": "cc.Color",
  1236. "r": 255,
  1237. "g": 255,
  1238. "b": 255,
  1239. "a": 255
  1240. },
  1241. "_spriteFrame": {
  1242. "__uuid__": "1a1a5724-5ba7-4f89-9126-3816b48703ac@f9941",
  1243. "__expectedType__": "cc.SpriteFrame"
  1244. },
  1245. "_type": 0,
  1246. "_fillType": 0,
  1247. "_sizeMode": 1,
  1248. "_fillCenter": {
  1249. "__type__": "cc.Vec2",
  1250. "x": 0,
  1251. "y": 0
  1252. },
  1253. "_fillStart": 0,
  1254. "_fillRange": 0,
  1255. "_isTrimmedMode": false,
  1256. "_useGrayscale": false,
  1257. "_atlas": null,
  1258. "_id": "8b0A1Daz1JKqSXhDAROnYQ"
  1259. },
  1260. {
  1261. "__type__": "cc.Node",
  1262. "_name": "black04",
  1263. "_objFlags": 0,
  1264. "__editorExtras__": {},
  1265. "_parent": {
  1266. "__id__": 22
  1267. },
  1268. "_children": [],
  1269. "_active": true,
  1270. "_components": [
  1271. {
  1272. "__id__": 33
  1273. },
  1274. {
  1275. "__id__": 34
  1276. }
  1277. ],
  1278. "_prefab": null,
  1279. "_lpos": {
  1280. "__type__": "cc.Vec3",
  1281. "x": -0.168,
  1282. "y": -64.559,
  1283. "z": 0
  1284. },
  1285. "_lrot": {
  1286. "__type__": "cc.Quat",
  1287. "x": 0,
  1288. "y": 0,
  1289. "z": 0,
  1290. "w": 1
  1291. },
  1292. "_lscale": {
  1293. "__type__": "cc.Vec3",
  1294. "x": 1,
  1295. "y": 1,
  1296. "z": 1
  1297. },
  1298. "_mobility": 0,
  1299. "_layer": 33554432,
  1300. "_euler": {
  1301. "__type__": "cc.Vec3",
  1302. "x": 0,
  1303. "y": 0,
  1304. "z": 0
  1305. },
  1306. "_id": "37K/Wf+Y1Nvbg06OjVfPak"
  1307. },
  1308. {
  1309. "__type__": "cc.UITransform",
  1310. "_name": "",
  1311. "_objFlags": 0,
  1312. "__editorExtras__": {},
  1313. "node": {
  1314. "__id__": 32
  1315. },
  1316. "_enabled": true,
  1317. "__prefab": null,
  1318. "_contentSize": {
  1319. "__type__": "cc.Size",
  1320. "width": 83,
  1321. "height": 56
  1322. },
  1323. "_anchorPoint": {
  1324. "__type__": "cc.Vec2",
  1325. "x": 0.5,
  1326. "y": 0.5
  1327. },
  1328. "_id": "3azrB8J/5Gkr1Tx/BB8dfp"
  1329. },
  1330. {
  1331. "__type__": "cc.Sprite",
  1332. "_name": "",
  1333. "_objFlags": 0,
  1334. "__editorExtras__": {},
  1335. "node": {
  1336. "__id__": 32
  1337. },
  1338. "_enabled": true,
  1339. "__prefab": null,
  1340. "_customMaterial": null,
  1341. "_srcBlendFactor": 2,
  1342. "_dstBlendFactor": 4,
  1343. "_color": {
  1344. "__type__": "cc.Color",
  1345. "r": 255,
  1346. "g": 255,
  1347. "b": 255,
  1348. "a": 255
  1349. },
  1350. "_spriteFrame": {
  1351. "__uuid__": "b18d88c4-e3ed-4649-a2b8-7719b8493a91@f9941",
  1352. "__expectedType__": "cc.SpriteFrame"
  1353. },
  1354. "_type": 0,
  1355. "_fillType": 0,
  1356. "_sizeMode": 1,
  1357. "_fillCenter": {
  1358. "__type__": "cc.Vec2",
  1359. "x": 0,
  1360. "y": 0
  1361. },
  1362. "_fillStart": 0,
  1363. "_fillRange": 0,
  1364. "_isTrimmedMode": false,
  1365. "_useGrayscale": false,
  1366. "_atlas": null,
  1367. "_id": "bdsIq6AStFxIH8vldQmUDb"
  1368. },
  1369. {
  1370. "__type__": "cc.Node",
  1371. "_name": "Node",
  1372. "_objFlags": 0,
  1373. "__editorExtras__": {},
  1374. "_parent": {
  1375. "__id__": 22
  1376. },
  1377. "_children": [],
  1378. "_active": true,
  1379. "_components": [
  1380. {
  1381. "__id__": 36
  1382. },
  1383. {
  1384. "__id__": 37
  1385. }
  1386. ],
  1387. "_prefab": null,
  1388. "_lpos": {
  1389. "__type__": "cc.Vec3",
  1390. "x": 0,
  1391. "y": -2.036000000000058,
  1392. "z": 0
  1393. },
  1394. "_lrot": {
  1395. "__type__": "cc.Quat",
  1396. "x": 0,
  1397. "y": 0,
  1398. "z": 0,
  1399. "w": 1
  1400. },
  1401. "_lscale": {
  1402. "__type__": "cc.Vec3",
  1403. "x": 1,
  1404. "y": 1,
  1405. "z": 1
  1406. },
  1407. "_mobility": 0,
  1408. "_layer": 33554432,
  1409. "_euler": {
  1410. "__type__": "cc.Vec3",
  1411. "x": 0,
  1412. "y": 0,
  1413. "z": 0
  1414. },
  1415. "_id": "e6gESTKjxOnq9meFSDLd/T"
  1416. },
  1417. {
  1418. "__type__": "cc.UITransform",
  1419. "_name": "",
  1420. "_objFlags": 0,
  1421. "__editorExtras__": {},
  1422. "node": {
  1423. "__id__": 35
  1424. },
  1425. "_enabled": true,
  1426. "__prefab": null,
  1427. "_contentSize": {
  1428. "__type__": "cc.Size",
  1429. "width": 107,
  1430. "height": 254
  1431. },
  1432. "_anchorPoint": {
  1433. "__type__": "cc.Vec2",
  1434. "x": 0.4953271028037383,
  1435. "y": 0.48724410289854514
  1436. },
  1437. "_id": "5c//VbfO9FOqdL2iZep63o"
  1438. },
  1439. {
  1440. "__type__": "sp.Skeleton",
  1441. "_name": "",
  1442. "_objFlags": 0,
  1443. "__editorExtras__": {},
  1444. "node": {
  1445. "__id__": 35
  1446. },
  1447. "_enabled": true,
  1448. "__prefab": null,
  1449. "_customMaterial": null,
  1450. "_srcBlendFactor": 2,
  1451. "_dstBlendFactor": 4,
  1452. "_color": {
  1453. "__type__": "cc.Color",
  1454. "r": 255,
  1455. "g": 255,
  1456. "b": 255,
  1457. "a": 255
  1458. },
  1459. "_skeletonData": {
  1460. "__uuid__": "a35308ab-bf3a-4d35-977b-30cad3e0f335",
  1461. "__expectedType__": "sp.SkeletonData"
  1462. },
  1463. "defaultSkin": "cup",
  1464. "defaultAnimation": "",
  1465. "_premultipliedAlpha": false,
  1466. "_timeScale": 1,
  1467. "_preCacheMode": 0,
  1468. "_cacheMode": 0,
  1469. "_sockets": [],
  1470. "_useTint": false,
  1471. "_debugMesh": false,
  1472. "_debugBones": false,
  1473. "_debugSlots": false,
  1474. "_enableBatch": false,
  1475. "loop": true,
  1476. "_id": "1coBL2Mu9G35MZ3ENyO+Fl"
  1477. },
  1478. {
  1479. "__type__": "cc.UITransform",
  1480. "_name": "",
  1481. "_objFlags": 0,
  1482. "__editorExtras__": {},
  1483. "node": {
  1484. "__id__": 22
  1485. },
  1486. "_enabled": true,
  1487. "__prefab": null,
  1488. "_contentSize": {
  1489. "__type__": "cc.Size",
  1490. "width": 100,
  1491. "height": 100
  1492. },
  1493. "_anchorPoint": {
  1494. "__type__": "cc.Vec2",
  1495. "x": 0.5,
  1496. "y": 0.5
  1497. },
  1498. "_id": "dbg1fnuuRCCoeQvZ0H9VyH"
  1499. },
  1500. {
  1501. "__type__": "cc.Node",
  1502. "_name": "3water",
  1503. "_objFlags": 0,
  1504. "__editorExtras__": {},
  1505. "_parent": {
  1506. "__id__": 2
  1507. },
  1508. "_children": [
  1509. {
  1510. "__id__": 40
  1511. },
  1512. {
  1513. "__id__": 43
  1514. },
  1515. {
  1516. "__id__": 46
  1517. },
  1518. {
  1519. "__id__": 49
  1520. }
  1521. ],
  1522. "_active": true,
  1523. "_components": [
  1524. {
  1525. "__id__": 52
  1526. }
  1527. ],
  1528. "_prefab": null,
  1529. "_lpos": {
  1530. "__type__": "cc.Vec3",
  1531. "x": 0,
  1532. "y": -32.281,
  1533. "z": 0
  1534. },
  1535. "_lrot": {
  1536. "__type__": "cc.Quat",
  1537. "x": 0,
  1538. "y": 0,
  1539. "z": 0,
  1540. "w": 1
  1541. },
  1542. "_lscale": {
  1543. "__type__": "cc.Vec3",
  1544. "x": 1,
  1545. "y": 1,
  1546. "z": 1
  1547. },
  1548. "_mobility": 0,
  1549. "_layer": 33554432,
  1550. "_euler": {
  1551. "__type__": "cc.Vec3",
  1552. "x": 0,
  1553. "y": 0,
  1554. "z": 0
  1555. },
  1556. "_id": "7adfmSGfdJG4ZCIU9sBg50"
  1557. },
  1558. {
  1559. "__type__": "cc.Node",
  1560. "_name": "Node-003",
  1561. "_objFlags": 0,
  1562. "__editorExtras__": {},
  1563. "_parent": {
  1564. "__id__": 39
  1565. },
  1566. "_children": [],
  1567. "_active": true,
  1568. "_components": [
  1569. {
  1570. "__id__": 41
  1571. },
  1572. {
  1573. "__id__": 42
  1574. }
  1575. ],
  1576. "_prefab": null,
  1577. "_lpos": {
  1578. "__type__": "cc.Vec3",
  1579. "x": -52,
  1580. "y": -98,
  1581. "z": 0
  1582. },
  1583. "_lrot": {
  1584. "__type__": "cc.Quat",
  1585. "x": 0,
  1586. "y": 0,
  1587. "z": 0,
  1588. "w": 1
  1589. },
  1590. "_lscale": {
  1591. "__type__": "cc.Vec3",
  1592. "x": 1,
  1593. "y": 1,
  1594. "z": 1
  1595. },
  1596. "_mobility": 0,
  1597. "_layer": 33554432,
  1598. "_euler": {
  1599. "__type__": "cc.Vec3",
  1600. "x": 0,
  1601. "y": 0,
  1602. "z": 0
  1603. },
  1604. "_id": "6992JcMX9DmoG81VUztzfN"
  1605. },
  1606. {
  1607. "__type__": "cc.UITransform",
  1608. "_name": "",
  1609. "_objFlags": 0,
  1610. "__editorExtras__": {},
  1611. "node": {
  1612. "__id__": 40
  1613. },
  1614. "_enabled": true,
  1615. "__prefab": null,
  1616. "_contentSize": {
  1617. "__type__": "cc.Size",
  1618. "width": 107,
  1619. "height": 219
  1620. },
  1621. "_anchorPoint": {
  1622. "__type__": "cc.Vec2",
  1623. "x": 0.4973831889785339,
  1624. "y": 0.40534245042496075
  1625. },
  1626. "_id": "91sy/TssxOf55AZurw2Kvo"
  1627. },
  1628. {
  1629. "__type__": "sp.Skeleton",
  1630. "_name": "",
  1631. "_objFlags": 0,
  1632. "__editorExtras__": {},
  1633. "node": {
  1634. "__id__": 40
  1635. },
  1636. "_enabled": true,
  1637. "__prefab": null,
  1638. "_customMaterial": null,
  1639. "_srcBlendFactor": 2,
  1640. "_dstBlendFactor": 4,
  1641. "_color": {
  1642. "__type__": "cc.Color",
  1643. "r": 184,
  1644. "g": 0,
  1645. "b": 255,
  1646. "a": 255
  1647. },
  1648. "_skeletonData": {
  1649. "__uuid__": "64ec6560-1352-4be0-8aa3-858fac6fe1e1",
  1650. "__expectedType__": "sp.SkeletonData"
  1651. },
  1652. "defaultSkin": "water03",
  1653. "defaultAnimation": "",
  1654. "_premultipliedAlpha": false,
  1655. "_timeScale": 1,
  1656. "_preCacheMode": 0,
  1657. "_cacheMode": 0,
  1658. "_sockets": [],
  1659. "_useTint": false,
  1660. "_debugMesh": false,
  1661. "_debugBones": false,
  1662. "_debugSlots": false,
  1663. "_enableBatch": false,
  1664. "loop": true,
  1665. "_id": "c6ZWOy9RJKbrrCsQz7ddxQ"
  1666. },
  1667. {
  1668. "__type__": "cc.Node",
  1669. "_name": "Node-002",
  1670. "_objFlags": 0,
  1671. "__editorExtras__": {},
  1672. "_parent": {
  1673. "__id__": 39
  1674. },
  1675. "_children": [],
  1676. "_active": true,
  1677. "_components": [
  1678. {
  1679. "__id__": 44
  1680. },
  1681. {
  1682. "__id__": 45
  1683. }
  1684. ],
  1685. "_prefab": null,
  1686. "_lpos": {
  1687. "__type__": "cc.Vec3",
  1688. "x": -52,
  1689. "y": -98,
  1690. "z": 0
  1691. },
  1692. "_lrot": {
  1693. "__type__": "cc.Quat",
  1694. "x": 0,
  1695. "y": 0,
  1696. "z": 0,
  1697. "w": 1
  1698. },
  1699. "_lscale": {
  1700. "__type__": "cc.Vec3",
  1701. "x": 1,
  1702. "y": 1,
  1703. "z": 1
  1704. },
  1705. "_mobility": 0,
  1706. "_layer": 33554432,
  1707. "_euler": {
  1708. "__type__": "cc.Vec3",
  1709. "x": 0,
  1710. "y": 0,
  1711. "z": 0
  1712. },
  1713. "_id": "42wFsFGoNEr57xHHbyo2S3"
  1714. },
  1715. {
  1716. "__type__": "cc.UITransform",
  1717. "_name": "",
  1718. "_objFlags": 0,
  1719. "__editorExtras__": {},
  1720. "node": {
  1721. "__id__": 43
  1722. },
  1723. "_enabled": true,
  1724. "__prefab": null,
  1725. "_contentSize": {
  1726. "__type__": "cc.Size",
  1727. "width": 107,
  1728. "height": 219
  1729. },
  1730. "_anchorPoint": {
  1731. "__type__": "cc.Vec2",
  1732. "x": 0.4973831889785339,
  1733. "y": 0.40534245042496075
  1734. },
  1735. "_id": "4cIsT0Y75EbI6ffYIj7YaA"
  1736. },
  1737. {
  1738. "__type__": "sp.Skeleton",
  1739. "_name": "",
  1740. "_objFlags": 0,
  1741. "__editorExtras__": {},
  1742. "node": {
  1743. "__id__": 43
  1744. },
  1745. "_enabled": true,
  1746. "__prefab": null,
  1747. "_customMaterial": null,
  1748. "_srcBlendFactor": 2,
  1749. "_dstBlendFactor": 4,
  1750. "_color": {
  1751. "__type__": "cc.Color",
  1752. "r": 0,
  1753. "g": 194,
  1754. "b": 255,
  1755. "a": 255
  1756. },
  1757. "_skeletonData": {
  1758. "__uuid__": "64ec6560-1352-4be0-8aa3-858fac6fe1e1",
  1759. "__expectedType__": "sp.SkeletonData"
  1760. },
  1761. "defaultSkin": "water02",
  1762. "defaultAnimation": "",
  1763. "_premultipliedAlpha": false,
  1764. "_timeScale": 1,
  1765. "_preCacheMode": 0,
  1766. "_cacheMode": 0,
  1767. "_sockets": [],
  1768. "_useTint": false,
  1769. "_debugMesh": false,
  1770. "_debugBones": false,
  1771. "_debugSlots": false,
  1772. "_enableBatch": false,
  1773. "loop": true,
  1774. "_id": "1eRnK1kWZMbLmg5ntqC+q/"
  1775. },
  1776. {
  1777. "__type__": "cc.Node",
  1778. "_name": "Node-001",
  1779. "_objFlags": 0,
  1780. "__editorExtras__": {},
  1781. "_parent": {
  1782. "__id__": 39
  1783. },
  1784. "_children": [],
  1785. "_active": true,
  1786. "_components": [
  1787. {
  1788. "__id__": 47
  1789. },
  1790. {
  1791. "__id__": 48
  1792. }
  1793. ],
  1794. "_prefab": null,
  1795. "_lpos": {
  1796. "__type__": "cc.Vec3",
  1797. "x": -52,
  1798. "y": -98,
  1799. "z": 0
  1800. },
  1801. "_lrot": {
  1802. "__type__": "cc.Quat",
  1803. "x": 0,
  1804. "y": 0,
  1805. "z": 0,
  1806. "w": 1
  1807. },
  1808. "_lscale": {
  1809. "__type__": "cc.Vec3",
  1810. "x": 1,
  1811. "y": 1,
  1812. "z": 1
  1813. },
  1814. "_mobility": 0,
  1815. "_layer": 33554432,
  1816. "_euler": {
  1817. "__type__": "cc.Vec3",
  1818. "x": 0,
  1819. "y": 0,
  1820. "z": 0
  1821. },
  1822. "_id": "8fMI9QKB9MAZXFQnk83iQi"
  1823. },
  1824. {
  1825. "__type__": "cc.UITransform",
  1826. "_name": "",
  1827. "_objFlags": 0,
  1828. "__editorExtras__": {},
  1829. "node": {
  1830. "__id__": 46
  1831. },
  1832. "_enabled": true,
  1833. "__prefab": null,
  1834. "_contentSize": {
  1835. "__type__": "cc.Size",
  1836. "width": 107,
  1837. "height": 219
  1838. },
  1839. "_anchorPoint": {
  1840. "__type__": "cc.Vec2",
  1841. "x": 0.4973831889785339,
  1842. "y": 0.40534245042496075
  1843. },
  1844. "_id": "d8kGv4iNNAC7aYUrP+l3+l"
  1845. },
  1846. {
  1847. "__type__": "sp.Skeleton",
  1848. "_name": "",
  1849. "_objFlags": 0,
  1850. "__editorExtras__": {},
  1851. "node": {
  1852. "__id__": 46
  1853. },
  1854. "_enabled": true,
  1855. "__prefab": null,
  1856. "_customMaterial": null,
  1857. "_srcBlendFactor": 2,
  1858. "_dstBlendFactor": 4,
  1859. "_color": {
  1860. "__type__": "cc.Color",
  1861. "r": 0,
  1862. "g": 255,
  1863. "b": 20,
  1864. "a": 255
  1865. },
  1866. "_skeletonData": {
  1867. "__uuid__": "64ec6560-1352-4be0-8aa3-858fac6fe1e1",
  1868. "__expectedType__": "sp.SkeletonData"
  1869. },
  1870. "defaultSkin": "water01",
  1871. "defaultAnimation": "",
  1872. "_premultipliedAlpha": false,
  1873. "_timeScale": 1,
  1874. "_preCacheMode": 0,
  1875. "_cacheMode": 0,
  1876. "_sockets": [],
  1877. "_useTint": false,
  1878. "_debugMesh": false,
  1879. "_debugBones": false,
  1880. "_debugSlots": false,
  1881. "_enableBatch": false,
  1882. "loop": true,
  1883. "_id": "27q+6E+JJNHYEw91hs82Mu"
  1884. },
  1885. {
  1886. "__type__": "cc.Node",
  1887. "_name": "Node",
  1888. "_objFlags": 0,
  1889. "__editorExtras__": {},
  1890. "_parent": {
  1891. "__id__": 39
  1892. },
  1893. "_children": [],
  1894. "_active": true,
  1895. "_components": [
  1896. {
  1897. "__id__": 50
  1898. },
  1899. {
  1900. "__id__": 51
  1901. }
  1902. ],
  1903. "_prefab": null,
  1904. "_lpos": {
  1905. "__type__": "cc.Vec3",
  1906. "x": -52,
  1907. "y": -98,
  1908. "z": 0
  1909. },
  1910. "_lrot": {
  1911. "__type__": "cc.Quat",
  1912. "x": 0,
  1913. "y": 0,
  1914. "z": 0,
  1915. "w": 1
  1916. },
  1917. "_lscale": {
  1918. "__type__": "cc.Vec3",
  1919. "x": 1,
  1920. "y": 1,
  1921. "z": 1
  1922. },
  1923. "_mobility": 0,
  1924. "_layer": 33554432,
  1925. "_euler": {
  1926. "__type__": "cc.Vec3",
  1927. "x": 0,
  1928. "y": 0,
  1929. "z": 0
  1930. },
  1931. "_id": "ef+4Y69f1GmZ098crevXD4"
  1932. },
  1933. {
  1934. "__type__": "cc.UITransform",
  1935. "_name": "",
  1936. "_objFlags": 0,
  1937. "__editorExtras__": {},
  1938. "node": {
  1939. "__id__": 49
  1940. },
  1941. "_enabled": true,
  1942. "__prefab": null,
  1943. "_contentSize": {
  1944. "__type__": "cc.Size",
  1945. "width": 107,
  1946. "height": 219
  1947. },
  1948. "_anchorPoint": {
  1949. "__type__": "cc.Vec2",
  1950. "x": 0.4973831889785339,
  1951. "y": 0.40534245042496075
  1952. },
  1953. "_id": "36Dddni6dHdpf5kNmn0zvD"
  1954. },
  1955. {
  1956. "__type__": "sp.Skeleton",
  1957. "_name": "",
  1958. "_objFlags": 0,
  1959. "__editorExtras__": {},
  1960. "node": {
  1961. "__id__": 49
  1962. },
  1963. "_enabled": true,
  1964. "__prefab": null,
  1965. "_customMaterial": null,
  1966. "_srcBlendFactor": 2,
  1967. "_dstBlendFactor": 4,
  1968. "_color": {
  1969. "__type__": "cc.Color",
  1970. "r": 255,
  1971. "g": 255,
  1972. "b": 255,
  1973. "a": 255
  1974. },
  1975. "_skeletonData": {
  1976. "__uuid__": "64ec6560-1352-4be0-8aa3-858fac6fe1e1",
  1977. "__expectedType__": "sp.SkeletonData"
  1978. },
  1979. "defaultSkin": "cup",
  1980. "defaultAnimation": "",
  1981. "_premultipliedAlpha": false,
  1982. "_timeScale": 1,
  1983. "_preCacheMode": 0,
  1984. "_cacheMode": 0,
  1985. "_sockets": [],
  1986. "_useTint": false,
  1987. "_debugMesh": false,
  1988. "_debugBones": false,
  1989. "_debugSlots": false,
  1990. "_enableBatch": false,
  1991. "loop": true,
  1992. "_id": "1aQa+tYp9Mb7cQqnq8znqd"
  1993. },
  1994. {
  1995. "__type__": "cc.UITransform",
  1996. "_name": "",
  1997. "_objFlags": 0,
  1998. "__editorExtras__": {},
  1999. "node": {
  2000. "__id__": 39
  2001. },
  2002. "_enabled": true,
  2003. "__prefab": null,
  2004. "_contentSize": {
  2005. "__type__": "cc.Size",
  2006. "width": 104.8,
  2007. "height": 249.4
  2008. },
  2009. "_anchorPoint": {
  2010. "__type__": "cc.Vec2",
  2011. "x": 1,
  2012. "y": 0.9
  2013. },
  2014. "_id": "55FdEAMjRG1bfwkPGgSrVy"
  2015. },
  2016. {
  2017. "__type__": "cc.Node",
  2018. "_name": "3Black",
  2019. "_objFlags": 0,
  2020. "__editorExtras__": {},
  2021. "_parent": {
  2022. "__id__": 2
  2023. },
  2024. "_children": [
  2025. {
  2026. "__id__": 54
  2027. },
  2028. {
  2029. "__id__": 57
  2030. },
  2031. {
  2032. "__id__": 60
  2033. },
  2034. {
  2035. "__id__": 63
  2036. }
  2037. ],
  2038. "_active": true,
  2039. "_components": [
  2040. {
  2041. "__id__": 66
  2042. }
  2043. ],
  2044. "_prefab": null,
  2045. "_lpos": {
  2046. "__type__": "cc.Vec3",
  2047. "x": -52,
  2048. "y": -128.49,
  2049. "z": 0
  2050. },
  2051. "_lrot": {
  2052. "__type__": "cc.Quat",
  2053. "x": 0,
  2054. "y": 0,
  2055. "z": 0,
  2056. "w": 1
  2057. },
  2058. "_lscale": {
  2059. "__type__": "cc.Vec3",
  2060. "x": 1,
  2061. "y": 1,
  2062. "z": 1
  2063. },
  2064. "_mobility": 0,
  2065. "_layer": 33554432,
  2066. "_euler": {
  2067. "__type__": "cc.Vec3",
  2068. "x": 0,
  2069. "y": 0,
  2070. "z": 0
  2071. },
  2072. "_id": "65RMad39FMILu38dWg8D+L"
  2073. },
  2074. {
  2075. "__type__": "cc.Node",
  2076. "_name": "black01",
  2077. "_objFlags": 0,
  2078. "__editorExtras__": {},
  2079. "_parent": {
  2080. "__id__": 53
  2081. },
  2082. "_children": [],
  2083. "_active": true,
  2084. "_components": [
  2085. {
  2086. "__id__": 55
  2087. },
  2088. {
  2089. "__id__": 56
  2090. }
  2091. ],
  2092. "_prefab": null,
  2093. "_lpos": {
  2094. "__type__": "cc.Vec3",
  2095. "x": 0.803,
  2096. "y": 60.995,
  2097. "z": 0
  2098. },
  2099. "_lrot": {
  2100. "__type__": "cc.Quat",
  2101. "x": 0,
  2102. "y": 0,
  2103. "z": 0,
  2104. "w": 1
  2105. },
  2106. "_lscale": {
  2107. "__type__": "cc.Vec3",
  2108. "x": 1,
  2109. "y": 1,
  2110. "z": 1
  2111. },
  2112. "_mobility": 0,
  2113. "_layer": 33554432,
  2114. "_euler": {
  2115. "__type__": "cc.Vec3",
  2116. "x": 0,
  2117. "y": 0,
  2118. "z": 0
  2119. },
  2120. "_id": "bcz/EWWFpP84eJOgiagP3U"
  2121. },
  2122. {
  2123. "__type__": "cc.UITransform",
  2124. "_name": "",
  2125. "_objFlags": 0,
  2126. "__editorExtras__": {},
  2127. "node": {
  2128. "__id__": 54
  2129. },
  2130. "_enabled": true,
  2131. "__prefab": null,
  2132. "_contentSize": {
  2133. "__type__": "cc.Size",
  2134. "width": 100,
  2135. "height": 79
  2136. },
  2137. "_anchorPoint": {
  2138. "__type__": "cc.Vec2",
  2139. "x": 0.5,
  2140. "y": 0.5
  2141. },
  2142. "_id": "03LlppVkRKcadVedkfI/Gl"
  2143. },
  2144. {
  2145. "__type__": "cc.Sprite",
  2146. "_name": "",
  2147. "_objFlags": 0,
  2148. "__editorExtras__": {},
  2149. "node": {
  2150. "__id__": 54
  2151. },
  2152. "_enabled": true,
  2153. "__prefab": null,
  2154. "_customMaterial": null,
  2155. "_srcBlendFactor": 2,
  2156. "_dstBlendFactor": 4,
  2157. "_color": {
  2158. "__type__": "cc.Color",
  2159. "r": 255,
  2160. "g": 255,
  2161. "b": 255,
  2162. "a": 255
  2163. },
  2164. "_spriteFrame": {
  2165. "__uuid__": "5e9470d5-7d78-4f18-afcf-02fd58142b6f@f9941",
  2166. "__expectedType__": "cc.SpriteFrame"
  2167. },
  2168. "_type": 0,
  2169. "_fillType": 0,
  2170. "_sizeMode": 1,
  2171. "_fillCenter": {
  2172. "__type__": "cc.Vec2",
  2173. "x": 0,
  2174. "y": 0
  2175. },
  2176. "_fillStart": 0,
  2177. "_fillRange": 0,
  2178. "_isTrimmedMode": false,
  2179. "_useGrayscale": false,
  2180. "_atlas": null,
  2181. "_id": "c6m9cBeItEPq0heT2Pfeyi"
  2182. },
  2183. {
  2184. "__type__": "cc.Node",
  2185. "_name": "black02",
  2186. "_objFlags": 0,
  2187. "__editorExtras__": {},
  2188. "_parent": {
  2189. "__id__": 53
  2190. },
  2191. "_children": [],
  2192. "_active": true,
  2193. "_components": [
  2194. {
  2195. "__id__": 58
  2196. },
  2197. {
  2198. "__id__": 59
  2199. }
  2200. ],
  2201. "_prefab": null,
  2202. "_lpos": {
  2203. "__type__": "cc.Vec3",
  2204. "x": 0.803,
  2205. "y": 11.139,
  2206. "z": 0
  2207. },
  2208. "_lrot": {
  2209. "__type__": "cc.Quat",
  2210. "x": 0,
  2211. "y": 0,
  2212. "z": 0,
  2213. "w": 1
  2214. },
  2215. "_lscale": {
  2216. "__type__": "cc.Vec3",
  2217. "x": 1.048,
  2218. "y": 1,
  2219. "z": 1
  2220. },
  2221. "_mobility": 0,
  2222. "_layer": 33554432,
  2223. "_euler": {
  2224. "__type__": "cc.Vec3",
  2225. "x": 0,
  2226. "y": 0,
  2227. "z": 0
  2228. },
  2229. "_id": "fe0Lx3m0lEkaQwertCc/uK"
  2230. },
  2231. {
  2232. "__type__": "cc.UITransform",
  2233. "_name": "",
  2234. "_objFlags": 0,
  2235. "__editorExtras__": {},
  2236. "node": {
  2237. "__id__": 57
  2238. },
  2239. "_enabled": true,
  2240. "__prefab": null,
  2241. "_contentSize": {
  2242. "__type__": "cc.Size",
  2243. "width": 96,
  2244. "height": 60
  2245. },
  2246. "_anchorPoint": {
  2247. "__type__": "cc.Vec2",
  2248. "x": 0.5,
  2249. "y": 0.5
  2250. },
  2251. "_id": "bfvUD5vftJvqYZVqjxNb4s"
  2252. },
  2253. {
  2254. "__type__": "cc.Sprite",
  2255. "_name": "",
  2256. "_objFlags": 0,
  2257. "__editorExtras__": {},
  2258. "node": {
  2259. "__id__": 57
  2260. },
  2261. "_enabled": true,
  2262. "__prefab": null,
  2263. "_customMaterial": null,
  2264. "_srcBlendFactor": 2,
  2265. "_dstBlendFactor": 4,
  2266. "_color": {
  2267. "__type__": "cc.Color",
  2268. "r": 255,
  2269. "g": 255,
  2270. "b": 255,
  2271. "a": 255
  2272. },
  2273. "_spriteFrame": {
  2274. "__uuid__": "fc3422c3-4bbc-4687-9e39-16d19f6cde5f@f9941",
  2275. "__expectedType__": "cc.SpriteFrame"
  2276. },
  2277. "_type": 0,
  2278. "_fillType": 0,
  2279. "_sizeMode": 1,
  2280. "_fillCenter": {
  2281. "__type__": "cc.Vec2",
  2282. "x": 0,
  2283. "y": 0
  2284. },
  2285. "_fillStart": 0,
  2286. "_fillRange": 0,
  2287. "_isTrimmedMode": false,
  2288. "_useGrayscale": false,
  2289. "_atlas": null,
  2290. "_id": "3aMKW0FX9Bf75nnCigDdZQ"
  2291. },
  2292. {
  2293. "__type__": "cc.Node",
  2294. "_name": "black03",
  2295. "_objFlags": 0,
  2296. "__editorExtras__": {},
  2297. "_parent": {
  2298. "__id__": 53
  2299. },
  2300. "_children": [],
  2301. "_active": true,
  2302. "_components": [
  2303. {
  2304. "__id__": 61
  2305. },
  2306. {
  2307. "__id__": 62
  2308. }
  2309. ],
  2310. "_prefab": null,
  2311. "_lpos": {
  2312. "__type__": "cc.Vec3",
  2313. "x": 0.291,
  2314. "y": -26.75,
  2315. "z": 0
  2316. },
  2317. "_lrot": {
  2318. "__type__": "cc.Quat",
  2319. "x": 0,
  2320. "y": 0,
  2321. "z": 0,
  2322. "w": 1
  2323. },
  2324. "_lscale": {
  2325. "__type__": "cc.Vec3",
  2326. "x": 1.024,
  2327. "y": 1.072,
  2328. "z": 1
  2329. },
  2330. "_mobility": 0,
  2331. "_layer": 33554432,
  2332. "_euler": {
  2333. "__type__": "cc.Vec3",
  2334. "x": 0,
  2335. "y": 0,
  2336. "z": 0
  2337. },
  2338. "_id": "6aKM5UwItH3YhIbsxt+h6h"
  2339. },
  2340. {
  2341. "__type__": "cc.UITransform",
  2342. "_name": "",
  2343. "_objFlags": 0,
  2344. "__editorExtras__": {},
  2345. "node": {
  2346. "__id__": 60
  2347. },
  2348. "_enabled": true,
  2349. "__prefab": null,
  2350. "_contentSize": {
  2351. "__type__": "cc.Size",
  2352. "width": 83,
  2353. "height": 56
  2354. },
  2355. "_anchorPoint": {
  2356. "__type__": "cc.Vec2",
  2357. "x": 0.5,
  2358. "y": 0.5
  2359. },
  2360. "_id": "66lCNj2sRPUY+gSKiAaVDl"
  2361. },
  2362. {
  2363. "__type__": "cc.Sprite",
  2364. "_name": "",
  2365. "_objFlags": 0,
  2366. "__editorExtras__": {},
  2367. "node": {
  2368. "__id__": 60
  2369. },
  2370. "_enabled": true,
  2371. "__prefab": null,
  2372. "_customMaterial": null,
  2373. "_srcBlendFactor": 2,
  2374. "_dstBlendFactor": 4,
  2375. "_color": {
  2376. "__type__": "cc.Color",
  2377. "r": 255,
  2378. "g": 255,
  2379. "b": 255,
  2380. "a": 255
  2381. },
  2382. "_spriteFrame": {
  2383. "__uuid__": "4fe8a5d1-95c1-4dba-b16a-4582782c2908@f9941",
  2384. "__expectedType__": "cc.SpriteFrame"
  2385. },
  2386. "_type": 0,
  2387. "_fillType": 0,
  2388. "_sizeMode": 1,
  2389. "_fillCenter": {
  2390. "__type__": "cc.Vec2",
  2391. "x": 0,
  2392. "y": 0
  2393. },
  2394. "_fillStart": 0,
  2395. "_fillRange": 0,
  2396. "_isTrimmedMode": false,
  2397. "_useGrayscale": false,
  2398. "_atlas": null,
  2399. "_id": "4f5S3dt1JL1Y1wDqdNfAuc"
  2400. },
  2401. {
  2402. "__type__": "cc.Node",
  2403. "_name": "Node",
  2404. "_objFlags": 0,
  2405. "__editorExtras__": {},
  2406. "_parent": {
  2407. "__id__": 53
  2408. },
  2409. "_children": [],
  2410. "_active": true,
  2411. "_components": [
  2412. {
  2413. "__id__": 64
  2414. },
  2415. {
  2416. "__id__": 65
  2417. }
  2418. ],
  2419. "_prefab": null,
  2420. "_lpos": {
  2421. "__type__": "cc.Vec3",
  2422. "x": 0,
  2423. "y": 0,
  2424. "z": 0
  2425. },
  2426. "_lrot": {
  2427. "__type__": "cc.Quat",
  2428. "x": 0,
  2429. "y": 0,
  2430. "z": 0,
  2431. "w": 1
  2432. },
  2433. "_lscale": {
  2434. "__type__": "cc.Vec3",
  2435. "x": 1,
  2436. "y": 1,
  2437. "z": 1
  2438. },
  2439. "_mobility": 0,
  2440. "_layer": 33554432,
  2441. "_euler": {
  2442. "__type__": "cc.Vec3",
  2443. "x": 0,
  2444. "y": 0,
  2445. "z": 0
  2446. },
  2447. "_id": "93noLCgjRF7JGhjJvCqAc/"
  2448. },
  2449. {
  2450. "__type__": "cc.UITransform",
  2451. "_name": "",
  2452. "_objFlags": 0,
  2453. "__editorExtras__": {},
  2454. "node": {
  2455. "__id__": 63
  2456. },
  2457. "_enabled": true,
  2458. "__prefab": null,
  2459. "_contentSize": {
  2460. "__type__": "cc.Size",
  2461. "width": 107,
  2462. "height": 219
  2463. },
  2464. "_anchorPoint": {
  2465. "__type__": "cc.Vec2",
  2466. "x": 0.4973831889785339,
  2467. "y": 0.40534245042496075
  2468. },
  2469. "_id": "dfMOrIYL9OkLdYnyV5aHz7"
  2470. },
  2471. {
  2472. "__type__": "sp.Skeleton",
  2473. "_name": "",
  2474. "_objFlags": 0,
  2475. "__editorExtras__": {},
  2476. "node": {
  2477. "__id__": 63
  2478. },
  2479. "_enabled": true,
  2480. "__prefab": null,
  2481. "_customMaterial": null,
  2482. "_srcBlendFactor": 2,
  2483. "_dstBlendFactor": 4,
  2484. "_color": {
  2485. "__type__": "cc.Color",
  2486. "r": 255,
  2487. "g": 255,
  2488. "b": 255,
  2489. "a": 255
  2490. },
  2491. "_skeletonData": {
  2492. "__uuid__": "64ec6560-1352-4be0-8aa3-858fac6fe1e1",
  2493. "__expectedType__": "sp.SkeletonData"
  2494. },
  2495. "defaultSkin": "cup",
  2496. "defaultAnimation": "<None>",
  2497. "_premultipliedAlpha": false,
  2498. "_timeScale": 1,
  2499. "_preCacheMode": 0,
  2500. "_cacheMode": 0,
  2501. "_sockets": [],
  2502. "_useTint": false,
  2503. "_debugMesh": false,
  2504. "_debugBones": false,
  2505. "_debugSlots": false,
  2506. "_enableBatch": false,
  2507. "loop": true,
  2508. "_id": "d9GOdn381J1bkReoFRzoWT"
  2509. },
  2510. {
  2511. "__type__": "cc.UITransform",
  2512. "_name": "",
  2513. "_objFlags": 0,
  2514. "__editorExtras__": {},
  2515. "node": {
  2516. "__id__": 53
  2517. },
  2518. "_enabled": true,
  2519. "__prefab": null,
  2520. "_contentSize": {
  2521. "__type__": "cc.Size",
  2522. "width": 100,
  2523. "height": 100
  2524. },
  2525. "_anchorPoint": {
  2526. "__type__": "cc.Vec2",
  2527. "x": 0.5,
  2528. "y": 0.5
  2529. },
  2530. "_id": "7ffIgO/ptEXZuvOLQzX2dD"
  2531. },
  2532. {
  2533. "__type__": "cc.Node",
  2534. "_name": "2water",
  2535. "_objFlags": 0,
  2536. "__editorExtras__": {},
  2537. "_parent": {
  2538. "__id__": 2
  2539. },
  2540. "_children": [
  2541. {
  2542. "__id__": 68
  2543. },
  2544. {
  2545. "__id__": 71
  2546. },
  2547. {
  2548. "__id__": 74
  2549. }
  2550. ],
  2551. "_active": true,
  2552. "_components": [
  2553. {
  2554. "__id__": 77
  2555. }
  2556. ],
  2557. "_prefab": null,
  2558. "_lpos": {
  2559. "__type__": "cc.Vec3",
  2560. "x": 150.858,
  2561. "y": -73.523,
  2562. "z": 0
  2563. },
  2564. "_lrot": {
  2565. "__type__": "cc.Quat",
  2566. "x": 0,
  2567. "y": 0,
  2568. "z": 0,
  2569. "w": 1
  2570. },
  2571. "_lscale": {
  2572. "__type__": "cc.Vec3",
  2573. "x": 1,
  2574. "y": 1,
  2575. "z": 1
  2576. },
  2577. "_mobility": 0,
  2578. "_layer": 33554432,
  2579. "_euler": {
  2580. "__type__": "cc.Vec3",
  2581. "x": 0,
  2582. "y": 0,
  2583. "z": 0
  2584. },
  2585. "_id": "6b/EBI49xNu4EvHKswISQH"
  2586. },
  2587. {
  2588. "__type__": "cc.Node",
  2589. "_name": "Node-002",
  2590. "_objFlags": 0,
  2591. "__editorExtras__": {},
  2592. "_parent": {
  2593. "__id__": 67
  2594. },
  2595. "_children": [],
  2596. "_active": true,
  2597. "_components": [
  2598. {
  2599. "__id__": 69
  2600. },
  2601. {
  2602. "__id__": 70
  2603. }
  2604. ],
  2605. "_prefab": null,
  2606. "_lpos": {
  2607. "__type__": "cc.Vec3",
  2608. "x": -52,
  2609. "y": -98,
  2610. "z": 0
  2611. },
  2612. "_lrot": {
  2613. "__type__": "cc.Quat",
  2614. "x": 0,
  2615. "y": 0,
  2616. "z": 0,
  2617. "w": 1
  2618. },
  2619. "_lscale": {
  2620. "__type__": "cc.Vec3",
  2621. "x": 1,
  2622. "y": 1,
  2623. "z": 1
  2624. },
  2625. "_mobility": 0,
  2626. "_layer": 33554432,
  2627. "_euler": {
  2628. "__type__": "cc.Vec3",
  2629. "x": 0,
  2630. "y": 0,
  2631. "z": 0
  2632. },
  2633. "_id": "0eEJ61+A5Ctqkt9CaZ10B/"
  2634. },
  2635. {
  2636. "__type__": "cc.UITransform",
  2637. "_name": "",
  2638. "_objFlags": 0,
  2639. "__editorExtras__": {},
  2640. "node": {
  2641. "__id__": 68
  2642. },
  2643. "_enabled": true,
  2644. "__prefab": null,
  2645. "_contentSize": {
  2646. "__type__": "cc.Size",
  2647. "width": 107,
  2648. "height": 178
  2649. },
  2650. "_anchorPoint": {
  2651. "__type__": "cc.Vec2",
  2652. "x": 0.4973831889785339,
  2653. "y": 0.2773033742154582
  2654. },
  2655. "_id": "f8qm0K5+xF5ZH8XwlTlbPD"
  2656. },
  2657. {
  2658. "__type__": "sp.Skeleton",
  2659. "_name": "",
  2660. "_objFlags": 0,
  2661. "__editorExtras__": {},
  2662. "node": {
  2663. "__id__": 68
  2664. },
  2665. "_enabled": true,
  2666. "__prefab": null,
  2667. "_customMaterial": null,
  2668. "_srcBlendFactor": 2,
  2669. "_dstBlendFactor": 4,
  2670. "_color": {
  2671. "__type__": "cc.Color",
  2672. "r": 0,
  2673. "g": 194,
  2674. "b": 255,
  2675. "a": 255
  2676. },
  2677. "_skeletonData": {
  2678. "__uuid__": "e6b4a09f-6608-4f68-ad04-2ee8d3fa6e99",
  2679. "__expectedType__": "sp.SkeletonData"
  2680. },
  2681. "defaultSkin": "water02",
  2682. "defaultAnimation": "",
  2683. "_premultipliedAlpha": false,
  2684. "_timeScale": 1,
  2685. "_preCacheMode": 0,
  2686. "_cacheMode": 0,
  2687. "_sockets": [],
  2688. "_useTint": false,
  2689. "_debugMesh": false,
  2690. "_debugBones": false,
  2691. "_debugSlots": false,
  2692. "_enableBatch": false,
  2693. "loop": true,
  2694. "_id": "00B+Q8/N5ID5Yed1ev2HLy"
  2695. },
  2696. {
  2697. "__type__": "cc.Node",
  2698. "_name": "Node-001",
  2699. "_objFlags": 0,
  2700. "__editorExtras__": {},
  2701. "_parent": {
  2702. "__id__": 67
  2703. },
  2704. "_children": [],
  2705. "_active": true,
  2706. "_components": [
  2707. {
  2708. "__id__": 72
  2709. },
  2710. {
  2711. "__id__": 73
  2712. }
  2713. ],
  2714. "_prefab": null,
  2715. "_lpos": {
  2716. "__type__": "cc.Vec3",
  2717. "x": -52,
  2718. "y": -98,
  2719. "z": 0
  2720. },
  2721. "_lrot": {
  2722. "__type__": "cc.Quat",
  2723. "x": 0,
  2724. "y": 0,
  2725. "z": 0,
  2726. "w": 1
  2727. },
  2728. "_lscale": {
  2729. "__type__": "cc.Vec3",
  2730. "x": 1,
  2731. "y": 1,
  2732. "z": 1
  2733. },
  2734. "_mobility": 0,
  2735. "_layer": 33554432,
  2736. "_euler": {
  2737. "__type__": "cc.Vec3",
  2738. "x": 0,
  2739. "y": 0,
  2740. "z": 0
  2741. },
  2742. "_id": "672e5803JCQrgpdCT0UeFF"
  2743. },
  2744. {
  2745. "__type__": "cc.UITransform",
  2746. "_name": "",
  2747. "_objFlags": 0,
  2748. "__editorExtras__": {},
  2749. "node": {
  2750. "__id__": 71
  2751. },
  2752. "_enabled": true,
  2753. "__prefab": null,
  2754. "_contentSize": {
  2755. "__type__": "cc.Size",
  2756. "width": 107,
  2757. "height": 178
  2758. },
  2759. "_anchorPoint": {
  2760. "__type__": "cc.Vec2",
  2761. "x": 0.4973831889785339,
  2762. "y": 0.2773033742154582
  2763. },
  2764. "_id": "f5lfgzhmdNQaKfxqE3QFjd"
  2765. },
  2766. {
  2767. "__type__": "sp.Skeleton",
  2768. "_name": "",
  2769. "_objFlags": 0,
  2770. "__editorExtras__": {},
  2771. "node": {
  2772. "__id__": 71
  2773. },
  2774. "_enabled": true,
  2775. "__prefab": null,
  2776. "_customMaterial": null,
  2777. "_srcBlendFactor": 2,
  2778. "_dstBlendFactor": 4,
  2779. "_color": {
  2780. "__type__": "cc.Color",
  2781. "r": 0,
  2782. "g": 255,
  2783. "b": 20,
  2784. "a": 255
  2785. },
  2786. "_skeletonData": {
  2787. "__uuid__": "e6b4a09f-6608-4f68-ad04-2ee8d3fa6e99",
  2788. "__expectedType__": "sp.SkeletonData"
  2789. },
  2790. "defaultSkin": "water01",
  2791. "defaultAnimation": "",
  2792. "_premultipliedAlpha": false,
  2793. "_timeScale": 1,
  2794. "_preCacheMode": 0,
  2795. "_cacheMode": 0,
  2796. "_sockets": [],
  2797. "_useTint": false,
  2798. "_debugMesh": false,
  2799. "_debugBones": false,
  2800. "_debugSlots": false,
  2801. "_enableBatch": false,
  2802. "loop": true,
  2803. "_id": "7daUbLw+lLWp4jAWqdDWJd"
  2804. },
  2805. {
  2806. "__type__": "cc.Node",
  2807. "_name": "Node",
  2808. "_objFlags": 0,
  2809. "__editorExtras__": {},
  2810. "_parent": {
  2811. "__id__": 67
  2812. },
  2813. "_children": [],
  2814. "_active": true,
  2815. "_components": [
  2816. {
  2817. "__id__": 75
  2818. },
  2819. {
  2820. "__id__": 76
  2821. }
  2822. ],
  2823. "_prefab": null,
  2824. "_lpos": {
  2825. "__type__": "cc.Vec3",
  2826. "x": -52,
  2827. "y": -98,
  2828. "z": 0
  2829. },
  2830. "_lrot": {
  2831. "__type__": "cc.Quat",
  2832. "x": 0,
  2833. "y": 0,
  2834. "z": 0,
  2835. "w": 1
  2836. },
  2837. "_lscale": {
  2838. "__type__": "cc.Vec3",
  2839. "x": 1,
  2840. "y": 1,
  2841. "z": 1
  2842. },
  2843. "_mobility": 0,
  2844. "_layer": 33554432,
  2845. "_euler": {
  2846. "__type__": "cc.Vec3",
  2847. "x": 0,
  2848. "y": 0,
  2849. "z": 0
  2850. },
  2851. "_id": "f2bJdA30tI/qiqWo55LeQm"
  2852. },
  2853. {
  2854. "__type__": "cc.UITransform",
  2855. "_name": "",
  2856. "_objFlags": 0,
  2857. "__editorExtras__": {},
  2858. "node": {
  2859. "__id__": 74
  2860. },
  2861. "_enabled": true,
  2862. "__prefab": null,
  2863. "_contentSize": {
  2864. "__type__": "cc.Size",
  2865. "width": 107,
  2866. "height": 178
  2867. },
  2868. "_anchorPoint": {
  2869. "__type__": "cc.Vec2",
  2870. "x": 0.4973831889785339,
  2871. "y": 0.2773033742154582
  2872. },
  2873. "_id": "07NSvJsQ9O7LaIUBMQRPa8"
  2874. },
  2875. {
  2876. "__type__": "sp.Skeleton",
  2877. "_name": "",
  2878. "_objFlags": 0,
  2879. "__editorExtras__": {},
  2880. "node": {
  2881. "__id__": 74
  2882. },
  2883. "_enabled": true,
  2884. "__prefab": null,
  2885. "_customMaterial": null,
  2886. "_srcBlendFactor": 2,
  2887. "_dstBlendFactor": 4,
  2888. "_color": {
  2889. "__type__": "cc.Color",
  2890. "r": 255,
  2891. "g": 255,
  2892. "b": 255,
  2893. "a": 255
  2894. },
  2895. "_skeletonData": {
  2896. "__uuid__": "e6b4a09f-6608-4f68-ad04-2ee8d3fa6e99",
  2897. "__expectedType__": "sp.SkeletonData"
  2898. },
  2899. "defaultSkin": "cup",
  2900. "defaultAnimation": "",
  2901. "_premultipliedAlpha": false,
  2902. "_timeScale": 1,
  2903. "_preCacheMode": 0,
  2904. "_cacheMode": 0,
  2905. "_sockets": [],
  2906. "_useTint": false,
  2907. "_debugMesh": false,
  2908. "_debugBones": false,
  2909. "_debugSlots": false,
  2910. "_enableBatch": false,
  2911. "loop": true,
  2912. "_id": "0b4RCajchODpWc5Qy8D04+"
  2913. },
  2914. {
  2915. "__type__": "cc.UITransform",
  2916. "_name": "",
  2917. "_objFlags": 0,
  2918. "__editorExtras__": {},
  2919. "node": {
  2920. "__id__": 67
  2921. },
  2922. "_enabled": true,
  2923. "__prefab": null,
  2924. "_contentSize": {
  2925. "__type__": "cc.Size",
  2926. "width": 104.8,
  2927. "height": 249.4
  2928. },
  2929. "_anchorPoint": {
  2930. "__type__": "cc.Vec2",
  2931. "x": 1,
  2932. "y": 0.9
  2933. },
  2934. "_id": "bf0Wjz4oJHvKbfw53dXiqa"
  2935. },
  2936. {
  2937. "__type__": "cc.Node",
  2938. "_name": "2Black",
  2939. "_objFlags": 0,
  2940. "__editorExtras__": {},
  2941. "_parent": {
  2942. "__id__": 2
  2943. },
  2944. "_children": [
  2945. {
  2946. "__id__": 79
  2947. },
  2948. {
  2949. "__id__": 82
  2950. },
  2951. {
  2952. "__id__": 85
  2953. }
  2954. ],
  2955. "_active": true,
  2956. "_components": [
  2957. {
  2958. "__id__": 88
  2959. }
  2960. ],
  2961. "_prefab": null,
  2962. "_lpos": {
  2963. "__type__": "cc.Vec3",
  2964. "x": 150.858,
  2965. "y": -73.523,
  2966. "z": 0
  2967. },
  2968. "_lrot": {
  2969. "__type__": "cc.Quat",
  2970. "x": 0,
  2971. "y": 0,
  2972. "z": 0,
  2973. "w": 1
  2974. },
  2975. "_lscale": {
  2976. "__type__": "cc.Vec3",
  2977. "x": 1,
  2978. "y": 1,
  2979. "z": 1
  2980. },
  2981. "_mobility": 0,
  2982. "_layer": 33554432,
  2983. "_euler": {
  2984. "__type__": "cc.Vec3",
  2985. "x": 0,
  2986. "y": 0,
  2987. "z": 0
  2988. },
  2989. "_id": "8dmSM6icBKh5lpE2wBWH59"
  2990. },
  2991. {
  2992. "__type__": "cc.Node",
  2993. "_name": "Black02",
  2994. "_objFlags": 0,
  2995. "__editorExtras__": {},
  2996. "_parent": {
  2997. "__id__": 78
  2998. },
  2999. "_children": [],
  3000. "_active": true,
  3001. "_components": [
  3002. {
  3003. "__id__": 80
  3004. },
  3005. {
  3006. "__id__": 81
  3007. }
  3008. ],
  3009. "_prefab": null,
  3010. "_lpos": {
  3011. "__type__": "cc.Vec3",
  3012. "x": -52.74,
  3013. "y": -84.085,
  3014. "z": 0
  3015. },
  3016. "_lrot": {
  3017. "__type__": "cc.Quat",
  3018. "x": 0,
  3019. "y": 0,
  3020. "z": 0,
  3021. "w": 1
  3022. },
  3023. "_lscale": {
  3024. "__type__": "cc.Vec3",
  3025. "x": 1,
  3026. "y": 1,
  3027. "z": 1
  3028. },
  3029. "_mobility": 0,
  3030. "_layer": 33554432,
  3031. "_euler": {
  3032. "__type__": "cc.Vec3",
  3033. "x": 0,
  3034. "y": 0,
  3035. "z": 0
  3036. },
  3037. "_id": "82NguhZTlI359SZUYmGSLR"
  3038. },
  3039. {
  3040. "__type__": "cc.UITransform",
  3041. "_name": "",
  3042. "_objFlags": 0,
  3043. "__editorExtras__": {},
  3044. "node": {
  3045. "__id__": 79
  3046. },
  3047. "_enabled": true,
  3048. "__prefab": null,
  3049. "_contentSize": {
  3050. "__type__": "cc.Size",
  3051. "width": 83,
  3052. "height": 56
  3053. },
  3054. "_anchorPoint": {
  3055. "__type__": "cc.Vec2",
  3056. "x": 0.5,
  3057. "y": 0.5
  3058. },
  3059. "_id": "e4VjvwYMtHdriOFpDIYQ8w"
  3060. },
  3061. {
  3062. "__type__": "cc.Sprite",
  3063. "_name": "",
  3064. "_objFlags": 0,
  3065. "__editorExtras__": {},
  3066. "node": {
  3067. "__id__": 79
  3068. },
  3069. "_enabled": true,
  3070. "__prefab": null,
  3071. "_customMaterial": null,
  3072. "_srcBlendFactor": 2,
  3073. "_dstBlendFactor": 4,
  3074. "_color": {
  3075. "__type__": "cc.Color",
  3076. "r": 255,
  3077. "g": 255,
  3078. "b": 255,
  3079. "a": 255
  3080. },
  3081. "_spriteFrame": {
  3082. "__uuid__": "24acb907-44c1-46b6-a8cd-d538b2d29dab@f9941",
  3083. "__expectedType__": "cc.SpriteFrame"
  3084. },
  3085. "_type": 0,
  3086. "_fillType": 0,
  3087. "_sizeMode": 1,
  3088. "_fillCenter": {
  3089. "__type__": "cc.Vec2",
  3090. "x": 0,
  3091. "y": 0
  3092. },
  3093. "_fillStart": 0,
  3094. "_fillRange": 0,
  3095. "_isTrimmedMode": true,
  3096. "_useGrayscale": false,
  3097. "_atlas": null,
  3098. "_id": "12iRirz8NPHpgpvgcka5Qg"
  3099. },
  3100. {
  3101. "__type__": "cc.Node",
  3102. "_name": "Black01",
  3103. "_objFlags": 0,
  3104. "__editorExtras__": {},
  3105. "_parent": {
  3106. "__id__": 78
  3107. },
  3108. "_children": [],
  3109. "_active": true,
  3110. "_components": [
  3111. {
  3112. "__id__": 83
  3113. },
  3114. {
  3115. "__id__": 84
  3116. }
  3117. ],
  3118. "_prefab": null,
  3119. "_lpos": {
  3120. "__type__": "cc.Vec3",
  3121. "x": -52.636,
  3122. "y": -34.97,
  3123. "z": 0
  3124. },
  3125. "_lrot": {
  3126. "__type__": "cc.Quat",
  3127. "x": 0,
  3128. "y": 0,
  3129. "z": 0,
  3130. "w": 1
  3131. },
  3132. "_lscale": {
  3133. "__type__": "cc.Vec3",
  3134. "x": 1,
  3135. "y": 1.012,
  3136. "z": 1
  3137. },
  3138. "_mobility": 0,
  3139. "_layer": 33554432,
  3140. "_euler": {
  3141. "__type__": "cc.Vec3",
  3142. "x": 0,
  3143. "y": 0,
  3144. "z": 0
  3145. },
  3146. "_id": "b1fpiohoBIbYCAMobYnG7n"
  3147. },
  3148. {
  3149. "__type__": "cc.UITransform",
  3150. "_name": "",
  3151. "_objFlags": 0,
  3152. "__editorExtras__": {},
  3153. "node": {
  3154. "__id__": 82
  3155. },
  3156. "_enabled": true,
  3157. "__prefab": null,
  3158. "_contentSize": {
  3159. "__type__": "cc.Size",
  3160. "width": 98,
  3161. "height": 83
  3162. },
  3163. "_anchorPoint": {
  3164. "__type__": "cc.Vec2",
  3165. "x": 0.5,
  3166. "y": 0.5
  3167. },
  3168. "_id": "22dEV/FI1NSoLYw87SdiZI"
  3169. },
  3170. {
  3171. "__type__": "cc.Sprite",
  3172. "_name": "",
  3173. "_objFlags": 0,
  3174. "__editorExtras__": {},
  3175. "node": {
  3176. "__id__": 82
  3177. },
  3178. "_enabled": true,
  3179. "__prefab": null,
  3180. "_customMaterial": null,
  3181. "_srcBlendFactor": 2,
  3182. "_dstBlendFactor": 4,
  3183. "_color": {
  3184. "__type__": "cc.Color",
  3185. "r": 255,
  3186. "g": 255,
  3187. "b": 255,
  3188. "a": 255
  3189. },
  3190. "_spriteFrame": {
  3191. "__uuid__": "46225dd1-74a4-4c8b-8529-0ab89eb97052@f9941",
  3192. "__expectedType__": "cc.SpriteFrame"
  3193. },
  3194. "_type": 0,
  3195. "_fillType": 0,
  3196. "_sizeMode": 1,
  3197. "_fillCenter": {
  3198. "__type__": "cc.Vec2",
  3199. "x": 0,
  3200. "y": 0
  3201. },
  3202. "_fillStart": 0,
  3203. "_fillRange": 0,
  3204. "_isTrimmedMode": true,
  3205. "_useGrayscale": false,
  3206. "_atlas": null,
  3207. "_id": "5fxbkGmGhLGqvzlpb8rhB9"
  3208. },
  3209. {
  3210. "__type__": "cc.Node",
  3211. "_name": "Node",
  3212. "_objFlags": 0,
  3213. "__editorExtras__": {},
  3214. "_parent": {
  3215. "__id__": 78
  3216. },
  3217. "_children": [],
  3218. "_active": true,
  3219. "_components": [
  3220. {
  3221. "__id__": 86
  3222. },
  3223. {
  3224. "__id__": 87
  3225. }
  3226. ],
  3227. "_prefab": null,
  3228. "_lpos": {
  3229. "__type__": "cc.Vec3",
  3230. "x": -52,
  3231. "y": -98,
  3232. "z": 0
  3233. },
  3234. "_lrot": {
  3235. "__type__": "cc.Quat",
  3236. "x": 0,
  3237. "y": 0,
  3238. "z": 0,
  3239. "w": 1
  3240. },
  3241. "_lscale": {
  3242. "__type__": "cc.Vec3",
  3243. "x": 1,
  3244. "y": 1,
  3245. "z": 1
  3246. },
  3247. "_mobility": 0,
  3248. "_layer": 33554432,
  3249. "_euler": {
  3250. "__type__": "cc.Vec3",
  3251. "x": 0,
  3252. "y": 0,
  3253. "z": 0
  3254. },
  3255. "_id": "88OqLOQSVN85NrHvk6SvSo"
  3256. },
  3257. {
  3258. "__type__": "cc.UITransform",
  3259. "_name": "",
  3260. "_objFlags": 0,
  3261. "__editorExtras__": {},
  3262. "node": {
  3263. "__id__": 85
  3264. },
  3265. "_enabled": true,
  3266. "__prefab": null,
  3267. "_contentSize": {
  3268. "__type__": "cc.Size",
  3269. "width": 107,
  3270. "height": 178
  3271. },
  3272. "_anchorPoint": {
  3273. "__type__": "cc.Vec2",
  3274. "x": 0.4973831889785339,
  3275. "y": 0.2773033742154582
  3276. },
  3277. "_id": "69ANqgQWxGCoLzZXFlp8ok"
  3278. },
  3279. {
  3280. "__type__": "sp.Skeleton",
  3281. "_name": "",
  3282. "_objFlags": 0,
  3283. "__editorExtras__": {},
  3284. "node": {
  3285. "__id__": 85
  3286. },
  3287. "_enabled": true,
  3288. "__prefab": null,
  3289. "_customMaterial": null,
  3290. "_srcBlendFactor": 2,
  3291. "_dstBlendFactor": 4,
  3292. "_color": {
  3293. "__type__": "cc.Color",
  3294. "r": 255,
  3295. "g": 255,
  3296. "b": 255,
  3297. "a": 255
  3298. },
  3299. "_skeletonData": {
  3300. "__uuid__": "e6b4a09f-6608-4f68-ad04-2ee8d3fa6e99",
  3301. "__expectedType__": "sp.SkeletonData"
  3302. },
  3303. "defaultSkin": "cup",
  3304. "defaultAnimation": "",
  3305. "_premultipliedAlpha": false,
  3306. "_timeScale": 1,
  3307. "_preCacheMode": 0,
  3308. "_cacheMode": 0,
  3309. "_sockets": [],
  3310. "_useTint": false,
  3311. "_debugMesh": false,
  3312. "_debugBones": false,
  3313. "_debugSlots": false,
  3314. "_enableBatch": false,
  3315. "loop": true,
  3316. "_id": "69m3Yefw9LcIAKVEiohK1P"
  3317. },
  3318. {
  3319. "__type__": "cc.UITransform",
  3320. "_name": "",
  3321. "_objFlags": 0,
  3322. "__editorExtras__": {},
  3323. "node": {
  3324. "__id__": 78
  3325. },
  3326. "_enabled": true,
  3327. "__prefab": null,
  3328. "_contentSize": {
  3329. "__type__": "cc.Size",
  3330. "width": 104.8,
  3331. "height": 249.4
  3332. },
  3333. "_anchorPoint": {
  3334. "__type__": "cc.Vec2",
  3335. "x": 1,
  3336. "y": 0.9
  3337. },
  3338. "_id": "3eXeF5MbhDi6f4WbB76P4W"
  3339. },
  3340. {
  3341. "__type__": "cc.Node",
  3342. "_name": "4Goblet",
  3343. "_objFlags": 0,
  3344. "__editorExtras__": {},
  3345. "_parent": {
  3346. "__id__": 2
  3347. },
  3348. "_children": [
  3349. {
  3350. "__id__": 90
  3351. },
  3352. {
  3353. "__id__": 93
  3354. },
  3355. {
  3356. "__id__": 96
  3357. },
  3358. {
  3359. "__id__": 99
  3360. },
  3361. {
  3362. "__id__": 102
  3363. },
  3364. {
  3365. "__id__": 105
  3366. },
  3367. {
  3368. "__id__": 108
  3369. }
  3370. ],
  3371. "_active": true,
  3372. "_components": [],
  3373. "_prefab": null,
  3374. "_lpos": {
  3375. "__type__": "cc.Vec3",
  3376. "x": -198.66,
  3377. "y": -404.904,
  3378. "z": 0
  3379. },
  3380. "_lrot": {
  3381. "__type__": "cc.Quat",
  3382. "x": 0,
  3383. "y": 0,
  3384. "z": 0,
  3385. "w": 1
  3386. },
  3387. "_lscale": {
  3388. "__type__": "cc.Vec3",
  3389. "x": 1,
  3390. "y": 1,
  3391. "z": 1
  3392. },
  3393. "_mobility": 0,
  3394. "_layer": 1073741824,
  3395. "_euler": {
  3396. "__type__": "cc.Vec3",
  3397. "x": 0,
  3398. "y": 0,
  3399. "z": 0
  3400. },
  3401. "_id": "6er9TmUlRPVJndgDhnHFuy"
  3402. },
  3403. {
  3404. "__type__": "cc.Node",
  3405. "_name": "water01",
  3406. "_objFlags": 0,
  3407. "__editorExtras__": {},
  3408. "_parent": {
  3409. "__id__": 89
  3410. },
  3411. "_children": [],
  3412. "_active": true,
  3413. "_components": [
  3414. {
  3415. "__id__": 91
  3416. },
  3417. {
  3418. "__id__": 92
  3419. }
  3420. ],
  3421. "_prefab": null,
  3422. "_lpos": {
  3423. "__type__": "cc.Vec3",
  3424. "x": 0,
  3425. "y": 0,
  3426. "z": 0
  3427. },
  3428. "_lrot": {
  3429. "__type__": "cc.Quat",
  3430. "x": 0,
  3431. "y": 0,
  3432. "z": 0,
  3433. "w": 1
  3434. },
  3435. "_lscale": {
  3436. "__type__": "cc.Vec3",
  3437. "x": 1,
  3438. "y": 1,
  3439. "z": 1
  3440. },
  3441. "_mobility": 0,
  3442. "_layer": 33554432,
  3443. "_euler": {
  3444. "__type__": "cc.Vec3",
  3445. "x": 0,
  3446. "y": 0,
  3447. "z": 0
  3448. },
  3449. "_id": "d7UWjVKhZPLIFGVASfGYTp"
  3450. },
  3451. {
  3452. "__type__": "cc.UITransform",
  3453. "_name": "",
  3454. "_objFlags": 0,
  3455. "__editorExtras__": {},
  3456. "node": {
  3457. "__id__": 90
  3458. },
  3459. "_enabled": true,
  3460. "__prefab": null,
  3461. "_contentSize": {
  3462. "__type__": "cc.Size",
  3463. "width": 136.3300018310547,
  3464. "height": 275.6600036621094
  3465. },
  3466. "_anchorPoint": {
  3467. "__type__": "cc.Vec2",
  3468. "x": 0.5000366555662793,
  3469. "y": 0.5008706576578961
  3470. },
  3471. "_id": "62Acus/ptDmay6Wo3QGrRR"
  3472. },
  3473. {
  3474. "__type__": "sp.Skeleton",
  3475. "_name": "",
  3476. "_objFlags": 0,
  3477. "__editorExtras__": {},
  3478. "node": {
  3479. "__id__": 90
  3480. },
  3481. "_enabled": true,
  3482. "__prefab": null,
  3483. "_customMaterial": null,
  3484. "_srcBlendFactor": 2,
  3485. "_dstBlendFactor": 4,
  3486. "_color": {
  3487. "__type__": "cc.Color",
  3488. "r": 255,
  3489. "g": 255,
  3490. "b": 255,
  3491. "a": 255
  3492. },
  3493. "_skeletonData": {
  3494. "__uuid__": "465898ec-e707-4456-bdea-77827ae403fa",
  3495. "__expectedType__": "sp.SkeletonData"
  3496. },
  3497. "defaultSkin": "water01",
  3498. "defaultAnimation": "full",
  3499. "_premultipliedAlpha": false,
  3500. "_timeScale": 1,
  3501. "_preCacheMode": 0,
  3502. "_cacheMode": 0,
  3503. "_sockets": [],
  3504. "_useTint": false,
  3505. "_debugMesh": false,
  3506. "_debugBones": false,
  3507. "_debugSlots": false,
  3508. "_enableBatch": false,
  3509. "loop": true,
  3510. "_id": "79kS/d3CNJgoYT6RUu0L8g"
  3511. },
  3512. {
  3513. "__type__": "cc.Node",
  3514. "_name": "water02",
  3515. "_objFlags": 0,
  3516. "__editorExtras__": {},
  3517. "_parent": {
  3518. "__id__": 89
  3519. },
  3520. "_children": [],
  3521. "_active": true,
  3522. "_components": [
  3523. {
  3524. "__id__": 94
  3525. },
  3526. {
  3527. "__id__": 95
  3528. }
  3529. ],
  3530. "_prefab": null,
  3531. "_lpos": {
  3532. "__type__": "cc.Vec3",
  3533. "x": 0,
  3534. "y": 0,
  3535. "z": 0
  3536. },
  3537. "_lrot": {
  3538. "__type__": "cc.Quat",
  3539. "x": 0,
  3540. "y": 0,
  3541. "z": 0,
  3542. "w": 1
  3543. },
  3544. "_lscale": {
  3545. "__type__": "cc.Vec3",
  3546. "x": 1,
  3547. "y": 1,
  3548. "z": 1
  3549. },
  3550. "_mobility": 0,
  3551. "_layer": 33554432,
  3552. "_euler": {
  3553. "__type__": "cc.Vec3",
  3554. "x": 0,
  3555. "y": 0,
  3556. "z": 0
  3557. },
  3558. "_id": "adbfOQ8atKO5vnzBvWAp50"
  3559. },
  3560. {
  3561. "__type__": "cc.UITransform",
  3562. "_name": "",
  3563. "_objFlags": 0,
  3564. "__editorExtras__": {},
  3565. "node": {
  3566. "__id__": 93
  3567. },
  3568. "_enabled": true,
  3569. "__prefab": null,
  3570. "_contentSize": {
  3571. "__type__": "cc.Size",
  3572. "width": 136.3300018310547,
  3573. "height": 275.6600036621094
  3574. },
  3575. "_anchorPoint": {
  3576. "__type__": "cc.Vec2",
  3577. "x": 0.5000366555662793,
  3578. "y": 0.5008706576578961
  3579. },
  3580. "_id": "9bT9GbvtpKUrvH7y6J1M2/"
  3581. },
  3582. {
  3583. "__type__": "sp.Skeleton",
  3584. "_name": "",
  3585. "_objFlags": 0,
  3586. "__editorExtras__": {},
  3587. "node": {
  3588. "__id__": 93
  3589. },
  3590. "_enabled": true,
  3591. "__prefab": null,
  3592. "_customMaterial": null,
  3593. "_srcBlendFactor": 2,
  3594. "_dstBlendFactor": 4,
  3595. "_color": {
  3596. "__type__": "cc.Color",
  3597. "r": 255,
  3598. "g": 255,
  3599. "b": 255,
  3600. "a": 255
  3601. },
  3602. "_skeletonData": {
  3603. "__uuid__": "465898ec-e707-4456-bdea-77827ae403fa",
  3604. "__expectedType__": "sp.SkeletonData"
  3605. },
  3606. "defaultSkin": "water02",
  3607. "defaultAnimation": "full",
  3608. "_premultipliedAlpha": false,
  3609. "_timeScale": 1,
  3610. "_preCacheMode": 0,
  3611. "_cacheMode": 0,
  3612. "_sockets": [],
  3613. "_useTint": false,
  3614. "_debugMesh": false,
  3615. "_debugBones": false,
  3616. "_debugSlots": false,
  3617. "_enableBatch": false,
  3618. "loop": true,
  3619. "_id": "c0lfrHMZJM37Zn81zcTAO7"
  3620. },
  3621. {
  3622. "__type__": "cc.Node",
  3623. "_name": "water03",
  3624. "_objFlags": 0,
  3625. "__editorExtras__": {},
  3626. "_parent": {
  3627. "__id__": 89
  3628. },
  3629. "_children": [],
  3630. "_active": true,
  3631. "_components": [
  3632. {
  3633. "__id__": 97
  3634. },
  3635. {
  3636. "__id__": 98
  3637. }
  3638. ],
  3639. "_prefab": null,
  3640. "_lpos": {
  3641. "__type__": "cc.Vec3",
  3642. "x": 0,
  3643. "y": 0,
  3644. "z": 0
  3645. },
  3646. "_lrot": {
  3647. "__type__": "cc.Quat",
  3648. "x": 0,
  3649. "y": 0,
  3650. "z": 0,
  3651. "w": 1
  3652. },
  3653. "_lscale": {
  3654. "__type__": "cc.Vec3",
  3655. "x": 1,
  3656. "y": 1,
  3657. "z": 1
  3658. },
  3659. "_mobility": 0,
  3660. "_layer": 33554432,
  3661. "_euler": {
  3662. "__type__": "cc.Vec3",
  3663. "x": 0,
  3664. "y": 0,
  3665. "z": 0
  3666. },
  3667. "_id": "87bBCJHctHy6pEtnaH9dZp"
  3668. },
  3669. {
  3670. "__type__": "cc.UITransform",
  3671. "_name": "",
  3672. "_objFlags": 0,
  3673. "__editorExtras__": {},
  3674. "node": {
  3675. "__id__": 96
  3676. },
  3677. "_enabled": true,
  3678. "__prefab": null,
  3679. "_contentSize": {
  3680. "__type__": "cc.Size",
  3681. "width": 136.3300018310547,
  3682. "height": 275.6600036621094
  3683. },
  3684. "_anchorPoint": {
  3685. "__type__": "cc.Vec2",
  3686. "x": 0.5000366555662793,
  3687. "y": 0.5008706576578961
  3688. },
  3689. "_id": "24IOJ579BJ7JUwn7bqfAf/"
  3690. },
  3691. {
  3692. "__type__": "sp.Skeleton",
  3693. "_name": "",
  3694. "_objFlags": 0,
  3695. "__editorExtras__": {},
  3696. "node": {
  3697. "__id__": 96
  3698. },
  3699. "_enabled": true,
  3700. "__prefab": null,
  3701. "_customMaterial": null,
  3702. "_srcBlendFactor": 2,
  3703. "_dstBlendFactor": 4,
  3704. "_color": {
  3705. "__type__": "cc.Color",
  3706. "r": 255,
  3707. "g": 255,
  3708. "b": 255,
  3709. "a": 255
  3710. },
  3711. "_skeletonData": {
  3712. "__uuid__": "465898ec-e707-4456-bdea-77827ae403fa",
  3713. "__expectedType__": "sp.SkeletonData"
  3714. },
  3715. "defaultSkin": "water03",
  3716. "defaultAnimation": "full",
  3717. "_premultipliedAlpha": false,
  3718. "_timeScale": 1,
  3719. "_preCacheMode": 0,
  3720. "_cacheMode": 0,
  3721. "_sockets": [],
  3722. "_useTint": false,
  3723. "_debugMesh": false,
  3724. "_debugBones": false,
  3725. "_debugSlots": false,
  3726. "_enableBatch": false,
  3727. "loop": true,
  3728. "_id": "c5ZL4xNwpPUrKKj5uPPc3E"
  3729. },
  3730. {
  3731. "__type__": "cc.Node",
  3732. "_name": "water04",
  3733. "_objFlags": 0,
  3734. "__editorExtras__": {},
  3735. "_parent": {
  3736. "__id__": 89
  3737. },
  3738. "_children": [],
  3739. "_active": true,
  3740. "_components": [
  3741. {
  3742. "__id__": 100
  3743. },
  3744. {
  3745. "__id__": 101
  3746. }
  3747. ],
  3748. "_prefab": null,
  3749. "_lpos": {
  3750. "__type__": "cc.Vec3",
  3751. "x": 0,
  3752. "y": 0,
  3753. "z": 0
  3754. },
  3755. "_lrot": {
  3756. "__type__": "cc.Quat",
  3757. "x": 0,
  3758. "y": 0,
  3759. "z": 0,
  3760. "w": 1
  3761. },
  3762. "_lscale": {
  3763. "__type__": "cc.Vec3",
  3764. "x": 1,
  3765. "y": 1,
  3766. "z": 1
  3767. },
  3768. "_mobility": 0,
  3769. "_layer": 33554432,
  3770. "_euler": {
  3771. "__type__": "cc.Vec3",
  3772. "x": 0,
  3773. "y": 0,
  3774. "z": 0
  3775. },
  3776. "_id": "feOZyqKsRMsZzST0S0ewT3"
  3777. },
  3778. {
  3779. "__type__": "cc.UITransform",
  3780. "_name": "",
  3781. "_objFlags": 0,
  3782. "__editorExtras__": {},
  3783. "node": {
  3784. "__id__": 99
  3785. },
  3786. "_enabled": true,
  3787. "__prefab": null,
  3788. "_contentSize": {
  3789. "__type__": "cc.Size",
  3790. "width": 136.3300018310547,
  3791. "height": 275.6600036621094
  3792. },
  3793. "_anchorPoint": {
  3794. "__type__": "cc.Vec2",
  3795. "x": 0.5000366555662793,
  3796. "y": 0.5008706576578961
  3797. },
  3798. "_id": "a3jPvYRxdDopzJW8FaTSjF"
  3799. },
  3800. {
  3801. "__type__": "sp.Skeleton",
  3802. "_name": "",
  3803. "_objFlags": 0,
  3804. "__editorExtras__": {},
  3805. "node": {
  3806. "__id__": 99
  3807. },
  3808. "_enabled": true,
  3809. "__prefab": null,
  3810. "_customMaterial": null,
  3811. "_srcBlendFactor": 2,
  3812. "_dstBlendFactor": 4,
  3813. "_color": {
  3814. "__type__": "cc.Color",
  3815. "r": 255,
  3816. "g": 255,
  3817. "b": 255,
  3818. "a": 255
  3819. },
  3820. "_skeletonData": {
  3821. "__uuid__": "465898ec-e707-4456-bdea-77827ae403fa",
  3822. "__expectedType__": "sp.SkeletonData"
  3823. },
  3824. "defaultSkin": "water04",
  3825. "defaultAnimation": "full",
  3826. "_premultipliedAlpha": false,
  3827. "_timeScale": 1,
  3828. "_preCacheMode": 0,
  3829. "_cacheMode": 0,
  3830. "_sockets": [],
  3831. "_useTint": false,
  3832. "_debugMesh": false,
  3833. "_debugBones": false,
  3834. "_debugSlots": false,
  3835. "_enableBatch": false,
  3836. "loop": true,
  3837. "_id": "32NBvLRslFaJBRpNYbm6sT"
  3838. },
  3839. {
  3840. "__type__": "cc.Node",
  3841. "_name": "colorB",
  3842. "_objFlags": 0,
  3843. "__editorExtras__": {},
  3844. "_parent": {
  3845. "__id__": 89
  3846. },
  3847. "_children": [],
  3848. "_active": true,
  3849. "_components": [
  3850. {
  3851. "__id__": 103
  3852. },
  3853. {
  3854. "__id__": 104
  3855. }
  3856. ],
  3857. "_prefab": null,
  3858. "_lpos": {
  3859. "__type__": "cc.Vec3",
  3860. "x": 0,
  3861. "y": 0,
  3862. "z": 0
  3863. },
  3864. "_lrot": {
  3865. "__type__": "cc.Quat",
  3866. "x": 0,
  3867. "y": 0,
  3868. "z": 0,
  3869. "w": 1
  3870. },
  3871. "_lscale": {
  3872. "__type__": "cc.Vec3",
  3873. "x": 1,
  3874. "y": 1,
  3875. "z": 1
  3876. },
  3877. "_mobility": 0,
  3878. "_layer": 33554432,
  3879. "_euler": {
  3880. "__type__": "cc.Vec3",
  3881. "x": 0,
  3882. "y": 0,
  3883. "z": 0
  3884. },
  3885. "_id": "5aFdA6EK9LY4D3TVwOSi31"
  3886. },
  3887. {
  3888. "__type__": "cc.UITransform",
  3889. "_name": "",
  3890. "_objFlags": 0,
  3891. "__editorExtras__": {},
  3892. "node": {
  3893. "__id__": 102
  3894. },
  3895. "_enabled": true,
  3896. "__prefab": null,
  3897. "_contentSize": {
  3898. "__type__": "cc.Size",
  3899. "width": 136.3300018310547,
  3900. "height": 275.6600036621094
  3901. },
  3902. "_anchorPoint": {
  3903. "__type__": "cc.Vec2",
  3904. "x": 0.5000366555662793,
  3905. "y": 0.5008706576578961
  3906. },
  3907. "_id": "b29eqiHApNoYP2ic2jKYxu"
  3908. },
  3909. {
  3910. "__type__": "sp.Skeleton",
  3911. "_name": "",
  3912. "_objFlags": 0,
  3913. "__editorExtras__": {},
  3914. "node": {
  3915. "__id__": 102
  3916. },
  3917. "_enabled": true,
  3918. "__prefab": null,
  3919. "_customMaterial": null,
  3920. "_srcBlendFactor": 2,
  3921. "_dstBlendFactor": 4,
  3922. "_color": {
  3923. "__type__": "cc.Color",
  3924. "r": 240,
  3925. "g": 37,
  3926. "b": 37,
  3927. "a": 255
  3928. },
  3929. "_skeletonData": {
  3930. "__uuid__": "465898ec-e707-4456-bdea-77827ae403fa",
  3931. "__expectedType__": "sp.SkeletonData"
  3932. },
  3933. "defaultSkin": "colorB",
  3934. "defaultAnimation": "full",
  3935. "_premultipliedAlpha": false,
  3936. "_timeScale": 1,
  3937. "_preCacheMode": 0,
  3938. "_cacheMode": 0,
  3939. "_sockets": [],
  3940. "_useTint": false,
  3941. "_debugMesh": false,
  3942. "_debugBones": false,
  3943. "_debugSlots": false,
  3944. "_enableBatch": false,
  3945. "loop": true,
  3946. "_id": "0dGZrlIodJAJOyhMgxgmfu"
  3947. },
  3948. {
  3949. "__type__": "cc.Node",
  3950. "_name": "goblet",
  3951. "_objFlags": 0,
  3952. "__editorExtras__": {},
  3953. "_parent": {
  3954. "__id__": 89
  3955. },
  3956. "_children": [],
  3957. "_active": true,
  3958. "_components": [
  3959. {
  3960. "__id__": 106
  3961. },
  3962. {
  3963. "__id__": 107
  3964. }
  3965. ],
  3966. "_prefab": null,
  3967. "_lpos": {
  3968. "__type__": "cc.Vec3",
  3969. "x": 0,
  3970. "y": 0,
  3971. "z": 0
  3972. },
  3973. "_lrot": {
  3974. "__type__": "cc.Quat",
  3975. "x": 0,
  3976. "y": 0,
  3977. "z": 0,
  3978. "w": 1
  3979. },
  3980. "_lscale": {
  3981. "__type__": "cc.Vec3",
  3982. "x": 1,
  3983. "y": 1,
  3984. "z": 1
  3985. },
  3986. "_mobility": 0,
  3987. "_layer": 33554432,
  3988. "_euler": {
  3989. "__type__": "cc.Vec3",
  3990. "x": 0,
  3991. "y": 0,
  3992. "z": 0
  3993. },
  3994. "_id": "c02ySjn6RAUoOck2U+MaC/"
  3995. },
  3996. {
  3997. "__type__": "cc.UITransform",
  3998. "_name": "",
  3999. "_objFlags": 0,
  4000. "__editorExtras__": {},
  4001. "node": {
  4002. "__id__": 105
  4003. },
  4004. "_enabled": true,
  4005. "__prefab": null,
  4006. "_contentSize": {
  4007. "__type__": "cc.Size",
  4008. "width": 136.3300018310547,
  4009. "height": 275.6600036621094
  4010. },
  4011. "_anchorPoint": {
  4012. "__type__": "cc.Vec2",
  4013. "x": 0.5000366555662793,
  4014. "y": 0.5008706576578961
  4015. },
  4016. "_id": "35oK92scdGx5Kqae1JoO+d"
  4017. },
  4018. {
  4019. "__type__": "sp.Skeleton",
  4020. "_name": "",
  4021. "_objFlags": 0,
  4022. "__editorExtras__": {},
  4023. "node": {
  4024. "__id__": 105
  4025. },
  4026. "_enabled": true,
  4027. "__prefab": null,
  4028. "_customMaterial": null,
  4029. "_srcBlendFactor": 2,
  4030. "_dstBlendFactor": 4,
  4031. "_color": {
  4032. "__type__": "cc.Color",
  4033. "r": 255,
  4034. "g": 255,
  4035. "b": 255,
  4036. "a": 255
  4037. },
  4038. "_skeletonData": {
  4039. "__uuid__": "465898ec-e707-4456-bdea-77827ae403fa",
  4040. "__expectedType__": "sp.SkeletonData"
  4041. },
  4042. "defaultSkin": "goblet",
  4043. "defaultAnimation": "full",
  4044. "_premultipliedAlpha": false,
  4045. "_timeScale": 1,
  4046. "_preCacheMode": 0,
  4047. "_cacheMode": 0,
  4048. "_sockets": [],
  4049. "_useTint": false,
  4050. "_debugMesh": false,
  4051. "_debugBones": false,
  4052. "_debugSlots": false,
  4053. "_enableBatch": false,
  4054. "loop": true,
  4055. "_id": "d2ErMv5nRIF6/hGSFS/MMn"
  4056. },
  4057. {
  4058. "__type__": "cc.Node",
  4059. "_name": "other",
  4060. "_objFlags": 0,
  4061. "__editorExtras__": {},
  4062. "_parent": {
  4063. "__id__": 89
  4064. },
  4065. "_children": [],
  4066. "_active": true,
  4067. "_components": [
  4068. {
  4069. "__id__": 109
  4070. },
  4071. {
  4072. "__id__": 110
  4073. }
  4074. ],
  4075. "_prefab": null,
  4076. "_lpos": {
  4077. "__type__": "cc.Vec3",
  4078. "x": 0,
  4079. "y": 0,
  4080. "z": 0
  4081. },
  4082. "_lrot": {
  4083. "__type__": "cc.Quat",
  4084. "x": 0,
  4085. "y": 0,
  4086. "z": 0,
  4087. "w": 1
  4088. },
  4089. "_lscale": {
  4090. "__type__": "cc.Vec3",
  4091. "x": 1,
  4092. "y": 1,
  4093. "z": 1
  4094. },
  4095. "_mobility": 0,
  4096. "_layer": 33554432,
  4097. "_euler": {
  4098. "__type__": "cc.Vec3",
  4099. "x": 0,
  4100. "y": 0,
  4101. "z": 0
  4102. },
  4103. "_id": "59/GVa2rFHnb+FqUsxbP75"
  4104. },
  4105. {
  4106. "__type__": "cc.UITransform",
  4107. "_name": "",
  4108. "_objFlags": 0,
  4109. "__editorExtras__": {},
  4110. "node": {
  4111. "__id__": 108
  4112. },
  4113. "_enabled": true,
  4114. "__prefab": null,
  4115. "_contentSize": {
  4116. "__type__": "cc.Size",
  4117. "width": 136.3300018310547,
  4118. "height": 275.6600036621094
  4119. },
  4120. "_anchorPoint": {
  4121. "__type__": "cc.Vec2",
  4122. "x": 0.5000366555662793,
  4123. "y": 0.5008706576578961
  4124. },
  4125. "_id": "dbS+5vNgFHC61MXcARoaHi"
  4126. },
  4127. {
  4128. "__type__": "sp.Skeleton",
  4129. "_name": "",
  4130. "_objFlags": 0,
  4131. "__editorExtras__": {},
  4132. "node": {
  4133. "__id__": 108
  4134. },
  4135. "_enabled": true,
  4136. "__prefab": null,
  4137. "_customMaterial": null,
  4138. "_srcBlendFactor": 2,
  4139. "_dstBlendFactor": 4,
  4140. "_color": {
  4141. "__type__": "cc.Color",
  4142. "r": 255,
  4143. "g": 255,
  4144. "b": 255,
  4145. "a": 255
  4146. },
  4147. "_skeletonData": {
  4148. "__uuid__": "465898ec-e707-4456-bdea-77827ae403fa",
  4149. "__expectedType__": "sp.SkeletonData"
  4150. },
  4151. "defaultSkin": "other",
  4152. "defaultAnimation": "full",
  4153. "_premultipliedAlpha": false,
  4154. "_timeScale": 1,
  4155. "_preCacheMode": 0,
  4156. "_cacheMode": 0,
  4157. "_sockets": [],
  4158. "_useTint": false,
  4159. "_debugMesh": false,
  4160. "_debugBones": false,
  4161. "_debugSlots": false,
  4162. "_enableBatch": false,
  4163. "loop": true,
  4164. "_id": "ddsSJroBFNdoh2ozNGZh+c"
  4165. },
  4166. {
  4167. "__type__": "cc.Node",
  4168. "_name": "3Goblet",
  4169. "_objFlags": 0,
  4170. "__editorExtras__": {},
  4171. "_parent": {
  4172. "__id__": 2
  4173. },
  4174. "_children": [
  4175. {
  4176. "__id__": 112
  4177. },
  4178. {
  4179. "__id__": 115
  4180. },
  4181. {
  4182. "__id__": 118
  4183. },
  4184. {
  4185. "__id__": 121
  4186. },
  4187. {
  4188. "__id__": 124
  4189. },
  4190. {
  4191. "__id__": 127
  4192. }
  4193. ],
  4194. "_active": true,
  4195. "_components": [],
  4196. "_prefab": null,
  4197. "_lpos": {
  4198. "__type__": "cc.Vec3",
  4199. "x": -25.78,
  4200. "y": -404.904,
  4201. "z": 0
  4202. },
  4203. "_lrot": {
  4204. "__type__": "cc.Quat",
  4205. "x": 0,
  4206. "y": 0,
  4207. "z": 0,
  4208. "w": 1
  4209. },
  4210. "_lscale": {
  4211. "__type__": "cc.Vec3",
  4212. "x": 1,
  4213. "y": 1,
  4214. "z": 1
  4215. },
  4216. "_mobility": 0,
  4217. "_layer": 1073741824,
  4218. "_euler": {
  4219. "__type__": "cc.Vec3",
  4220. "x": 0,
  4221. "y": 0,
  4222. "z": 0
  4223. },
  4224. "_id": "fd5D2byzxE4bnmtB/hu3TN"
  4225. },
  4226. {
  4227. "__type__": "cc.Node",
  4228. "_name": "water01",
  4229. "_objFlags": 0,
  4230. "__editorExtras__": {},
  4231. "_parent": {
  4232. "__id__": 111
  4233. },
  4234. "_children": [],
  4235. "_active": true,
  4236. "_components": [
  4237. {
  4238. "__id__": 113
  4239. },
  4240. {
  4241. "__id__": 114
  4242. }
  4243. ],
  4244. "_prefab": null,
  4245. "_lpos": {
  4246. "__type__": "cc.Vec3",
  4247. "x": 0,
  4248. "y": 0,
  4249. "z": 0
  4250. },
  4251. "_lrot": {
  4252. "__type__": "cc.Quat",
  4253. "x": 0,
  4254. "y": 0,
  4255. "z": 0,
  4256. "w": 1
  4257. },
  4258. "_lscale": {
  4259. "__type__": "cc.Vec3",
  4260. "x": 1,
  4261. "y": 1,
  4262. "z": 1
  4263. },
  4264. "_mobility": 0,
  4265. "_layer": 33554432,
  4266. "_euler": {
  4267. "__type__": "cc.Vec3",
  4268. "x": 0,
  4269. "y": 0,
  4270. "z": 0
  4271. },
  4272. "_id": "6fGkwr9yZGhr+i0lDNS0/Y"
  4273. },
  4274. {
  4275. "__type__": "cc.UITransform",
  4276. "_name": "",
  4277. "_objFlags": 0,
  4278. "__editorExtras__": {},
  4279. "node": {
  4280. "__id__": 112
  4281. },
  4282. "_enabled": true,
  4283. "__prefab": null,
  4284. "_contentSize": {
  4285. "__type__": "cc.Size",
  4286. "width": 136,
  4287. "height": 249.25999450683594
  4288. },
  4289. "_anchorPoint": {
  4290. "__type__": "cc.Vec2",
  4291. "x": 0.5,
  4292. "y": 0.5539196436130556
  4293. },
  4294. "_id": "1eck8LmPFLKrSzRgp9Go84"
  4295. },
  4296. {
  4297. "__type__": "sp.Skeleton",
  4298. "_name": "",
  4299. "_objFlags": 0,
  4300. "__editorExtras__": {},
  4301. "node": {
  4302. "__id__": 112
  4303. },
  4304. "_enabled": true,
  4305. "__prefab": null,
  4306. "_customMaterial": null,
  4307. "_srcBlendFactor": 2,
  4308. "_dstBlendFactor": 4,
  4309. "_color": {
  4310. "__type__": "cc.Color",
  4311. "r": 255,
  4312. "g": 255,
  4313. "b": 255,
  4314. "a": 255
  4315. },
  4316. "_skeletonData": {
  4317. "__uuid__": "8d914329-c1dc-4fb0-be81-037f75cefb18",
  4318. "__expectedType__": "sp.SkeletonData"
  4319. },
  4320. "defaultSkin": "water01",
  4321. "defaultAnimation": "full",
  4322. "_premultipliedAlpha": false,
  4323. "_timeScale": 1,
  4324. "_preCacheMode": 0,
  4325. "_cacheMode": 0,
  4326. "_sockets": [],
  4327. "_useTint": false,
  4328. "_debugMesh": false,
  4329. "_debugBones": false,
  4330. "_debugSlots": false,
  4331. "_enableBatch": false,
  4332. "loop": true,
  4333. "_id": "f8EIe6mcJKcrEcwImCHe21"
  4334. },
  4335. {
  4336. "__type__": "cc.Node",
  4337. "_name": "water02",
  4338. "_objFlags": 0,
  4339. "__editorExtras__": {},
  4340. "_parent": {
  4341. "__id__": 111
  4342. },
  4343. "_children": [],
  4344. "_active": true,
  4345. "_components": [
  4346. {
  4347. "__id__": 116
  4348. },
  4349. {
  4350. "__id__": 117
  4351. }
  4352. ],
  4353. "_prefab": null,
  4354. "_lpos": {
  4355. "__type__": "cc.Vec3",
  4356. "x": 0,
  4357. "y": 0,
  4358. "z": 0
  4359. },
  4360. "_lrot": {
  4361. "__type__": "cc.Quat",
  4362. "x": 0,
  4363. "y": 0,
  4364. "z": 0,
  4365. "w": 1
  4366. },
  4367. "_lscale": {
  4368. "__type__": "cc.Vec3",
  4369. "x": 1,
  4370. "y": 1,
  4371. "z": 1
  4372. },
  4373. "_mobility": 0,
  4374. "_layer": 33554432,
  4375. "_euler": {
  4376. "__type__": "cc.Vec3",
  4377. "x": 0,
  4378. "y": 0,
  4379. "z": 0
  4380. },
  4381. "_id": "d4t1OrGOtArpS8o8e2Luqr"
  4382. },
  4383. {
  4384. "__type__": "cc.UITransform",
  4385. "_name": "",
  4386. "_objFlags": 0,
  4387. "__editorExtras__": {},
  4388. "node": {
  4389. "__id__": 115
  4390. },
  4391. "_enabled": true,
  4392. "__prefab": null,
  4393. "_contentSize": {
  4394. "__type__": "cc.Size",
  4395. "width": 136,
  4396. "height": 249.25999450683594
  4397. },
  4398. "_anchorPoint": {
  4399. "__type__": "cc.Vec2",
  4400. "x": 0.5,
  4401. "y": 0.5539196436130556
  4402. },
  4403. "_id": "adiYbZxoNNDbTvLGmNQwao"
  4404. },
  4405. {
  4406. "__type__": "sp.Skeleton",
  4407. "_name": "",
  4408. "_objFlags": 0,
  4409. "__editorExtras__": {},
  4410. "node": {
  4411. "__id__": 115
  4412. },
  4413. "_enabled": true,
  4414. "__prefab": null,
  4415. "_customMaterial": null,
  4416. "_srcBlendFactor": 2,
  4417. "_dstBlendFactor": 4,
  4418. "_color": {
  4419. "__type__": "cc.Color",
  4420. "r": 255,
  4421. "g": 255,
  4422. "b": 255,
  4423. "a": 255
  4424. },
  4425. "_skeletonData": {
  4426. "__uuid__": "8d914329-c1dc-4fb0-be81-037f75cefb18",
  4427. "__expectedType__": "sp.SkeletonData"
  4428. },
  4429. "defaultSkin": "water02",
  4430. "defaultAnimation": "full",
  4431. "_premultipliedAlpha": false,
  4432. "_timeScale": 1,
  4433. "_preCacheMode": 0,
  4434. "_cacheMode": 0,
  4435. "_sockets": [],
  4436. "_useTint": false,
  4437. "_debugMesh": false,
  4438. "_debugBones": false,
  4439. "_debugSlots": false,
  4440. "_enableBatch": false,
  4441. "loop": true,
  4442. "_id": "15Ukt43PZPD6aSgoljGzmo"
  4443. },
  4444. {
  4445. "__type__": "cc.Node",
  4446. "_name": "water03",
  4447. "_objFlags": 0,
  4448. "__editorExtras__": {},
  4449. "_parent": {
  4450. "__id__": 111
  4451. },
  4452. "_children": [],
  4453. "_active": true,
  4454. "_components": [
  4455. {
  4456. "__id__": 119
  4457. },
  4458. {
  4459. "__id__": 120
  4460. }
  4461. ],
  4462. "_prefab": null,
  4463. "_lpos": {
  4464. "__type__": "cc.Vec3",
  4465. "x": 0,
  4466. "y": 0,
  4467. "z": 0
  4468. },
  4469. "_lrot": {
  4470. "__type__": "cc.Quat",
  4471. "x": 0,
  4472. "y": 0,
  4473. "z": 0,
  4474. "w": 1
  4475. },
  4476. "_lscale": {
  4477. "__type__": "cc.Vec3",
  4478. "x": 1,
  4479. "y": 1,
  4480. "z": 1
  4481. },
  4482. "_mobility": 0,
  4483. "_layer": 33554432,
  4484. "_euler": {
  4485. "__type__": "cc.Vec3",
  4486. "x": 0,
  4487. "y": 0,
  4488. "z": 0
  4489. },
  4490. "_id": "62eIvI5RRPMrFZORbatF3A"
  4491. },
  4492. {
  4493. "__type__": "cc.UITransform",
  4494. "_name": "",
  4495. "_objFlags": 0,
  4496. "__editorExtras__": {},
  4497. "node": {
  4498. "__id__": 118
  4499. },
  4500. "_enabled": true,
  4501. "__prefab": null,
  4502. "_contentSize": {
  4503. "__type__": "cc.Size",
  4504. "width": 136,
  4505. "height": 249.25999450683594
  4506. },
  4507. "_anchorPoint": {
  4508. "__type__": "cc.Vec2",
  4509. "x": 0.5,
  4510. "y": 0.5539196436130556
  4511. },
  4512. "_id": "0dXGAlQQtDMJW6NmJK9MZ0"
  4513. },
  4514. {
  4515. "__type__": "sp.Skeleton",
  4516. "_name": "",
  4517. "_objFlags": 0,
  4518. "__editorExtras__": {},
  4519. "node": {
  4520. "__id__": 118
  4521. },
  4522. "_enabled": true,
  4523. "__prefab": null,
  4524. "_customMaterial": null,
  4525. "_srcBlendFactor": 2,
  4526. "_dstBlendFactor": 4,
  4527. "_color": {
  4528. "__type__": "cc.Color",
  4529. "r": 255,
  4530. "g": 255,
  4531. "b": 255,
  4532. "a": 255
  4533. },
  4534. "_skeletonData": {
  4535. "__uuid__": "8d914329-c1dc-4fb0-be81-037f75cefb18",
  4536. "__expectedType__": "sp.SkeletonData"
  4537. },
  4538. "defaultSkin": "water03",
  4539. "defaultAnimation": "full",
  4540. "_premultipliedAlpha": false,
  4541. "_timeScale": 1,
  4542. "_preCacheMode": 0,
  4543. "_cacheMode": 0,
  4544. "_sockets": [],
  4545. "_useTint": false,
  4546. "_debugMesh": false,
  4547. "_debugBones": false,
  4548. "_debugSlots": false,
  4549. "_enableBatch": false,
  4550. "loop": true,
  4551. "_id": "2dV1AkRWxHgKcVmWnUwV7C"
  4552. },
  4553. {
  4554. "__type__": "cc.Node",
  4555. "_name": "colorB",
  4556. "_objFlags": 0,
  4557. "__editorExtras__": {},
  4558. "_parent": {
  4559. "__id__": 111
  4560. },
  4561. "_children": [],
  4562. "_active": true,
  4563. "_components": [
  4564. {
  4565. "__id__": 122
  4566. },
  4567. {
  4568. "__id__": 123
  4569. }
  4570. ],
  4571. "_prefab": null,
  4572. "_lpos": {
  4573. "__type__": "cc.Vec3",
  4574. "x": 0,
  4575. "y": 0,
  4576. "z": 0
  4577. },
  4578. "_lrot": {
  4579. "__type__": "cc.Quat",
  4580. "x": 0,
  4581. "y": 0,
  4582. "z": 0,
  4583. "w": 1
  4584. },
  4585. "_lscale": {
  4586. "__type__": "cc.Vec3",
  4587. "x": 1,
  4588. "y": 1,
  4589. "z": 1
  4590. },
  4591. "_mobility": 0,
  4592. "_layer": 33554432,
  4593. "_euler": {
  4594. "__type__": "cc.Vec3",
  4595. "x": 0,
  4596. "y": 0,
  4597. "z": 0
  4598. },
  4599. "_id": "e2VSjWuz1CNphoQ+5pzhCV"
  4600. },
  4601. {
  4602. "__type__": "cc.UITransform",
  4603. "_name": "",
  4604. "_objFlags": 0,
  4605. "__editorExtras__": {},
  4606. "node": {
  4607. "__id__": 121
  4608. },
  4609. "_enabled": true,
  4610. "__prefab": null,
  4611. "_contentSize": {
  4612. "__type__": "cc.Size",
  4613. "width": 136,
  4614. "height": 249.25999450683594
  4615. },
  4616. "_anchorPoint": {
  4617. "__type__": "cc.Vec2",
  4618. "x": 0.5,
  4619. "y": 0.5539196436130556
  4620. },
  4621. "_id": "fa4u4GKStJgIl+pjAjvtyQ"
  4622. },
  4623. {
  4624. "__type__": "sp.Skeleton",
  4625. "_name": "",
  4626. "_objFlags": 0,
  4627. "__editorExtras__": {},
  4628. "node": {
  4629. "__id__": 121
  4630. },
  4631. "_enabled": true,
  4632. "__prefab": null,
  4633. "_customMaterial": null,
  4634. "_srcBlendFactor": 2,
  4635. "_dstBlendFactor": 4,
  4636. "_color": {
  4637. "__type__": "cc.Color",
  4638. "r": 255,
  4639. "g": 255,
  4640. "b": 255,
  4641. "a": 255
  4642. },
  4643. "_skeletonData": {
  4644. "__uuid__": "8d914329-c1dc-4fb0-be81-037f75cefb18",
  4645. "__expectedType__": "sp.SkeletonData"
  4646. },
  4647. "defaultSkin": "colorB",
  4648. "defaultAnimation": "full",
  4649. "_premultipliedAlpha": false,
  4650. "_timeScale": 1,
  4651. "_preCacheMode": 0,
  4652. "_cacheMode": 0,
  4653. "_sockets": [],
  4654. "_useTint": false,
  4655. "_debugMesh": false,
  4656. "_debugBones": false,
  4657. "_debugSlots": false,
  4658. "_enableBatch": false,
  4659. "loop": true,
  4660. "_id": "20jMZwjHFGGYGxlX7DN2DE"
  4661. },
  4662. {
  4663. "__type__": "cc.Node",
  4664. "_name": "goblet",
  4665. "_objFlags": 0,
  4666. "__editorExtras__": {},
  4667. "_parent": {
  4668. "__id__": 111
  4669. },
  4670. "_children": [],
  4671. "_active": true,
  4672. "_components": [
  4673. {
  4674. "__id__": 125
  4675. },
  4676. {
  4677. "__id__": 126
  4678. }
  4679. ],
  4680. "_prefab": null,
  4681. "_lpos": {
  4682. "__type__": "cc.Vec3",
  4683. "x": 0,
  4684. "y": 0,
  4685. "z": 0
  4686. },
  4687. "_lrot": {
  4688. "__type__": "cc.Quat",
  4689. "x": 0,
  4690. "y": 0,
  4691. "z": 0,
  4692. "w": 1
  4693. },
  4694. "_lscale": {
  4695. "__type__": "cc.Vec3",
  4696. "x": 1,
  4697. "y": 1,
  4698. "z": 1
  4699. },
  4700. "_mobility": 0,
  4701. "_layer": 33554432,
  4702. "_euler": {
  4703. "__type__": "cc.Vec3",
  4704. "x": 0,
  4705. "y": 0,
  4706. "z": 0
  4707. },
  4708. "_id": "e8U0itSBJMH59fbyh1mnsd"
  4709. },
  4710. {
  4711. "__type__": "cc.UITransform",
  4712. "_name": "",
  4713. "_objFlags": 0,
  4714. "__editorExtras__": {},
  4715. "node": {
  4716. "__id__": 124
  4717. },
  4718. "_enabled": true,
  4719. "__prefab": null,
  4720. "_contentSize": {
  4721. "__type__": "cc.Size",
  4722. "width": 136,
  4723. "height": 249.25999450683594
  4724. },
  4725. "_anchorPoint": {
  4726. "__type__": "cc.Vec2",
  4727. "x": 0.5,
  4728. "y": 0.5539196436130556
  4729. },
  4730. "_id": "abftFjZYlG4bcUJ5SUHuuK"
  4731. },
  4732. {
  4733. "__type__": "sp.Skeleton",
  4734. "_name": "",
  4735. "_objFlags": 0,
  4736. "__editorExtras__": {},
  4737. "node": {
  4738. "__id__": 124
  4739. },
  4740. "_enabled": true,
  4741. "__prefab": null,
  4742. "_customMaterial": null,
  4743. "_srcBlendFactor": 2,
  4744. "_dstBlendFactor": 4,
  4745. "_color": {
  4746. "__type__": "cc.Color",
  4747. "r": 255,
  4748. "g": 255,
  4749. "b": 255,
  4750. "a": 255
  4751. },
  4752. "_skeletonData": {
  4753. "__uuid__": "8d914329-c1dc-4fb0-be81-037f75cefb18",
  4754. "__expectedType__": "sp.SkeletonData"
  4755. },
  4756. "defaultSkin": "goblet",
  4757. "defaultAnimation": "full",
  4758. "_premultipliedAlpha": false,
  4759. "_timeScale": 1,
  4760. "_preCacheMode": 0,
  4761. "_cacheMode": 0,
  4762. "_sockets": [],
  4763. "_useTint": false,
  4764. "_debugMesh": false,
  4765. "_debugBones": false,
  4766. "_debugSlots": false,
  4767. "_enableBatch": false,
  4768. "loop": true,
  4769. "_id": "0dBNbpIhhHXq72tP3MvAyV"
  4770. },
  4771. {
  4772. "__type__": "cc.Node",
  4773. "_name": "other",
  4774. "_objFlags": 0,
  4775. "__editorExtras__": {},
  4776. "_parent": {
  4777. "__id__": 111
  4778. },
  4779. "_children": [],
  4780. "_active": true,
  4781. "_components": [
  4782. {
  4783. "__id__": 128
  4784. },
  4785. {
  4786. "__id__": 129
  4787. }
  4788. ],
  4789. "_prefab": null,
  4790. "_lpos": {
  4791. "__type__": "cc.Vec3",
  4792. "x": 0,
  4793. "y": 0,
  4794. "z": 0
  4795. },
  4796. "_lrot": {
  4797. "__type__": "cc.Quat",
  4798. "x": 0,
  4799. "y": 0,
  4800. "z": 0,
  4801. "w": 1
  4802. },
  4803. "_lscale": {
  4804. "__type__": "cc.Vec3",
  4805. "x": 1,
  4806. "y": 1,
  4807. "z": 1
  4808. },
  4809. "_mobility": 0,
  4810. "_layer": 33554432,
  4811. "_euler": {
  4812. "__type__": "cc.Vec3",
  4813. "x": 0,
  4814. "y": 0,
  4815. "z": 0
  4816. },
  4817. "_id": "44ikIThn9AGKRhfIZyUtLO"
  4818. },
  4819. {
  4820. "__type__": "cc.UITransform",
  4821. "_name": "",
  4822. "_objFlags": 0,
  4823. "__editorExtras__": {},
  4824. "node": {
  4825. "__id__": 127
  4826. },
  4827. "_enabled": true,
  4828. "__prefab": null,
  4829. "_contentSize": {
  4830. "__type__": "cc.Size",
  4831. "width": 136,
  4832. "height": 249.25999450683594
  4833. },
  4834. "_anchorPoint": {
  4835. "__type__": "cc.Vec2",
  4836. "x": 0.5,
  4837. "y": 0.5539196436130556
  4838. },
  4839. "_id": "91aYkOLvhAr5GPRITzxQ3W"
  4840. },
  4841. {
  4842. "__type__": "sp.Skeleton",
  4843. "_name": "",
  4844. "_objFlags": 0,
  4845. "__editorExtras__": {},
  4846. "node": {
  4847. "__id__": 127
  4848. },
  4849. "_enabled": true,
  4850. "__prefab": null,
  4851. "_customMaterial": null,
  4852. "_srcBlendFactor": 2,
  4853. "_dstBlendFactor": 4,
  4854. "_color": {
  4855. "__type__": "cc.Color",
  4856. "r": 255,
  4857. "g": 255,
  4858. "b": 255,
  4859. "a": 255
  4860. },
  4861. "_skeletonData": {
  4862. "__uuid__": "8d914329-c1dc-4fb0-be81-037f75cefb18",
  4863. "__expectedType__": "sp.SkeletonData"
  4864. },
  4865. "defaultSkin": "other",
  4866. "defaultAnimation": "full",
  4867. "_premultipliedAlpha": false,
  4868. "_timeScale": 1,
  4869. "_preCacheMode": 0,
  4870. "_cacheMode": 0,
  4871. "_sockets": [],
  4872. "_useTint": false,
  4873. "_debugMesh": false,
  4874. "_debugBones": false,
  4875. "_debugSlots": false,
  4876. "_enableBatch": false,
  4877. "loop": true,
  4878. "_id": "8bDg3bZKNDF7B/6FIwW6dw"
  4879. },
  4880. {
  4881. "__type__": "cc.Node",
  4882. "_name": "2Goblet",
  4883. "_objFlags": 0,
  4884. "__editorExtras__": {},
  4885. "_parent": {
  4886. "__id__": 2
  4887. },
  4888. "_children": [
  4889. {
  4890. "__id__": 131
  4891. },
  4892. {
  4893. "__id__": 134
  4894. },
  4895. {
  4896. "__id__": 137
  4897. },
  4898. {
  4899. "__id__": 140
  4900. },
  4901. {
  4902. "__id__": 143
  4903. }
  4904. ],
  4905. "_active": true,
  4906. "_components": [],
  4907. "_prefab": null,
  4908. "_lpos": {
  4909. "__type__": "cc.Vec3",
  4910. "x": 280.089,
  4911. "y": -404.904,
  4912. "z": 0
  4913. },
  4914. "_lrot": {
  4915. "__type__": "cc.Quat",
  4916. "x": 0,
  4917. "y": 0,
  4918. "z": 0,
  4919. "w": 1
  4920. },
  4921. "_lscale": {
  4922. "__type__": "cc.Vec3",
  4923. "x": 1,
  4924. "y": 1,
  4925. "z": 1
  4926. },
  4927. "_mobility": 0,
  4928. "_layer": 1073741824,
  4929. "_euler": {
  4930. "__type__": "cc.Vec3",
  4931. "x": 0,
  4932. "y": 0,
  4933. "z": 0
  4934. },
  4935. "_id": "39QKmv7+5AEZV+erLPe9Gy"
  4936. },
  4937. {
  4938. "__type__": "cc.Node",
  4939. "_name": "water01",
  4940. "_objFlags": 0,
  4941. "__editorExtras__": {},
  4942. "_parent": {
  4943. "__id__": 130
  4944. },
  4945. "_children": [],
  4946. "_active": true,
  4947. "_components": [
  4948. {
  4949. "__id__": 132
  4950. },
  4951. {
  4952. "__id__": 133
  4953. }
  4954. ],
  4955. "_prefab": null,
  4956. "_lpos": {
  4957. "__type__": "cc.Vec3",
  4958. "x": 0,
  4959. "y": 0,
  4960. "z": 0
  4961. },
  4962. "_lrot": {
  4963. "__type__": "cc.Quat",
  4964. "x": 0,
  4965. "y": 0,
  4966. "z": 0,
  4967. "w": 1
  4968. },
  4969. "_lscale": {
  4970. "__type__": "cc.Vec3",
  4971. "x": 1,
  4972. "y": 1,
  4973. "z": 1
  4974. },
  4975. "_mobility": 0,
  4976. "_layer": 33554432,
  4977. "_euler": {
  4978. "__type__": "cc.Vec3",
  4979. "x": 0,
  4980. "y": 0,
  4981. "z": 0
  4982. },
  4983. "_id": "25NBUWewZIs5svE5LZJ5Wg"
  4984. },
  4985. {
  4986. "__type__": "cc.UITransform",
  4987. "_name": "",
  4988. "_objFlags": 0,
  4989. "__editorExtras__": {},
  4990. "node": {
  4991. "__id__": 131
  4992. },
  4993. "_enabled": true,
  4994. "__prefab": null,
  4995. "_contentSize": {
  4996. "__type__": "cc.Size",
  4997. "width": 128.2100067138672,
  4998. "height": 218.38999938964844
  4999. },
  5000. "_anchorPoint": {
  5001. "__type__": "cc.Vec2",
  5002. "x": 0.5050307823827346,
  5003. "y": 0.6322176276848471
  5004. },
  5005. "_id": "7eyDP+6ctFbYfn8QesD4hU"
  5006. },
  5007. {
  5008. "__type__": "sp.Skeleton",
  5009. "_name": "",
  5010. "_objFlags": 0,
  5011. "__editorExtras__": {},
  5012. "node": {
  5013. "__id__": 131
  5014. },
  5015. "_enabled": true,
  5016. "__prefab": null,
  5017. "_customMaterial": null,
  5018. "_srcBlendFactor": 2,
  5019. "_dstBlendFactor": 4,
  5020. "_color": {
  5021. "__type__": "cc.Color",
  5022. "r": 255,
  5023. "g": 255,
  5024. "b": 255,
  5025. "a": 255
  5026. },
  5027. "_skeletonData": {
  5028. "__uuid__": "22e77e7c-66b6-416b-a472-4e3726f68e41",
  5029. "__expectedType__": "sp.SkeletonData"
  5030. },
  5031. "defaultSkin": "water01",
  5032. "defaultAnimation": "pour_02",
  5033. "_premultipliedAlpha": false,
  5034. "_timeScale": 1,
  5035. "_preCacheMode": 0,
  5036. "_cacheMode": 0,
  5037. "_sockets": [],
  5038. "_useTint": false,
  5039. "_debugMesh": false,
  5040. "_debugBones": false,
  5041. "_debugSlots": false,
  5042. "_enableBatch": false,
  5043. "loop": true,
  5044. "_id": "f3C4VwaipLELDpGpuOgV9E"
  5045. },
  5046. {
  5047. "__type__": "cc.Node",
  5048. "_name": "water02",
  5049. "_objFlags": 0,
  5050. "__editorExtras__": {},
  5051. "_parent": {
  5052. "__id__": 130
  5053. },
  5054. "_children": [],
  5055. "_active": true,
  5056. "_components": [
  5057. {
  5058. "__id__": 135
  5059. },
  5060. {
  5061. "__id__": 136
  5062. }
  5063. ],
  5064. "_prefab": null,
  5065. "_lpos": {
  5066. "__type__": "cc.Vec3",
  5067. "x": 0,
  5068. "y": 0,
  5069. "z": 0
  5070. },
  5071. "_lrot": {
  5072. "__type__": "cc.Quat",
  5073. "x": 0,
  5074. "y": 0,
  5075. "z": 0,
  5076. "w": 1
  5077. },
  5078. "_lscale": {
  5079. "__type__": "cc.Vec3",
  5080. "x": 1,
  5081. "y": 1,
  5082. "z": 1
  5083. },
  5084. "_mobility": 0,
  5085. "_layer": 33554432,
  5086. "_euler": {
  5087. "__type__": "cc.Vec3",
  5088. "x": 0,
  5089. "y": 0,
  5090. "z": 0
  5091. },
  5092. "_id": "fbcMAvY2NKrKTm20AcfCAQ"
  5093. },
  5094. {
  5095. "__type__": "cc.UITransform",
  5096. "_name": "",
  5097. "_objFlags": 0,
  5098. "__editorExtras__": {},
  5099. "node": {
  5100. "__id__": 134
  5101. },
  5102. "_enabled": true,
  5103. "__prefab": null,
  5104. "_contentSize": {
  5105. "__type__": "cc.Size",
  5106. "width": 128.2100067138672,
  5107. "height": 218.38999938964844
  5108. },
  5109. "_anchorPoint": {
  5110. "__type__": "cc.Vec2",
  5111. "x": 0.5050307823827346,
  5112. "y": 0.6322176276848471
  5113. },
  5114. "_id": "999sPPLK5KjIFdbAWVNKY6"
  5115. },
  5116. {
  5117. "__type__": "sp.Skeleton",
  5118. "_name": "",
  5119. "_objFlags": 0,
  5120. "__editorExtras__": {},
  5121. "node": {
  5122. "__id__": 134
  5123. },
  5124. "_enabled": true,
  5125. "__prefab": null,
  5126. "_customMaterial": null,
  5127. "_srcBlendFactor": 2,
  5128. "_dstBlendFactor": 4,
  5129. "_color": {
  5130. "__type__": "cc.Color",
  5131. "r": 255,
  5132. "g": 255,
  5133. "b": 255,
  5134. "a": 255
  5135. },
  5136. "_skeletonData": {
  5137. "__uuid__": "22e77e7c-66b6-416b-a472-4e3726f68e41",
  5138. "__expectedType__": "sp.SkeletonData"
  5139. },
  5140. "defaultSkin": "water02",
  5141. "defaultAnimation": "pour_02",
  5142. "_premultipliedAlpha": false,
  5143. "_timeScale": 1,
  5144. "_preCacheMode": 0,
  5145. "_cacheMode": 0,
  5146. "_sockets": [],
  5147. "_useTint": false,
  5148. "_debugMesh": false,
  5149. "_debugBones": false,
  5150. "_debugSlots": false,
  5151. "_enableBatch": false,
  5152. "loop": true,
  5153. "_id": "77VJjZQFhKoppCC04LNRC/"
  5154. },
  5155. {
  5156. "__type__": "cc.Node",
  5157. "_name": "colorB",
  5158. "_objFlags": 0,
  5159. "__editorExtras__": {},
  5160. "_parent": {
  5161. "__id__": 130
  5162. },
  5163. "_children": [],
  5164. "_active": true,
  5165. "_components": [
  5166. {
  5167. "__id__": 138
  5168. },
  5169. {
  5170. "__id__": 139
  5171. }
  5172. ],
  5173. "_prefab": null,
  5174. "_lpos": {
  5175. "__type__": "cc.Vec3",
  5176. "x": 0,
  5177. "y": 0,
  5178. "z": 0
  5179. },
  5180. "_lrot": {
  5181. "__type__": "cc.Quat",
  5182. "x": 0,
  5183. "y": 0,
  5184. "z": 0,
  5185. "w": 1
  5186. },
  5187. "_lscale": {
  5188. "__type__": "cc.Vec3",
  5189. "x": 1,
  5190. "y": 1,
  5191. "z": 1
  5192. },
  5193. "_mobility": 0,
  5194. "_layer": 33554432,
  5195. "_euler": {
  5196. "__type__": "cc.Vec3",
  5197. "x": 0,
  5198. "y": 0,
  5199. "z": 0
  5200. },
  5201. "_id": "6epPtjgdtH/Zw9vus46YoF"
  5202. },
  5203. {
  5204. "__type__": "cc.UITransform",
  5205. "_name": "",
  5206. "_objFlags": 0,
  5207. "__editorExtras__": {},
  5208. "node": {
  5209. "__id__": 137
  5210. },
  5211. "_enabled": true,
  5212. "__prefab": null,
  5213. "_contentSize": {
  5214. "__type__": "cc.Size",
  5215. "width": 128.2100067138672,
  5216. "height": 218.38999938964844
  5217. },
  5218. "_anchorPoint": {
  5219. "__type__": "cc.Vec2",
  5220. "x": 0.5050307823827346,
  5221. "y": 0.6322176276848471
  5222. },
  5223. "_id": "dbC9ZqB/RHmpCN6DiTUzFp"
  5224. },
  5225. {
  5226. "__type__": "sp.Skeleton",
  5227. "_name": "",
  5228. "_objFlags": 0,
  5229. "__editorExtras__": {},
  5230. "node": {
  5231. "__id__": 137
  5232. },
  5233. "_enabled": true,
  5234. "__prefab": null,
  5235. "_customMaterial": null,
  5236. "_srcBlendFactor": 2,
  5237. "_dstBlendFactor": 4,
  5238. "_color": {
  5239. "__type__": "cc.Color",
  5240. "r": 255,
  5241. "g": 255,
  5242. "b": 255,
  5243. "a": 255
  5244. },
  5245. "_skeletonData": {
  5246. "__uuid__": "22e77e7c-66b6-416b-a472-4e3726f68e41",
  5247. "__expectedType__": "sp.SkeletonData"
  5248. },
  5249. "defaultSkin": "colorB",
  5250. "defaultAnimation": "pour_02",
  5251. "_premultipliedAlpha": false,
  5252. "_timeScale": 1,
  5253. "_preCacheMode": 0,
  5254. "_cacheMode": 0,
  5255. "_sockets": [],
  5256. "_useTint": false,
  5257. "_debugMesh": false,
  5258. "_debugBones": false,
  5259. "_debugSlots": false,
  5260. "_enableBatch": false,
  5261. "loop": true,
  5262. "_id": "c1BjvtFwVJGoYhWov2YsZt"
  5263. },
  5264. {
  5265. "__type__": "cc.Node",
  5266. "_name": "goblet",
  5267. "_objFlags": 0,
  5268. "__editorExtras__": {},
  5269. "_parent": {
  5270. "__id__": 130
  5271. },
  5272. "_children": [],
  5273. "_active": true,
  5274. "_components": [
  5275. {
  5276. "__id__": 141
  5277. },
  5278. {
  5279. "__id__": 142
  5280. }
  5281. ],
  5282. "_prefab": null,
  5283. "_lpos": {
  5284. "__type__": "cc.Vec3",
  5285. "x": 0,
  5286. "y": 0,
  5287. "z": 0
  5288. },
  5289. "_lrot": {
  5290. "__type__": "cc.Quat",
  5291. "x": 0,
  5292. "y": 0,
  5293. "z": 0,
  5294. "w": 1
  5295. },
  5296. "_lscale": {
  5297. "__type__": "cc.Vec3",
  5298. "x": 1,
  5299. "y": 1,
  5300. "z": 1
  5301. },
  5302. "_mobility": 0,
  5303. "_layer": 33554432,
  5304. "_euler": {
  5305. "__type__": "cc.Vec3",
  5306. "x": 0,
  5307. "y": 0,
  5308. "z": 0
  5309. },
  5310. "_id": "594EEr8qZBo4fe143S3WPP"
  5311. },
  5312. {
  5313. "__type__": "cc.UITransform",
  5314. "_name": "",
  5315. "_objFlags": 0,
  5316. "__editorExtras__": {},
  5317. "node": {
  5318. "__id__": 140
  5319. },
  5320. "_enabled": true,
  5321. "__prefab": null,
  5322. "_contentSize": {
  5323. "__type__": "cc.Size",
  5324. "width": 128.2100067138672,
  5325. "height": 218.38999938964844
  5326. },
  5327. "_anchorPoint": {
  5328. "__type__": "cc.Vec2",
  5329. "x": 0.5050307823827346,
  5330. "y": 0.6322176276848471
  5331. },
  5332. "_id": "3c6ZwbBctFSLa6wCuYTQ0i"
  5333. },
  5334. {
  5335. "__type__": "sp.Skeleton",
  5336. "_name": "",
  5337. "_objFlags": 0,
  5338. "__editorExtras__": {},
  5339. "node": {
  5340. "__id__": 140
  5341. },
  5342. "_enabled": true,
  5343. "__prefab": null,
  5344. "_customMaterial": null,
  5345. "_srcBlendFactor": 2,
  5346. "_dstBlendFactor": 4,
  5347. "_color": {
  5348. "__type__": "cc.Color",
  5349. "r": 255,
  5350. "g": 255,
  5351. "b": 255,
  5352. "a": 255
  5353. },
  5354. "_skeletonData": {
  5355. "__uuid__": "22e77e7c-66b6-416b-a472-4e3726f68e41",
  5356. "__expectedType__": "sp.SkeletonData"
  5357. },
  5358. "defaultSkin": "goblet",
  5359. "defaultAnimation": "pour_02",
  5360. "_premultipliedAlpha": false,
  5361. "_timeScale": 1,
  5362. "_preCacheMode": 0,
  5363. "_cacheMode": 0,
  5364. "_sockets": [],
  5365. "_useTint": false,
  5366. "_debugMesh": false,
  5367. "_debugBones": false,
  5368. "_debugSlots": false,
  5369. "_enableBatch": false,
  5370. "loop": true,
  5371. "_id": "5fCuUkJZFIn6kWjgaHH1hL"
  5372. },
  5373. {
  5374. "__type__": "cc.Node",
  5375. "_name": "other",
  5376. "_objFlags": 0,
  5377. "__editorExtras__": {},
  5378. "_parent": {
  5379. "__id__": 130
  5380. },
  5381. "_children": [],
  5382. "_active": true,
  5383. "_components": [
  5384. {
  5385. "__id__": 144
  5386. },
  5387. {
  5388. "__id__": 145
  5389. }
  5390. ],
  5391. "_prefab": null,
  5392. "_lpos": {
  5393. "__type__": "cc.Vec3",
  5394. "x": 0,
  5395. "y": 0,
  5396. "z": 0
  5397. },
  5398. "_lrot": {
  5399. "__type__": "cc.Quat",
  5400. "x": 0,
  5401. "y": 0,
  5402. "z": 0,
  5403. "w": 1
  5404. },
  5405. "_lscale": {
  5406. "__type__": "cc.Vec3",
  5407. "x": 1,
  5408. "y": 1,
  5409. "z": 1
  5410. },
  5411. "_mobility": 0,
  5412. "_layer": 33554432,
  5413. "_euler": {
  5414. "__type__": "cc.Vec3",
  5415. "x": 0,
  5416. "y": 0,
  5417. "z": 0
  5418. },
  5419. "_id": "72KwLX52lNdZOZNolX0ZjI"
  5420. },
  5421. {
  5422. "__type__": "cc.UITransform",
  5423. "_name": "",
  5424. "_objFlags": 0,
  5425. "__editorExtras__": {},
  5426. "node": {
  5427. "__id__": 143
  5428. },
  5429. "_enabled": true,
  5430. "__prefab": null,
  5431. "_contentSize": {
  5432. "__type__": "cc.Size",
  5433. "width": 128.2100067138672,
  5434. "height": 218.38999938964844
  5435. },
  5436. "_anchorPoint": {
  5437. "__type__": "cc.Vec2",
  5438. "x": 0.5050307823827346,
  5439. "y": 0.6322176276848471
  5440. },
  5441. "_id": "099/0pZ9FEoIetEPoE2nkk"
  5442. },
  5443. {
  5444. "__type__": "sp.Skeleton",
  5445. "_name": "",
  5446. "_objFlags": 0,
  5447. "__editorExtras__": {},
  5448. "node": {
  5449. "__id__": 143
  5450. },
  5451. "_enabled": true,
  5452. "__prefab": null,
  5453. "_customMaterial": null,
  5454. "_srcBlendFactor": 2,
  5455. "_dstBlendFactor": 4,
  5456. "_color": {
  5457. "__type__": "cc.Color",
  5458. "r": 255,
  5459. "g": 255,
  5460. "b": 255,
  5461. "a": 255
  5462. },
  5463. "_skeletonData": {
  5464. "__uuid__": "22e77e7c-66b6-416b-a472-4e3726f68e41",
  5465. "__expectedType__": "sp.SkeletonData"
  5466. },
  5467. "defaultSkin": "other",
  5468. "defaultAnimation": "pour_02",
  5469. "_premultipliedAlpha": false,
  5470. "_timeScale": 1,
  5471. "_preCacheMode": 0,
  5472. "_cacheMode": 0,
  5473. "_sockets": [],
  5474. "_useTint": false,
  5475. "_debugMesh": false,
  5476. "_debugBones": false,
  5477. "_debugSlots": false,
  5478. "_enableBatch": false,
  5479. "loop": true,
  5480. "_id": "4csxly/uZOt5B4Z0+LnnAu"
  5481. },
  5482. {
  5483. "__type__": "cc.Node",
  5484. "_name": "1water",
  5485. "_objFlags": 0,
  5486. "__editorExtras__": {},
  5487. "_parent": {
  5488. "__id__": 2
  5489. },
  5490. "_children": [
  5491. {
  5492. "__id__": 147
  5493. },
  5494. {
  5495. "__id__": 150
  5496. },
  5497. {
  5498. "__id__": 153
  5499. }
  5500. ],
  5501. "_active": true,
  5502. "_components": [],
  5503. "_prefab": null,
  5504. "_lpos": {
  5505. "__type__": "cc.Vec3",
  5506. "x": 224.442,
  5507. "y": -112.218,
  5508. "z": 0
  5509. },
  5510. "_lrot": {
  5511. "__type__": "cc.Quat",
  5512. "x": 0,
  5513. "y": 0,
  5514. "z": 0,
  5515. "w": 1
  5516. },
  5517. "_lscale": {
  5518. "__type__": "cc.Vec3",
  5519. "x": 1,
  5520. "y": 1,
  5521. "z": 1
  5522. },
  5523. "_mobility": 0,
  5524. "_layer": 1073741824,
  5525. "_euler": {
  5526. "__type__": "cc.Vec3",
  5527. "x": 0,
  5528. "y": 0,
  5529. "z": 0
  5530. },
  5531. "_id": "95C3o79NpKdpv8bThgEXEY"
  5532. },
  5533. {
  5534. "__type__": "cc.Node",
  5535. "_name": "water01",
  5536. "_objFlags": 0,
  5537. "__editorExtras__": {},
  5538. "_parent": {
  5539. "__id__": 146
  5540. },
  5541. "_children": [],
  5542. "_active": true,
  5543. "_components": [
  5544. {
  5545. "__id__": 148
  5546. },
  5547. {
  5548. "__id__": 149
  5549. }
  5550. ],
  5551. "_prefab": null,
  5552. "_lpos": {
  5553. "__type__": "cc.Vec3",
  5554. "x": 0,
  5555. "y": 0,
  5556. "z": 0
  5557. },
  5558. "_lrot": {
  5559. "__type__": "cc.Quat",
  5560. "x": 0,
  5561. "y": 0,
  5562. "z": 0,
  5563. "w": 1
  5564. },
  5565. "_lscale": {
  5566. "__type__": "cc.Vec3",
  5567. "x": 1,
  5568. "y": 1,
  5569. "z": 1
  5570. },
  5571. "_mobility": 0,
  5572. "_layer": 33554432,
  5573. "_euler": {
  5574. "__type__": "cc.Vec3",
  5575. "x": 0,
  5576. "y": 0,
  5577. "z": 0
  5578. },
  5579. "_id": "bcldj4l6NJc6JNFA+sdHSE"
  5580. },
  5581. {
  5582. "__type__": "cc.UITransform",
  5583. "_name": "",
  5584. "_objFlags": 0,
  5585. "__editorExtras__": {},
  5586. "node": {
  5587. "__id__": 147
  5588. },
  5589. "_enabled": true,
  5590. "__prefab": null,
  5591. "_contentSize": {
  5592. "__type__": "cc.Size",
  5593. "width": 104.66000366210938,
  5594. "height": 99.25
  5595. },
  5596. "_anchorPoint": {
  5597. "__type__": "cc.Vec2",
  5598. "x": 0.4998089006586676,
  5599. "y": 0.6444332401458203
  5600. },
  5601. "_id": "a8pN+js1JPGbrW01y8qilu"
  5602. },
  5603. {
  5604. "__type__": "sp.Skeleton",
  5605. "_name": "",
  5606. "_objFlags": 0,
  5607. "__editorExtras__": {},
  5608. "node": {
  5609. "__id__": 147
  5610. },
  5611. "_enabled": true,
  5612. "__prefab": null,
  5613. "_customMaterial": null,
  5614. "_srcBlendFactor": 2,
  5615. "_dstBlendFactor": 4,
  5616. "_color": {
  5617. "__type__": "cc.Color",
  5618. "r": 255,
  5619. "g": 255,
  5620. "b": 255,
  5621. "a": 255
  5622. },
  5623. "_skeletonData": {
  5624. "__uuid__": "a1c8b9af-803b-46c4-9017-8841020376c2",
  5625. "__expectedType__": "sp.SkeletonData"
  5626. },
  5627. "defaultSkin": "water01",
  5628. "defaultAnimation": "pour_01",
  5629. "_premultipliedAlpha": false,
  5630. "_timeScale": 1,
  5631. "_preCacheMode": 0,
  5632. "_cacheMode": 0,
  5633. "_sockets": [],
  5634. "_useTint": false,
  5635. "_debugMesh": false,
  5636. "_debugBones": false,
  5637. "_debugSlots": false,
  5638. "_enableBatch": false,
  5639. "loop": true,
  5640. "_id": "2dSbGUfBFNSqjslx/EDkk2"
  5641. },
  5642. {
  5643. "__type__": "cc.Node",
  5644. "_name": "colorB",
  5645. "_objFlags": 0,
  5646. "__editorExtras__": {},
  5647. "_parent": {
  5648. "__id__": 146
  5649. },
  5650. "_children": [],
  5651. "_active": true,
  5652. "_components": [
  5653. {
  5654. "__id__": 151
  5655. },
  5656. {
  5657. "__id__": 152
  5658. }
  5659. ],
  5660. "_prefab": null,
  5661. "_lpos": {
  5662. "__type__": "cc.Vec3",
  5663. "x": 0,
  5664. "y": 0,
  5665. "z": 0
  5666. },
  5667. "_lrot": {
  5668. "__type__": "cc.Quat",
  5669. "x": 0,
  5670. "y": 0,
  5671. "z": 0,
  5672. "w": 1
  5673. },
  5674. "_lscale": {
  5675. "__type__": "cc.Vec3",
  5676. "x": 1,
  5677. "y": 1,
  5678. "z": 1
  5679. },
  5680. "_mobility": 0,
  5681. "_layer": 33554432,
  5682. "_euler": {
  5683. "__type__": "cc.Vec3",
  5684. "x": 0,
  5685. "y": 0,
  5686. "z": 0
  5687. },
  5688. "_id": "73aw66jA9GkYR9fz0NSL+i"
  5689. },
  5690. {
  5691. "__type__": "cc.UITransform",
  5692. "_name": "",
  5693. "_objFlags": 0,
  5694. "__editorExtras__": {},
  5695. "node": {
  5696. "__id__": 150
  5697. },
  5698. "_enabled": true,
  5699. "__prefab": null,
  5700. "_contentSize": {
  5701. "__type__": "cc.Size",
  5702. "width": 104.66000366210938,
  5703. "height": 99.25
  5704. },
  5705. "_anchorPoint": {
  5706. "__type__": "cc.Vec2",
  5707. "x": 0.4998089006586676,
  5708. "y": 0.6444332401458203
  5709. },
  5710. "_id": "18hKsqEQtDHaugsJ74JX0b"
  5711. },
  5712. {
  5713. "__type__": "sp.Skeleton",
  5714. "_name": "",
  5715. "_objFlags": 0,
  5716. "__editorExtras__": {},
  5717. "node": {
  5718. "__id__": 150
  5719. },
  5720. "_enabled": true,
  5721. "__prefab": null,
  5722. "_customMaterial": null,
  5723. "_srcBlendFactor": 2,
  5724. "_dstBlendFactor": 4,
  5725. "_color": {
  5726. "__type__": "cc.Color",
  5727. "r": 255,
  5728. "g": 255,
  5729. "b": 255,
  5730. "a": 255
  5731. },
  5732. "_skeletonData": {
  5733. "__uuid__": "a1c8b9af-803b-46c4-9017-8841020376c2",
  5734. "__expectedType__": "sp.SkeletonData"
  5735. },
  5736. "defaultSkin": "colorB",
  5737. "defaultAnimation": "pour_01",
  5738. "_premultipliedAlpha": false,
  5739. "_timeScale": 1,
  5740. "_preCacheMode": 0,
  5741. "_cacheMode": 0,
  5742. "_sockets": [],
  5743. "_useTint": false,
  5744. "_debugMesh": false,
  5745. "_debugBones": false,
  5746. "_debugSlots": false,
  5747. "_enableBatch": false,
  5748. "loop": true,
  5749. "_id": "9eN4I3hBNJYowf2X20b7OP"
  5750. },
  5751. {
  5752. "__type__": "cc.Node",
  5753. "_name": "goblet",
  5754. "_objFlags": 0,
  5755. "__editorExtras__": {},
  5756. "_parent": {
  5757. "__id__": 146
  5758. },
  5759. "_children": [],
  5760. "_active": true,
  5761. "_components": [
  5762. {
  5763. "__id__": 154
  5764. },
  5765. {
  5766. "__id__": 155
  5767. }
  5768. ],
  5769. "_prefab": null,
  5770. "_lpos": {
  5771. "__type__": "cc.Vec3",
  5772. "x": 0,
  5773. "y": 0,
  5774. "z": 0
  5775. },
  5776. "_lrot": {
  5777. "__type__": "cc.Quat",
  5778. "x": 0,
  5779. "y": 0,
  5780. "z": 0,
  5781. "w": 1
  5782. },
  5783. "_lscale": {
  5784. "__type__": "cc.Vec3",
  5785. "x": 1,
  5786. "y": 1,
  5787. "z": 1
  5788. },
  5789. "_mobility": 0,
  5790. "_layer": 33554432,
  5791. "_euler": {
  5792. "__type__": "cc.Vec3",
  5793. "x": 0,
  5794. "y": 0,
  5795. "z": 0
  5796. },
  5797. "_id": "4bIQFjqAJPwICyqNXrHsGy"
  5798. },
  5799. {
  5800. "__type__": "cc.UITransform",
  5801. "_name": "",
  5802. "_objFlags": 0,
  5803. "__editorExtras__": {},
  5804. "node": {
  5805. "__id__": 153
  5806. },
  5807. "_enabled": true,
  5808. "__prefab": null,
  5809. "_contentSize": {
  5810. "__type__": "cc.Size",
  5811. "width": 104.66000366210938,
  5812. "height": 99.25
  5813. },
  5814. "_anchorPoint": {
  5815. "__type__": "cc.Vec2",
  5816. "x": 0.4998089006586676,
  5817. "y": 0.6444332401458203
  5818. },
  5819. "_id": "dbreJ+y8tOabyvtNkBsNuk"
  5820. },
  5821. {
  5822. "__type__": "sp.Skeleton",
  5823. "_name": "",
  5824. "_objFlags": 0,
  5825. "__editorExtras__": {},
  5826. "node": {
  5827. "__id__": 153
  5828. },
  5829. "_enabled": true,
  5830. "__prefab": null,
  5831. "_customMaterial": null,
  5832. "_srcBlendFactor": 2,
  5833. "_dstBlendFactor": 4,
  5834. "_color": {
  5835. "__type__": "cc.Color",
  5836. "r": 255,
  5837. "g": 255,
  5838. "b": 255,
  5839. "a": 255
  5840. },
  5841. "_skeletonData": {
  5842. "__uuid__": "a1c8b9af-803b-46c4-9017-8841020376c2",
  5843. "__expectedType__": "sp.SkeletonData"
  5844. },
  5845. "defaultSkin": "goblet",
  5846. "defaultAnimation": "pour_01",
  5847. "_premultipliedAlpha": false,
  5848. "_timeScale": 1,
  5849. "_preCacheMode": 0,
  5850. "_cacheMode": 0,
  5851. "_sockets": [],
  5852. "_useTint": false,
  5853. "_debugMesh": false,
  5854. "_debugBones": false,
  5855. "_debugSlots": false,
  5856. "_enableBatch": false,
  5857. "loop": true,
  5858. "_id": "d8J2yqf05EtL26Z6TXb3r5"
  5859. },
  5860. {
  5861. "__type__": "cc.Node",
  5862. "_name": "4freeze",
  5863. "_objFlags": 0,
  5864. "__editorExtras__": {},
  5865. "_parent": {
  5866. "__id__": 2
  5867. },
  5868. "_children": [
  5869. {
  5870. "__id__": 157
  5871. },
  5872. {
  5873. "__id__": 160
  5874. }
  5875. ],
  5876. "_active": true,
  5877. "_components": [
  5878. {
  5879. "__id__": 163
  5880. }
  5881. ],
  5882. "_prefab": null,
  5883. "_lpos": {
  5884. "__type__": "cc.Vec3",
  5885. "x": -180.596,
  5886. "y": 306.706,
  5887. "z": 0
  5888. },
  5889. "_lrot": {
  5890. "__type__": "cc.Quat",
  5891. "x": 0,
  5892. "y": 0,
  5893. "z": 0,
  5894. "w": 1
  5895. },
  5896. "_lscale": {
  5897. "__type__": "cc.Vec3",
  5898. "x": 1,
  5899. "y": 1,
  5900. "z": 1
  5901. },
  5902. "_mobility": 0,
  5903. "_layer": 33554432,
  5904. "_euler": {
  5905. "__type__": "cc.Vec3",
  5906. "x": 0,
  5907. "y": 0,
  5908. "z": 0
  5909. },
  5910. "_id": "13b8KlOUZNN5aLtJ+Xc5D6"
  5911. },
  5912. {
  5913. "__type__": "cc.Node",
  5914. "_name": "cup",
  5915. "_objFlags": 0,
  5916. "__editorExtras__": {},
  5917. "_parent": {
  5918. "__id__": 156
  5919. },
  5920. "_children": [],
  5921. "_active": true,
  5922. "_components": [
  5923. {
  5924. "__id__": 158
  5925. },
  5926. {
  5927. "__id__": 159
  5928. }
  5929. ],
  5930. "_prefab": null,
  5931. "_lpos": {
  5932. "__type__": "cc.Vec3",
  5933. "x": 0,
  5934. "y": 0,
  5935. "z": 0
  5936. },
  5937. "_lrot": {
  5938. "__type__": "cc.Quat",
  5939. "x": 0,
  5940. "y": 0,
  5941. "z": 0,
  5942. "w": 1
  5943. },
  5944. "_lscale": {
  5945. "__type__": "cc.Vec3",
  5946. "x": 1,
  5947. "y": 1,
  5948. "z": 1
  5949. },
  5950. "_mobility": 0,
  5951. "_layer": 33554432,
  5952. "_euler": {
  5953. "__type__": "cc.Vec3",
  5954. "x": 0,
  5955. "y": 0,
  5956. "z": 0
  5957. },
  5958. "_id": "a7HJX5R5FJ/JR1pG5LuH9f"
  5959. },
  5960. {
  5961. "__type__": "cc.UITransform",
  5962. "_name": "",
  5963. "_objFlags": 0,
  5964. "__editorExtras__": {},
  5965. "node": {
  5966. "__id__": 157
  5967. },
  5968. "_enabled": true,
  5969. "__prefab": null,
  5970. "_contentSize": {
  5971. "__type__": "cc.Size",
  5972. "width": 205.6199951171875,
  5973. "height": 367.45001220703125
  5974. },
  5975. "_anchorPoint": {
  5976. "__type__": "cc.Vec2",
  5977. "x": 0.5082677007003519,
  5978. "y": 0.5090488415778547
  5979. },
  5980. "_id": "d0d+2tqBFD5YpdAwBVU37f"
  5981. },
  5982. {
  5983. "__type__": "sp.Skeleton",
  5984. "_name": "",
  5985. "_objFlags": 0,
  5986. "__editorExtras__": {},
  5987. "node": {
  5988. "__id__": 157
  5989. },
  5990. "_enabled": true,
  5991. "__prefab": null,
  5992. "_customMaterial": null,
  5993. "_srcBlendFactor": 2,
  5994. "_dstBlendFactor": 4,
  5995. "_color": {
  5996. "__type__": "cc.Color",
  5997. "r": 255,
  5998. "g": 255,
  5999. "b": 255,
  6000. "a": 255
  6001. },
  6002. "_skeletonData": {
  6003. "__uuid__": "8da3be64-847e-4d13-8895-2ed227a03b36",
  6004. "__expectedType__": "sp.SkeletonData"
  6005. },
  6006. "defaultSkin": "all",
  6007. "defaultAnimation": "idle",
  6008. "_premultipliedAlpha": false,
  6009. "_timeScale": 1,
  6010. "_preCacheMode": 0,
  6011. "_cacheMode": 0,
  6012. "_sockets": [],
  6013. "_useTint": false,
  6014. "_debugMesh": false,
  6015. "_debugBones": false,
  6016. "_debugSlots": false,
  6017. "_enableBatch": false,
  6018. "loop": true,
  6019. "_id": "afaiI+yVRFgYlBHhzLvwEt"
  6020. },
  6021. {
  6022. "__type__": "cc.Node",
  6023. "_name": "piece",
  6024. "_objFlags": 0,
  6025. "__editorExtras__": {},
  6026. "_parent": {
  6027. "__id__": 156
  6028. },
  6029. "_children": [],
  6030. "_active": true,
  6031. "_components": [
  6032. {
  6033. "__id__": 161
  6034. },
  6035. {
  6036. "__id__": 162
  6037. }
  6038. ],
  6039. "_prefab": null,
  6040. "_lpos": {
  6041. "__type__": "cc.Vec3",
  6042. "x": 0,
  6043. "y": 0,
  6044. "z": 0
  6045. },
  6046. "_lrot": {
  6047. "__type__": "cc.Quat",
  6048. "x": 0,
  6049. "y": 0,
  6050. "z": 0,
  6051. "w": 1
  6052. },
  6053. "_lscale": {
  6054. "__type__": "cc.Vec3",
  6055. "x": 1,
  6056. "y": 1,
  6057. "z": 1
  6058. },
  6059. "_mobility": 0,
  6060. "_layer": 33554432,
  6061. "_euler": {
  6062. "__type__": "cc.Vec3",
  6063. "x": 0,
  6064. "y": 0,
  6065. "z": 0
  6066. },
  6067. "_id": "22aa0y+u5I0Y2EfrrOsNVo"
  6068. },
  6069. {
  6070. "__type__": "cc.UITransform",
  6071. "_name": "",
  6072. "_objFlags": 0,
  6073. "__editorExtras__": {},
  6074. "node": {
  6075. "__id__": 160
  6076. },
  6077. "_enabled": true,
  6078. "__prefab": null,
  6079. "_contentSize": {
  6080. "__type__": "cc.Size",
  6081. "width": 205.6199951171875,
  6082. "height": 367.45001220703125
  6083. },
  6084. "_anchorPoint": {
  6085. "__type__": "cc.Vec2",
  6086. "x": 0.5082677007003519,
  6087. "y": 0.5090488415778547
  6088. },
  6089. "_id": "21fdiVrEhPS6zGcE9sXxD7"
  6090. },
  6091. {
  6092. "__type__": "sp.Skeleton",
  6093. "_name": "",
  6094. "_objFlags": 0,
  6095. "__editorExtras__": {},
  6096. "node": {
  6097. "__id__": 160
  6098. },
  6099. "_enabled": true,
  6100. "__prefab": null,
  6101. "_customMaterial": null,
  6102. "_srcBlendFactor": 2,
  6103. "_dstBlendFactor": 4,
  6104. "_color": {
  6105. "__type__": "cc.Color",
  6106. "r": 255,
  6107. "g": 255,
  6108. "b": 255,
  6109. "a": 255
  6110. },
  6111. "_skeletonData": {
  6112. "__uuid__": "8da3be64-847e-4d13-8895-2ed227a03b36",
  6113. "__expectedType__": "sp.SkeletonData"
  6114. },
  6115. "defaultSkin": "piece",
  6116. "defaultAnimation": "idle",
  6117. "_premultipliedAlpha": false,
  6118. "_timeScale": 1,
  6119. "_preCacheMode": 0,
  6120. "_cacheMode": 0,
  6121. "_sockets": [],
  6122. "_useTint": false,
  6123. "_debugMesh": false,
  6124. "_debugBones": false,
  6125. "_debugSlots": false,
  6126. "_enableBatch": false,
  6127. "loop": false,
  6128. "_id": "a8uvR4Is1Ju7F3pnc04oB2"
  6129. },
  6130. {
  6131. "__type__": "cc.UITransform",
  6132. "_name": "",
  6133. "_objFlags": 0,
  6134. "__editorExtras__": {},
  6135. "node": {
  6136. "__id__": 156
  6137. },
  6138. "_enabled": true,
  6139. "__prefab": null,
  6140. "_contentSize": {
  6141. "__type__": "cc.Size",
  6142. "width": 205.6199951171875,
  6143. "height": 367.45001220703125
  6144. },
  6145. "_anchorPoint": {
  6146. "__type__": "cc.Vec2",
  6147. "x": 0.5082677007003519,
  6148. "y": 0.5090488415778547
  6149. },
  6150. "_id": "fc8t0ztW1D57nQyLasdsMh"
  6151. },
  6152. {
  6153. "__type__": "cc.Node",
  6154. "_name": "3freeze",
  6155. "_objFlags": 0,
  6156. "__editorExtras__": {},
  6157. "_parent": {
  6158. "__id__": 2
  6159. },
  6160. "_children": [
  6161. {
  6162. "__id__": 165
  6163. },
  6164. {
  6165. "__id__": 168
  6166. }
  6167. ],
  6168. "_active": true,
  6169. "_components": [
  6170. {
  6171. "__id__": 171
  6172. }
  6173. ],
  6174. "_prefab": null,
  6175. "_lpos": {
  6176. "__type__": "cc.Vec3",
  6177. "x": 49.481,
  6178. "y": 306.706,
  6179. "z": 0
  6180. },
  6181. "_lrot": {
  6182. "__type__": "cc.Quat",
  6183. "x": 0,
  6184. "y": 0,
  6185. "z": 0,
  6186. "w": 1
  6187. },
  6188. "_lscale": {
  6189. "__type__": "cc.Vec3",
  6190. "x": 1,
  6191. "y": 1,
  6192. "z": 1
  6193. },
  6194. "_mobility": 0,
  6195. "_layer": 33554432,
  6196. "_euler": {
  6197. "__type__": "cc.Vec3",
  6198. "x": 0,
  6199. "y": 0,
  6200. "z": 0
  6201. },
  6202. "_id": "41JCR4+f1Jvoft0Uek5bBm"
  6203. },
  6204. {
  6205. "__type__": "cc.Node",
  6206. "_name": "cup",
  6207. "_objFlags": 0,
  6208. "__editorExtras__": {},
  6209. "_parent": {
  6210. "__id__": 164
  6211. },
  6212. "_children": [],
  6213. "_active": true,
  6214. "_components": [
  6215. {
  6216. "__id__": 166
  6217. },
  6218. {
  6219. "__id__": 167
  6220. }
  6221. ],
  6222. "_prefab": null,
  6223. "_lpos": {
  6224. "__type__": "cc.Vec3",
  6225. "x": 0,
  6226. "y": 0,
  6227. "z": 0
  6228. },
  6229. "_lrot": {
  6230. "__type__": "cc.Quat",
  6231. "x": 0,
  6232. "y": 0,
  6233. "z": 0,
  6234. "w": 1
  6235. },
  6236. "_lscale": {
  6237. "__type__": "cc.Vec3",
  6238. "x": 1,
  6239. "y": 1,
  6240. "z": 1
  6241. },
  6242. "_mobility": 0,
  6243. "_layer": 33554432,
  6244. "_euler": {
  6245. "__type__": "cc.Vec3",
  6246. "x": 0,
  6247. "y": 0,
  6248. "z": 0
  6249. },
  6250. "_id": "eaF0EUTltEpIdEhn6Rz5e3"
  6251. },
  6252. {
  6253. "__type__": "cc.UITransform",
  6254. "_name": "",
  6255. "_objFlags": 0,
  6256. "__editorExtras__": {},
  6257. "node": {
  6258. "__id__": 165
  6259. },
  6260. "_enabled": true,
  6261. "__prefab": null,
  6262. "_contentSize": {
  6263. "__type__": "cc.Size",
  6264. "width": 71.91999816894531,
  6265. "height": 71.13999938964844
  6266. },
  6267. "_anchorPoint": {
  6268. "__type__": "cc.Vec2",
  6269. "x": 0.5125139258730894,
  6270. "y": 0.44363227068757427
  6271. },
  6272. "_id": "7bboRVdelOY5jmYTiktCGH"
  6273. },
  6274. {
  6275. "__type__": "sp.Skeleton",
  6276. "_name": "",
  6277. "_objFlags": 0,
  6278. "__editorExtras__": {},
  6279. "node": {
  6280. "__id__": 165
  6281. },
  6282. "_enabled": true,
  6283. "__prefab": null,
  6284. "_customMaterial": null,
  6285. "_srcBlendFactor": 2,
  6286. "_dstBlendFactor": 4,
  6287. "_color": {
  6288. "__type__": "cc.Color",
  6289. "r": 255,
  6290. "g": 255,
  6291. "b": 255,
  6292. "a": 255
  6293. },
  6294. "_skeletonData": {
  6295. "__uuid__": "6755008d-e383-46cd-88a1-799cda4a7ba2",
  6296. "__expectedType__": "sp.SkeletonData"
  6297. },
  6298. "defaultSkin": "all",
  6299. "defaultAnimation": "<None>",
  6300. "_premultipliedAlpha": false,
  6301. "_timeScale": 1,
  6302. "_preCacheMode": 0,
  6303. "_cacheMode": 0,
  6304. "_sockets": [],
  6305. "_useTint": false,
  6306. "_debugMesh": false,
  6307. "_debugBones": false,
  6308. "_debugSlots": false,
  6309. "_enableBatch": false,
  6310. "loop": true,
  6311. "_id": "f4JkDn/JZMLK7JfUsyGuhG"
  6312. },
  6313. {
  6314. "__type__": "cc.Node",
  6315. "_name": "piece",
  6316. "_objFlags": 0,
  6317. "__editorExtras__": {},
  6318. "_parent": {
  6319. "__id__": 164
  6320. },
  6321. "_children": [],
  6322. "_active": true,
  6323. "_components": [
  6324. {
  6325. "__id__": 169
  6326. },
  6327. {
  6328. "__id__": 170
  6329. }
  6330. ],
  6331. "_prefab": null,
  6332. "_lpos": {
  6333. "__type__": "cc.Vec3",
  6334. "x": 0,
  6335. "y": 0,
  6336. "z": 0
  6337. },
  6338. "_lrot": {
  6339. "__type__": "cc.Quat",
  6340. "x": 0,
  6341. "y": 0,
  6342. "z": 0,
  6343. "w": 1
  6344. },
  6345. "_lscale": {
  6346. "__type__": "cc.Vec3",
  6347. "x": 1,
  6348. "y": 1,
  6349. "z": 1
  6350. },
  6351. "_mobility": 0,
  6352. "_layer": 33554432,
  6353. "_euler": {
  6354. "__type__": "cc.Vec3",
  6355. "x": 0,
  6356. "y": 0,
  6357. "z": 0
  6358. },
  6359. "_id": "c34Hr1VehEt4WLYYexgRPy"
  6360. },
  6361. {
  6362. "__type__": "cc.UITransform",
  6363. "_name": "",
  6364. "_objFlags": 0,
  6365. "__editorExtras__": {},
  6366. "node": {
  6367. "__id__": 168
  6368. },
  6369. "_enabled": true,
  6370. "__prefab": null,
  6371. "_contentSize": {
  6372. "__type__": "cc.Size",
  6373. "width": 71.91999816894531,
  6374. "height": 71.13999938964844
  6375. },
  6376. "_anchorPoint": {
  6377. "__type__": "cc.Vec2",
  6378. "x": 0.5125139258730894,
  6379. "y": 0.44363227068757427
  6380. },
  6381. "_id": "8e+VntCxtPmKJP6lYGWBUZ"
  6382. },
  6383. {
  6384. "__type__": "sp.Skeleton",
  6385. "_name": "",
  6386. "_objFlags": 0,
  6387. "__editorExtras__": {},
  6388. "node": {
  6389. "__id__": 168
  6390. },
  6391. "_enabled": true,
  6392. "__prefab": null,
  6393. "_customMaterial": null,
  6394. "_srcBlendFactor": 2,
  6395. "_dstBlendFactor": 4,
  6396. "_color": {
  6397. "__type__": "cc.Color",
  6398. "r": 255,
  6399. "g": 255,
  6400. "b": 255,
  6401. "a": 255
  6402. },
  6403. "_skeletonData": {
  6404. "__uuid__": "6755008d-e383-46cd-88a1-799cda4a7ba2",
  6405. "__expectedType__": "sp.SkeletonData"
  6406. },
  6407. "defaultSkin": "piece",
  6408. "defaultAnimation": "",
  6409. "_premultipliedAlpha": false,
  6410. "_timeScale": 1,
  6411. "_preCacheMode": 0,
  6412. "_cacheMode": 0,
  6413. "_sockets": [],
  6414. "_useTint": false,
  6415. "_debugMesh": false,
  6416. "_debugBones": false,
  6417. "_debugSlots": false,
  6418. "_enableBatch": false,
  6419. "loop": false,
  6420. "_id": "d5GiNqbwdM8bC3HpxJ+61g"
  6421. },
  6422. {
  6423. "__type__": "cc.UITransform",
  6424. "_name": "",
  6425. "_objFlags": 0,
  6426. "__editorExtras__": {},
  6427. "node": {
  6428. "__id__": 164
  6429. },
  6430. "_enabled": true,
  6431. "__prefab": null,
  6432. "_contentSize": {
  6433. "__type__": "cc.Size",
  6434. "width": 205.6199951171875,
  6435. "height": 367.45001220703125
  6436. },
  6437. "_anchorPoint": {
  6438. "__type__": "cc.Vec2",
  6439. "x": 0.5082677007003519,
  6440. "y": 0.5090488415778547
  6441. },
  6442. "_id": "12jHpi/ahEyaSVs6++4U0y"
  6443. },
  6444. {
  6445. "__type__": "cc.Node",
  6446. "_name": "2freeze",
  6447. "_objFlags": 0,
  6448. "__editorExtras__": {},
  6449. "_parent": {
  6450. "__id__": 2
  6451. },
  6452. "_children": [
  6453. {
  6454. "__id__": 173
  6455. },
  6456. {
  6457. "__id__": 176
  6458. }
  6459. ],
  6460. "_active": true,
  6461. "_components": [
  6462. {
  6463. "__id__": 179
  6464. }
  6465. ],
  6466. "_prefab": null,
  6467. "_lpos": {
  6468. "__type__": "cc.Vec3",
  6469. "x": 255.863,
  6470. "y": 306.706,
  6471. "z": 0
  6472. },
  6473. "_lrot": {
  6474. "__type__": "cc.Quat",
  6475. "x": 0,
  6476. "y": 0,
  6477. "z": 0,
  6478. "w": 1
  6479. },
  6480. "_lscale": {
  6481. "__type__": "cc.Vec3",
  6482. "x": 1,
  6483. "y": 1,
  6484. "z": 1
  6485. },
  6486. "_mobility": 0,
  6487. "_layer": 33554432,
  6488. "_euler": {
  6489. "__type__": "cc.Vec3",
  6490. "x": 0,
  6491. "y": 0,
  6492. "z": 0
  6493. },
  6494. "_id": "74um/15ThKC6lk/dmL/fBe"
  6495. },
  6496. {
  6497. "__type__": "cc.Node",
  6498. "_name": "cup",
  6499. "_objFlags": 0,
  6500. "__editorExtras__": {},
  6501. "_parent": {
  6502. "__id__": 172
  6503. },
  6504. "_children": [],
  6505. "_active": true,
  6506. "_components": [
  6507. {
  6508. "__id__": 174
  6509. },
  6510. {
  6511. "__id__": 175
  6512. }
  6513. ],
  6514. "_prefab": null,
  6515. "_lpos": {
  6516. "__type__": "cc.Vec3",
  6517. "x": 0,
  6518. "y": 0,
  6519. "z": 0
  6520. },
  6521. "_lrot": {
  6522. "__type__": "cc.Quat",
  6523. "x": 0,
  6524. "y": 0,
  6525. "z": 0,
  6526. "w": 1
  6527. },
  6528. "_lscale": {
  6529. "__type__": "cc.Vec3",
  6530. "x": 1,
  6531. "y": 1,
  6532. "z": 1
  6533. },
  6534. "_mobility": 0,
  6535. "_layer": 33554432,
  6536. "_euler": {
  6537. "__type__": "cc.Vec3",
  6538. "x": 0,
  6539. "y": 0,
  6540. "z": 0
  6541. },
  6542. "_id": "9blfpRD4BElZ8YMjhgslqq"
  6543. },
  6544. {
  6545. "__type__": "cc.UITransform",
  6546. "_name": "",
  6547. "_objFlags": 0,
  6548. "__editorExtras__": {},
  6549. "node": {
  6550. "__id__": 173
  6551. },
  6552. "_enabled": true,
  6553. "__prefab": null,
  6554. "_contentSize": {
  6555. "__type__": "cc.Size",
  6556. "width": 201.72000122070312,
  6557. "height": 309.5299987792969
  6558. },
  6559. "_anchorPoint": {
  6560. "__type__": "cc.Vec2",
  6561. "x": 0.48854849521805044,
  6562. "y": 0.5452783234094266
  6563. },
  6564. "_id": "f4UxMRMEFKHr1LChUms6py"
  6565. },
  6566. {
  6567. "__type__": "sp.Skeleton",
  6568. "_name": "",
  6569. "_objFlags": 0,
  6570. "__editorExtras__": {},
  6571. "node": {
  6572. "__id__": 173
  6573. },
  6574. "_enabled": true,
  6575. "__prefab": null,
  6576. "_customMaterial": null,
  6577. "_srcBlendFactor": 2,
  6578. "_dstBlendFactor": 4,
  6579. "_color": {
  6580. "__type__": "cc.Color",
  6581. "r": 255,
  6582. "g": 255,
  6583. "b": 255,
  6584. "a": 255
  6585. },
  6586. "_skeletonData": {
  6587. "__uuid__": "f536a7ae-2369-4318-a20c-fb61f191f87d",
  6588. "__expectedType__": "sp.SkeletonData"
  6589. },
  6590. "defaultSkin": "all",
  6591. "defaultAnimation": "",
  6592. "_premultipliedAlpha": false,
  6593. "_timeScale": 1,
  6594. "_preCacheMode": 0,
  6595. "_cacheMode": 0,
  6596. "_sockets": [],
  6597. "_useTint": false,
  6598. "_debugMesh": false,
  6599. "_debugBones": false,
  6600. "_debugSlots": false,
  6601. "_enableBatch": false,
  6602. "loop": true,
  6603. "_id": "e8s0YOk7JGI46GXFBlu4Yz"
  6604. },
  6605. {
  6606. "__type__": "cc.Node",
  6607. "_name": "piece",
  6608. "_objFlags": 0,
  6609. "__editorExtras__": {},
  6610. "_parent": {
  6611. "__id__": 172
  6612. },
  6613. "_children": [],
  6614. "_active": true,
  6615. "_components": [
  6616. {
  6617. "__id__": 177
  6618. },
  6619. {
  6620. "__id__": 178
  6621. }
  6622. ],
  6623. "_prefab": null,
  6624. "_lpos": {
  6625. "__type__": "cc.Vec3",
  6626. "x": 0,
  6627. "y": 0,
  6628. "z": 0
  6629. },
  6630. "_lrot": {
  6631. "__type__": "cc.Quat",
  6632. "x": 0,
  6633. "y": 0,
  6634. "z": 0,
  6635. "w": 1
  6636. },
  6637. "_lscale": {
  6638. "__type__": "cc.Vec3",
  6639. "x": 1,
  6640. "y": 1,
  6641. "z": 1
  6642. },
  6643. "_mobility": 0,
  6644. "_layer": 33554432,
  6645. "_euler": {
  6646. "__type__": "cc.Vec3",
  6647. "x": 0,
  6648. "y": 0,
  6649. "z": 0
  6650. },
  6651. "_id": "e88Lmc+YZCWbIi5O1Z9qi1"
  6652. },
  6653. {
  6654. "__type__": "cc.UITransform",
  6655. "_name": "",
  6656. "_objFlags": 0,
  6657. "__editorExtras__": {},
  6658. "node": {
  6659. "__id__": 176
  6660. },
  6661. "_enabled": true,
  6662. "__prefab": null,
  6663. "_contentSize": {
  6664. "__type__": "cc.Size",
  6665. "width": 201.72000122070312,
  6666. "height": 309.5299987792969
  6667. },
  6668. "_anchorPoint": {
  6669. "__type__": "cc.Vec2",
  6670. "x": 0.48854849521805044,
  6671. "y": 0.5452783234094266
  6672. },
  6673. "_id": "28Dvd0RqhCQY7so2PjMD7z"
  6674. },
  6675. {
  6676. "__type__": "sp.Skeleton",
  6677. "_name": "",
  6678. "_objFlags": 0,
  6679. "__editorExtras__": {},
  6680. "node": {
  6681. "__id__": 176
  6682. },
  6683. "_enabled": true,
  6684. "__prefab": null,
  6685. "_customMaterial": null,
  6686. "_srcBlendFactor": 2,
  6687. "_dstBlendFactor": 4,
  6688. "_color": {
  6689. "__type__": "cc.Color",
  6690. "r": 255,
  6691. "g": 255,
  6692. "b": 255,
  6693. "a": 255
  6694. },
  6695. "_skeletonData": {
  6696. "__uuid__": "f536a7ae-2369-4318-a20c-fb61f191f87d",
  6697. "__expectedType__": "sp.SkeletonData"
  6698. },
  6699. "defaultSkin": "piece",
  6700. "defaultAnimation": "",
  6701. "_premultipliedAlpha": false,
  6702. "_timeScale": 1,
  6703. "_preCacheMode": 0,
  6704. "_cacheMode": 0,
  6705. "_sockets": [],
  6706. "_useTint": false,
  6707. "_debugMesh": false,
  6708. "_debugBones": false,
  6709. "_debugSlots": false,
  6710. "_enableBatch": false,
  6711. "loop": false,
  6712. "_id": "0eFuyFQsZKBZO2KyB9lAD7"
  6713. },
  6714. {
  6715. "__type__": "cc.UITransform",
  6716. "_name": "",
  6717. "_objFlags": 0,
  6718. "__editorExtras__": {},
  6719. "node": {
  6720. "__id__": 172
  6721. },
  6722. "_enabled": true,
  6723. "__prefab": null,
  6724. "_contentSize": {
  6725. "__type__": "cc.Size",
  6726. "width": 205.6199951171875,
  6727. "height": 367.45001220703125
  6728. },
  6729. "_anchorPoint": {
  6730. "__type__": "cc.Vec2",
  6731. "x": 0.5082677007003519,
  6732. "y": 0.5090488415778547
  6733. },
  6734. "_id": "a4QT/Nx5hMz5OHeCUC0+2/"
  6735. },
  6736. {
  6737. "__type__": "cc.UITransform",
  6738. "_name": "",
  6739. "_objFlags": 0,
  6740. "__editorExtras__": {},
  6741. "node": {
  6742. "__id__": 2
  6743. },
  6744. "_enabled": true,
  6745. "__prefab": null,
  6746. "_contentSize": {
  6747. "__type__": "cc.Size",
  6748. "width": 720,
  6749. "height": 1280
  6750. },
  6751. "_anchorPoint": {
  6752. "__type__": "cc.Vec2",
  6753. "x": 0.5,
  6754. "y": 0.5
  6755. },
  6756. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  6757. },
  6758. {
  6759. "__type__": "cc.Canvas",
  6760. "_name": "",
  6761. "_objFlags": 0,
  6762. "__editorExtras__": {},
  6763. "node": {
  6764. "__id__": 2
  6765. },
  6766. "_enabled": true,
  6767. "__prefab": null,
  6768. "_cameraComponent": {
  6769. "__id__": 4
  6770. },
  6771. "_alignCanvasWithScreen": true,
  6772. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  6773. },
  6774. {
  6775. "__type__": "cc.Widget",
  6776. "_name": "",
  6777. "_objFlags": 0,
  6778. "__editorExtras__": {},
  6779. "node": {
  6780. "__id__": 2
  6781. },
  6782. "_enabled": true,
  6783. "__prefab": null,
  6784. "_alignFlags": 45,
  6785. "_target": null,
  6786. "_left": 0,
  6787. "_right": 0,
  6788. "_top": 5.684341886080802e-14,
  6789. "_bottom": 5.684341886080802e-14,
  6790. "_horizontalCenter": 0,
  6791. "_verticalCenter": 0,
  6792. "_isAbsLeft": true,
  6793. "_isAbsRight": true,
  6794. "_isAbsTop": true,
  6795. "_isAbsBottom": true,
  6796. "_isAbsHorizontalCenter": true,
  6797. "_isAbsVerticalCenter": true,
  6798. "_originalWidth": 0,
  6799. "_originalHeight": 0,
  6800. "_alignMode": 2,
  6801. "_lockFlags": 0,
  6802. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  6803. },
  6804. {
  6805. "__type__": "cc.SceneGlobals",
  6806. "ambient": {
  6807. "__id__": 184
  6808. },
  6809. "shadows": {
  6810. "__id__": 185
  6811. },
  6812. "_skybox": {
  6813. "__id__": 186
  6814. },
  6815. "fog": {
  6816. "__id__": 187
  6817. },
  6818. "octree": {
  6819. "__id__": 188
  6820. },
  6821. "skin": {
  6822. "__id__": 189
  6823. },
  6824. "lightProbeInfo": {
  6825. "__id__": 190
  6826. },
  6827. "postSettings": {
  6828. "__id__": 191
  6829. },
  6830. "bakedWithStationaryMainLight": false,
  6831. "bakedWithHighpLightmap": false
  6832. },
  6833. {
  6834. "__type__": "cc.AmbientInfo",
  6835. "_skyColorHDR": {
  6836. "__type__": "cc.Vec4",
  6837. "x": 0,
  6838. "y": 0,
  6839. "z": 0,
  6840. "w": 0.520833125
  6841. },
  6842. "_skyColor": {
  6843. "__type__": "cc.Vec4",
  6844. "x": 0,
  6845. "y": 0,
  6846. "z": 0,
  6847. "w": 0.520833125
  6848. },
  6849. "_skyIllumHDR": 20000,
  6850. "_skyIllum": 20000,
  6851. "_groundAlbedoHDR": {
  6852. "__type__": "cc.Vec4",
  6853. "x": 0,
  6854. "y": 0,
  6855. "z": 0,
  6856. "w": 0
  6857. },
  6858. "_groundAlbedo": {
  6859. "__type__": "cc.Vec4",
  6860. "x": 0,
  6861. "y": 0,
  6862. "z": 0,
  6863. "w": 0
  6864. },
  6865. "_skyColorLDR": {
  6866. "__type__": "cc.Vec4",
  6867. "x": 0.2,
  6868. "y": 0.5,
  6869. "z": 0.8,
  6870. "w": 1
  6871. },
  6872. "_skyIllumLDR": 20000,
  6873. "_groundAlbedoLDR": {
  6874. "__type__": "cc.Vec4",
  6875. "x": 0.2,
  6876. "y": 0.2,
  6877. "z": 0.2,
  6878. "w": 1
  6879. }
  6880. },
  6881. {
  6882. "__type__": "cc.ShadowsInfo",
  6883. "_enabled": false,
  6884. "_type": 0,
  6885. "_normal": {
  6886. "__type__": "cc.Vec3",
  6887. "x": 0,
  6888. "y": 1,
  6889. "z": 0
  6890. },
  6891. "_distance": 0,
  6892. "_planeBias": 1,
  6893. "_shadowColor": {
  6894. "__type__": "cc.Color",
  6895. "r": 76,
  6896. "g": 76,
  6897. "b": 76,
  6898. "a": 255
  6899. },
  6900. "_maxReceived": 4,
  6901. "_size": {
  6902. "__type__": "cc.Vec2",
  6903. "x": 512,
  6904. "y": 512
  6905. }
  6906. },
  6907. {
  6908. "__type__": "cc.SkyboxInfo",
  6909. "_envLightingType": 0,
  6910. "_envmapHDR": null,
  6911. "_envmap": null,
  6912. "_envmapLDR": null,
  6913. "_diffuseMapHDR": null,
  6914. "_diffuseMapLDR": null,
  6915. "_enabled": false,
  6916. "_useHDR": true,
  6917. "_editableMaterial": null,
  6918. "_reflectionHDR": null,
  6919. "_reflectionLDR": null,
  6920. "_rotationAngle": 0
  6921. },
  6922. {
  6923. "__type__": "cc.FogInfo",
  6924. "_type": 0,
  6925. "_fogColor": {
  6926. "__type__": "cc.Color",
  6927. "r": 200,
  6928. "g": 200,
  6929. "b": 200,
  6930. "a": 255
  6931. },
  6932. "_enabled": false,
  6933. "_fogDensity": 0.3,
  6934. "_fogStart": 0.5,
  6935. "_fogEnd": 300,
  6936. "_fogAtten": 5,
  6937. "_fogTop": 1.5,
  6938. "_fogRange": 1.2,
  6939. "_accurate": false
  6940. },
  6941. {
  6942. "__type__": "cc.OctreeInfo",
  6943. "_enabled": false,
  6944. "_minPos": {
  6945. "__type__": "cc.Vec3",
  6946. "x": -1024,
  6947. "y": -1024,
  6948. "z": -1024
  6949. },
  6950. "_maxPos": {
  6951. "__type__": "cc.Vec3",
  6952. "x": 1024,
  6953. "y": 1024,
  6954. "z": 1024
  6955. },
  6956. "_depth": 8
  6957. },
  6958. {
  6959. "__type__": "cc.SkinInfo",
  6960. "_enabled": false,
  6961. "_blurRadius": 0.01,
  6962. "_sssIntensity": 3
  6963. },
  6964. {
  6965. "__type__": "cc.LightProbeInfo",
  6966. "_giScale": 1,
  6967. "_giSamples": 1024,
  6968. "_bounces": 2,
  6969. "_reduceRinging": 0,
  6970. "_showProbe": true,
  6971. "_showWireframe": true,
  6972. "_showConvex": false,
  6973. "_data": null,
  6974. "_lightProbeSphereVolume": 1
  6975. },
  6976. {
  6977. "__type__": "cc.PostSettingsInfo",
  6978. "_toneMappingType": 0
  6979. }
  6980. ]