fenzi05.playable 193 KB

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