test.scene 112 KB

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