prefabStart.anim 165 KB

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