123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048 |
- %YAML 1.1
- %TAG !u! tag:yousandi.cn,2023:
- --- !u!74 &-8811015249955876618
- AnimationClip:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_Name: Recorded (1)
- serializedVersion: 9
- m_Legacy: 0
- m_Compressed: 0
- m_UseHighQualityCurve: 1
- m_RotationCurves: []
- m_CompressedRotationCurves: []
- m_EulerCurves:
- - curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: {x: -0.123, y: 0.169, z: -1.016}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 0.5
- value: {x: -2.079, y: -7.122, z: -5.937508}
- inSlope: {x: -3.6603985, y: -11.980796, z: 0}
- outSlope: {x: -3.6603985, y: -11.980796, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.39632714, y: 0.15029003, z: 0.33333334}
- - serializedVersion: 3
- time: 1.0333333
- value: {x: 3.442, y: -2.5225992, z: -4.183}
- inSlope: {x: 32.3073, y: 28.820267, z: -6.1839023}
- outSlope: {x: 32.3073, y: 28.820267, z: -6.1839023}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.25539908, y: 0.33333334, z: 0.26166108}
- - serializedVersion: 3
- time: 1.3
- value: {x: 12.208867, y: 7.774, z: -10.077175}
- inSlope: {x: 0, y: 48.30217, z: -30.07988}
- outSlope: {x: 0, y: 48.30217, z: -30.07988}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.21369879, z: 0.33333334}
- - serializedVersion: 3
- time: 1.6
- value: {x: 4.856, y: 39.752, z: -16.097}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- path:
- m_PositionCurves:
- - curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: {x: -0.0011294186, y: 0.022008657, z: 0.00014209747}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 0.5
- value: {x: 1.4733976, y: 2.5904663, z: -0.4917364}
- inSlope: {x: 0, y: 1.3137596, z: -0.9811362}
- outSlope: {x: 0, y: 1.3137596, z: -0.9811362}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.34779805}
- - serializedVersion: 3
- time: 1.0333333
- value: {x: 1.0773972, y: 2.9298542, z: -0.83689785}
- inSlope: {x: 0, y: 1.471125, z: -1.7258073}
- outSlope: {x: 0, y: 1.471125, z: -1.7258073}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 1.3
- value: {x: 1.7754294, y: 3.7673662, z: -4.259753}
- inSlope: {x: 0, y: 2.7017026, z: -16.300026}
- outSlope: {x: 0, y: 2.7017026, z: -16.300026}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.31865314, z: 0.16760385}
- - serializedVersion: 3
- time: 1.6
- value: {x: 0.11861935, y: 4.132449, z: -6.863379}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- path:
- m_ScaleCurves:
- - curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: {x: 0, y: 0, z: 0}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 0.46666667
- value: {x: 0, y: 0, z: 0}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 0.5
- value: {x: 1, y: 1, z: 1}
- inSlope: {x: 1.3235294, y: 1.3235294, z: 1.3235294}
- outSlope: {x: 1.3235294, y: 1.3235294, z: 1.3235294}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 1.6
- value: {x: 1.5, y: 1.5, z: 1.5}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 4.766667
- value: {x: 1, y: 1, z: 1}
- inSlope: {x: -0.46874997, y: -0.46874997, z: -0.46874997}
- outSlope: {x: -0.46874997, y: -0.46874997, z: -0.46874997}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 4.8
- value: {x: 0, y: 0, z: 0}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- path:
- m_FloatCurves: []
- m_PPtrCurves: []
- m_SampleRate: 30
- m_WrapMode: 0
- m_Bounds:
- m_Center: {x: 0, y: 0, z: 0}
- m_Extent: {x: 0, y: 0, z: 0}
- m_ClipBindingConstant:
- genericBindings:
- - serializedVersion: 2
- path: 0
- attribute: 1
- script: {fileID: 0}
- typeID: 4
- customType: 0
- isPPtrCurve: 0
- isIntCurve: 0
- isSerializeReferenceCurve: 0
- - serializedVersion: 2
- path: 0
- attribute: 4
- script: {fileID: 0}
- typeID: 4
- customType: 4
- isPPtrCurve: 0
- isIntCurve: 0
- isSerializeReferenceCurve: 0
- - serializedVersion: 2
- path: 0
- attribute: 3
- script: {fileID: 0}
- typeID: 4
- customType: 0
- isPPtrCurve: 0
- isIntCurve: 0
- isSerializeReferenceCurve: 0
- pptrCurveMapping: []
- m_AnimationClipSettings:
- serializedVersion: 2
- m_AdditiveReferencePoseClip: {fileID: 0}
- m_AdditiveReferencePoseTime: 0
- m_StartTime: 0
- m_StopTime: 4.8
- m_OrientationOffsetY: 0
- m_Level: 0
- m_CycleOffset: 0
- m_HasAdditiveReferencePose: 0
- m_LoopTime: 0
- m_LoopBlend: 0
- m_LoopBlendOrientation: 0
- m_LoopBlendPositionY: 0
- m_LoopBlendPositionXZ: 0
- m_KeepOriginalOrientation: 0
- m_KeepOriginalPositionY: 1
- m_KeepOriginalPositionXZ: 0
- m_HeightFromFeet: 0
- m_Mirror: 0
- m_EditorCurves:
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: -0.0011294186
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: 1.4733976
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.0333333
- value: 1.0773972
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.3
- value: 1.7754294
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.6
- value: 0.11861935
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalPosition.x
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0.022008657
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: 2.5904663
- inSlope: 1.3137596
- outSlope: 1.3137596
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.0333333
- value: 2.9298542
- inSlope: 1.471125
- outSlope: 1.471125
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.3
- value: 3.7673662
- inSlope: 2.7017026
- outSlope: 2.7017026
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.31865314
- - serializedVersion: 3
- time: 1.6
- value: 4.132449
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalPosition.y
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0.00014209747
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: -0.4917364
- inSlope: -0.9811362
- outSlope: -0.9811362
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.34779805
- - serializedVersion: 3
- time: 1.0333333
- value: -0.83689785
- inSlope: -1.7258073
- outSlope: -1.7258073
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.3
- value: -4.259753
- inSlope: -16.300026
- outSlope: -16.300026
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.16760385
- - serializedVersion: 3
- time: 1.6
- value: -6.863379
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalPosition.z
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: -0.123
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: -2.079
- inSlope: -3.6603985
- outSlope: -3.6603985
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.39632714
- - serializedVersion: 3
- time: 1.0333333
- value: 3.442
- inSlope: 32.3073
- outSlope: 32.3073
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.25539908
- - serializedVersion: 3
- time: 1.3
- value: 12.208867
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.6
- value: 4.856
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: localEulerAnglesRaw.x
- path:
- classID: 4
- script: {fileID: 0}
- flags: 16
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0.169
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: -7.122
- inSlope: -11.980796
- outSlope: -11.980796
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.15029003
- - serializedVersion: 3
- time: 1.3
- value: 7.774
- inSlope: 48.30217
- outSlope: 48.30217
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.21369879
- - serializedVersion: 3
- time: 1.6
- value: 39.752
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: localEulerAnglesRaw.y
- path:
- classID: 4
- script: {fileID: 0}
- flags: 16
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: -1.016
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: -5.937508
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.0333333
- value: -4.183
- inSlope: -6.1839023
- outSlope: -6.1839023
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.26166108
- - serializedVersion: 3
- time: 1.6
- value: -16.097
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: localEulerAnglesRaw.z
- path:
- classID: 4
- script: {fileID: 0}
- flags: 16
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.46666667
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: 1
- inSlope: 1.3235294
- outSlope: 1.3235294
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.6
- value: 1.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.766667
- value: 1
- inSlope: -0.46874997
- outSlope: -0.46874997
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.8
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalScale.x
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.46666667
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: 1
- inSlope: 1.3235294
- outSlope: 1.3235294
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.6
- value: 1.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.766667
- value: 1
- inSlope: -0.46874997
- outSlope: -0.46874997
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.8
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalScale.y
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.46666667
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: 1
- inSlope: 1.3235294
- outSlope: 1.3235294
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.6
- value: 1.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.766667
- value: 1
- inSlope: -0.46874997
- outSlope: -0.46874997
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.8
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalScale.z
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- m_EulerEditorCurves:
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve: []
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalEulerAngles.x
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve: []
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalEulerAngles.y
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve: []
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalEulerAngles.z
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- m_HasGenericRootTransform: 1
- m_HasMotionFloatCurves: 0
- m_Events: []
- m_ACLContext:
- m_RootBone: {fileID: 0}
- ACLCompressionLevel: 0
- ACLCurvePrecision: 0.01
- UseACLCurve: 0
- --- !u!114 &-5539454897807390309
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 15e0374501f39d54eb30235764636e0e, type: 3}
- m_Name: Control Track
- m_EditorClassIdentifier:
- m_Version: 3
- m_AnimClip: {fileID: 0}
- m_Locked: 0
- m_Muted: 0
- m_CustomPlayableFullTypename:
- m_Curves: {fileID: 0}
- m_Parent: {fileID: -2462228481091417847}
- m_Children: []
- m_Clips:
- - m_Version: 1
- m_Start: 1.6
- m_ClipIn: 0
- m_Asset: {fileID: -2794785259158620841}
- m_Duration: 2.9999999999999996
- m_TimeScale: 1
- m_ParentTrack: {fileID: -5539454897807390309}
- m_EaseInDuration: 0
- m_EaseOutDuration: 0
- m_BlendInDuration: 0
- m_BlendOutDuration: 0
- m_MixInCurve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- - serializedVersion: 3
- time: 1
- value: 1
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- m_MixOutCurve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 1
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- - serializedVersion: 3
- time: 1
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- m_BlendInCurveMode: 0
- m_BlendOutCurveMode: 0
- m_ExposedParameterNames: []
- m_AnimationCurves: {fileID: 0}
- m_Recordable: 0
- m_PostExtrapolationMode: 0
- m_PreExtrapolationMode: 0
- m_PostExtrapolationTime: 0
- m_PreExtrapolationTime: 0
- m_DisplayName: "fx_\u5BF9\u62FC\u70B9"
- m_Markers:
- m_Objects: []
- --- !u!114 &-3124641066486181144
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 15e0374501f39d54eb30235764636e0e, type: 3}
- m_Name: Control Track (1)
- m_EditorClassIdentifier:
- m_Version: 3
- m_AnimClip: {fileID: 0}
- m_Locked: 0
- m_Muted: 0
- m_CustomPlayableFullTypename:
- m_Curves: {fileID: 0}
- m_Parent: {fileID: -2462228481091417847}
- m_Children: []
- m_Clips:
- - m_Version: 1
- m_Start: 4.566666666666666
- m_ClipIn: 0
- m_Asset: {fileID: 1015020876711682186}
- m_Duration: 3
- m_TimeScale: 1
- m_ParentTrack: {fileID: -3124641066486181144}
- m_EaseInDuration: 0
- m_EaseOutDuration: 0
- m_BlendInDuration: 0
- m_BlendOutDuration: 0
- m_MixInCurve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- - serializedVersion: 3
- time: 1
- value: 1
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- m_MixOutCurve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 1
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- - serializedVersion: 3
- time: 1
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- m_BlendInCurveMode: 0
- m_BlendOutCurveMode: 0
- m_ExposedParameterNames: []
- m_AnimationCurves: {fileID: 0}
- m_Recordable: 0
- m_PostExtrapolationMode: 0
- m_PreExtrapolationMode: 0
- m_PostExtrapolationTime: 0
- m_PreExtrapolationTime: 0
- m_DisplayName: "fx_\u7206"
- m_Markers:
- m_Objects: []
- --- !u!114 &-2794785259158620841
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 48853ae485fa386428341ac1ea122570, type: 3}
- m_Name: ControlPlayableAsset
- m_EditorClassIdentifier:
- sourceGameObject:
- exposedName: 081aaa086b6f6664f8422cf9cb01a625
- defaultValue: {fileID: 0}
- prefabGameObject: {fileID: 0}
- updateParticle: 1
- particleRandomSeed: 7263
- updateDirector: 1
- updateITimeControl: 1
- searchHierarchy: 1
- active: 1
- postPlayback: 2
- --- !u!114 &-2462228481091417847
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: d0fc6f5187a81dc47999eefade6f0935, type: 3}
- m_Name: "\u5BF9\u62FC\u70B9vfx"
- m_EditorClassIdentifier:
- m_Version: 3
- m_AnimClip: {fileID: 0}
- m_Locked: 0
- m_Muted: 0
- m_CustomPlayableFullTypename:
- m_Curves: {fileID: 0}
- m_Parent: {fileID: 11400000}
- m_Children:
- - {fileID: -5539454897807390309}
- - {fileID: -3124641066486181144}
- m_Clips: []
- m_Markers:
- m_Objects: []
- --- !u!114 &11400000
- MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: bfda56da833e2384a9677cd3c976a436, type: 3}
- m_Name: "\u6CD5\u5B9DTimeline"
- m_EditorClassIdentifier:
- m_Version: 0
- m_Tracks:
- - {fileID: 7805773184835934395}
- - {fileID: 7508097628744153295}
- - {fileID: 6074841118104965154}
- - {fileID: -2462228481091417847}
- - {fileID: 55055767312365717}
- m_FixedDuration: 0
- m_EditorSettings:
- m_Framerate: 30
- m_ScenePreview: 1
- m_DurationMode: 0
- m_MarkerTrack: {fileID: 0}
- --- !u!114 &55055767312365717
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 15e0374501f39d54eb30235764636e0e, type: 3}
- m_Name: Control Track (2)
- m_EditorClassIdentifier:
- m_Version: 3
- m_AnimClip: {fileID: 0}
- m_Locked: 0
- m_Muted: 0
- m_CustomPlayableFullTypename:
- m_Curves: {fileID: 0}
- m_Parent: {fileID: 11400000}
- m_Children: []
- m_Clips:
- - m_Version: 1
- m_Start: 4.766667
- m_ClipIn: 0
- m_Asset: {fileID: 7404103914530714532}
- m_Duration: 3
- m_TimeScale: 1
- m_ParentTrack: {fileID: 55055767312365717}
- m_EaseInDuration: 0
- m_EaseOutDuration: 0
- m_BlendInDuration: 0
- m_BlendOutDuration: 0
- m_MixInCurve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- - serializedVersion: 3
- time: 1
- value: 1
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- m_MixOutCurve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 1
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- - serializedVersion: 3
- time: 1
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- m_BlendInCurveMode: 0
- m_BlendOutCurveMode: 0
- m_ExposedParameterNames: []
- m_AnimationCurves: {fileID: 0}
- m_Recordable: 0
- m_PostExtrapolationMode: 0
- m_PreExtrapolationMode: 0
- m_PostExtrapolationTime: 0
- m_PreExtrapolationTime: 0
- m_DisplayName: "fx \u6CD5\u5B9D\u7834\u788E"
- m_Markers:
- m_Objects: []
- --- !u!114 &1015020876711682186
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: f1fc88ca9f5b46d2929d20f65fbe5c4e, type: 3}
- m_Name: TimeLineParticleSystemAsset
- m_EditorClassIdentifier:
- sourceGameObject:
- exposedName: 9087b75392eb45648bd28b67f8feb5f7
- defaultValue: {fileID: 0}
- prefabGameObject: {fileID: 0}
- updateParticle: 1
- particleRandomSeed: 4039
- updateDirector: 1
- updateITimeControl: 1
- searchHierarchy: 0
- active: 1
- postPlayback: 2
- targetType: 0
- LocationType: 0
- targetSpecialDotName:
- hitPointGroupName:
- isGround: 0
- isFollowTarget: 0
- isNotRotate: 0
- isFollowRootTarget: 0
- isAttSpeed: 0
- isLoop: 0
- loopAlone: 0
- isActivityCustomTargetPos: 0
- CustomTargetPosIndex: 0
- intervalTime: 0
- --- !u!74 &1541220652962846121
- AnimationClip:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_Name: Recorded
- serializedVersion: 9
- m_Legacy: 0
- m_Compressed: 0
- m_UseHighQualityCurve: 1
- m_RotationCurves: []
- m_CompressedRotationCurves: []
- m_EulerCurves:
- - curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: {x: 358.6034, y: 12.78432, z: -0.7692276}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 0.23333333
- value: {x: 359.59845, y: -4.201229, z: -27.89246}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 0.5
- value: {x: 346.59494, y: 6.9479136, z: -3.1596355}
- inSlope: {x: -11.096281, y: 21.205853, z: 22.60772}
- outSlope: {x: -11.096281, y: 21.205853, z: 22.60772}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.2598628, y: 0.31001422, z: 0.31001422}
- - serializedVersion: 3
- time: 1.0333333
- value: {x: 356.15414, y: 6.955265, z: -0.6257687}
- inSlope: {x: 45.863358, y: -15.500456, z: -12.18379}
- outSlope: {x: 45.863358, y: -15.500456, z: -12.18379}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.38274404, y: 0.4156075, z: 0.3955471}
- - serializedVersion: 3
- time: 1.2666667
- value: {x: 395.5119, y: 3.258686, z: -2.614538}
- inSlope: {x: 0, y: 2.8706079, z: 2.285473}
- outSlope: {x: 0, y: 2.8706079, z: 2.285473}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.23945689, z: 0.23356655}
- - serializedVersion: 3
- time: 1.4333333
- value: {x: 385.8246, y: 34.16847, z: 9.776331}
- inSlope: {x: -69.42574, y: 82.39822, z: 43.541515}
- outSlope: {x: -69.42574, y: 82.39822, z: 43.541515}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.23802139, y: 0.18120433, z: 0.33333334}
- - serializedVersion: 3
- time: 1.6666666
- value: {x: 374.375, y: 39.97672, z: 10.74032}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 4.633333
- value: {x: 374.375, y: 39.97672, z: 10.74032}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 4.9333334
- value: {x: 374.375, y: 39.97672, z: 10.74032}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 5.1666665
- value: {x: 376.7326, y: 12.60428, z: 3.05832}
- inSlope: {x: 19.104439, y: -199.95436, z: -57.658615}
- outSlope: {x: 19.104439, y: -199.95436, z: -57.658615}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.16197868, z: 0.33735102}
- - serializedVersion: 3
- time: 5.4
- value: {x: 383.2904, y: -11.63631, z: -5.509936}
- inSlope: {x: 29.115381, y: 0, z: 0}
- outSlope: {x: 29.115381, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.25216007, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- path:
- m_PositionCurves:
- - curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: {x: 1.7602062, y: -3.1529999, z: 0.7335956}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 0.23333333
- value: {x: 1.2850733, y: -1.43, z: 0.86002886}
- inSlope: {x: -4.15667, y: 10.071382, z: 0}
- outSlope: {x: -4.15667, y: 10.071382, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.4375477, y: 0.6126918, z: 0.33333334}
- - serializedVersion: 3
- time: 0.5
- value: {x: 0, y: 0.00000035762787, z: 0}
- inSlope: {x: -3.7187276, y: 1.5999987, z: -0.31975365}
- outSlope: {x: -3.7187276, y: 1.5999987, z: -0.31975365}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.268445, y: 0.33333334, z: 0.27575132}
- - serializedVersion: 3
- time: 1.0333333
- value: {x: -0.25366116, y: 0.32000005, z: -0.041904926}
- inSlope: {x: -1.3234495, y: 1.6695637, z: -0.9448157}
- outSlope: {x: -1.3234495, y: 1.6695637, z: -0.9448157}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.24327168}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.4506826}
- - serializedVersion: 3
- time: 1.2666667
- value: {x: -4.4562163, y: 2.0999742, z: -1.31357}
- inSlope: {x: -26.48064, y: 1.8145671, z: 0.45294556}
- outSlope: {x: -26.48064, y: 1.8145671, z: 0.45294556}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.25931603, y: 0.14446767, z: 0.16628791}
- - serializedVersion: 3
- time: 1.4333333
- value: {x: -8.155637, y: 2.1274557, z: -0.065201715}
- inSlope: {x: -17.214645, y: -2.3616738, z: 11.56269}
- outSlope: {x: -17.214645, y: -2.3616738, z: 11.56269}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.21023971, y: 0.47748017, z: 0.24340713}
- - serializedVersion: 3
- time: 1.6666666
- value: {x: -10.755558, y: 1.1100258, z: 1.8466628}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 4.633333
- value: {x: -10.755558, y: 1.1100258, z: 1.8466628}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 4.9333334
- value: {x: -10.755558, y: 1.1100258, z: 1.8466628}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 5.1666665
- value: {x: -14.158148, y: 0.31999624, z: 4.4374914}
- inSlope: {x: -17.453646, y: -6.771681, z: 0}
- outSlope: {x: -17.453646, y: -6.771681, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.58740824, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 5.4
- value: {x: -17.662683, y: -2.67, z: 3.105505}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- path:
- m_ScaleCurves:
- - curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: {x: 0, y: 0, z: 0}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 0.46666667
- value: {x: 0, y: 0, z: 0}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 0.5
- value: {x: 1, y: 1, z: 1}
- inSlope: {x: 1.2500001, y: 1.2500001, z: 1.2500001}
- outSlope: {x: 1.2500001, y: 1.2500001, z: 1.2500001}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 1.6666666
- value: {x: 1.5, y: 1.5, z: 1.5}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 4.633333
- value: {x: 1.5, y: 1.5, z: 1.5}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 4.8333335
- value: {x: 2.5, y: 2.5, z: 2.5}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 5.4
- value: {x: 2.5, y: 2.5, z: 2.5}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- - serializedVersion: 3
- time: 5.4333334
- value: {x: 0, y: 0, z: 0}
- inSlope: {x: 0, y: 0, z: 0}
- outSlope: {x: 0, y: 0, z: 0}
- tangentMode: 0
- weightedMode: 0
- inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- path:
- m_FloatCurves: []
- m_PPtrCurves: []
- m_SampleRate: 30
- m_WrapMode: 0
- m_Bounds:
- m_Center: {x: 0, y: 0, z: 0}
- m_Extent: {x: 0, y: 0, z: 0}
- m_ClipBindingConstant:
- genericBindings:
- - serializedVersion: 2
- path: 0
- attribute: 1
- script: {fileID: 0}
- typeID: 4
- customType: 0
- isPPtrCurve: 0
- isIntCurve: 0
- isSerializeReferenceCurve: 0
- - serializedVersion: 2
- path: 0
- attribute: 4
- script: {fileID: 0}
- typeID: 4
- customType: 4
- isPPtrCurve: 0
- isIntCurve: 0
- isSerializeReferenceCurve: 0
- - serializedVersion: 2
- path: 0
- attribute: 3
- script: {fileID: 0}
- typeID: 4
- customType: 0
- isPPtrCurve: 0
- isIntCurve: 0
- isSerializeReferenceCurve: 0
- pptrCurveMapping: []
- m_AnimationClipSettings:
- serializedVersion: 2
- m_AdditiveReferencePoseClip: {fileID: 0}
- m_AdditiveReferencePoseTime: 0
- m_StartTime: 0
- m_StopTime: 5.4333334
- m_OrientationOffsetY: 0
- m_Level: 0
- m_CycleOffset: 0
- m_HasAdditiveReferencePose: 0
- m_LoopTime: 0
- m_LoopBlend: 0
- m_LoopBlendOrientation: 0
- m_LoopBlendPositionY: 0
- m_LoopBlendPositionXZ: 0
- m_KeepOriginalOrientation: 0
- m_KeepOriginalPositionY: 1
- m_KeepOriginalPositionXZ: 0
- m_HeightFromFeet: 0
- m_Mirror: 0
- m_EditorCurves:
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 1.7602062
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.23333333
- value: 1.2850733
- inSlope: -4.15667
- outSlope: -4.15667
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.4375477
- - serializedVersion: 3
- time: 0.5
- value: 0
- inSlope: -3.7187276
- outSlope: -3.7187276
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.268445
- - serializedVersion: 3
- time: 1.0333333
- value: -0.25366116
- inSlope: -1.3234495
- outSlope: -1.3234495
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.2666667
- value: -4.4562163
- inSlope: -26.48064
- outSlope: -26.48064
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.25931603
- - serializedVersion: 3
- time: 1.4333333
- value: -8.155637
- inSlope: -17.214645
- outSlope: -17.214645
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.21023971
- - serializedVersion: 3
- time: 1.6666666
- value: -10.755558
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.633333
- value: -10.755558
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.9333334
- value: -10.755558
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.1666665
- value: -14.158148
- inSlope: -17.453646
- outSlope: -17.453646
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.58740824
- - serializedVersion: 3
- time: 5.4
- value: -17.662683
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalPosition.x
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: -3.1529999
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.23333333
- value: -1.43
- inSlope: 10.071382
- outSlope: 10.071382
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.6126918
- - serializedVersion: 3
- time: 0.5
- value: 0.00000035762787
- inSlope: 1.5999987
- outSlope: 1.5999987
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.0333333
- value: 0.32000005
- inSlope: 1.6695637
- outSlope: 1.6695637
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.2666667
- value: 2.0999742
- inSlope: 1.8145671
- outSlope: 1.8145671
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.14446767
- - serializedVersion: 3
- time: 1.4333333
- value: 2.1274557
- inSlope: -2.3616738
- outSlope: -2.3616738
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.47748017
- - serializedVersion: 3
- time: 1.6666666
- value: 1.1100258
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.633333
- value: 1.1100258
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.9333334
- value: 1.1100258
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.1666665
- value: 0.31999624
- inSlope: -6.771681
- outSlope: -6.771681
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.4
- value: -2.67
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalPosition.y
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0.7335956
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.23333333
- value: 0.86002886
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: 0
- inSlope: -0.31975365
- outSlope: -0.31975365
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.27575132
- - serializedVersion: 3
- time: 1.0333333
- value: -0.041904926
- inSlope: -0.9448157
- outSlope: -0.9448157
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.24327168
- outWeight: 0.4506826
- - serializedVersion: 3
- time: 1.2666667
- value: -1.31357
- inSlope: 0.45294556
- outSlope: 0.45294556
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.16628791
- - serializedVersion: 3
- time: 1.4333333
- value: -0.065201715
- inSlope: 11.56269
- outSlope: 11.56269
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.24340713
- - serializedVersion: 3
- time: 1.6666666
- value: 1.8466628
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.633333
- value: 1.8466628
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.9333334
- value: 1.8466628
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.1666665
- value: 4.4374914
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.4
- value: 3.105505
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalPosition.z
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 358.6034
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.23333333
- value: 359.59845
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: 346.59494
- inSlope: -11.096281
- outSlope: -11.096281
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.2598628
- - serializedVersion: 3
- time: 1.0333333
- value: 356.15414
- inSlope: 45.863358
- outSlope: 45.863358
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.38274404
- - serializedVersion: 3
- time: 1.2666667
- value: 395.5119
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.4333333
- value: 385.8246
- inSlope: -69.42574
- outSlope: -69.42574
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.23802139
- - serializedVersion: 3
- time: 1.6666666
- value: 374.375
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.633333
- value: 374.375
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.9333334
- value: 374.375
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.1666665
- value: 376.7326
- inSlope: 19.104439
- outSlope: 19.104439
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.4
- value: 383.2904
- inSlope: 29.115381
- outSlope: 29.115381
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.25216007
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: localEulerAnglesRaw.x
- path:
- classID: 4
- script: {fileID: 0}
- flags: 16
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 12.78432
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.23333333
- value: -4.201229
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: 6.9479136
- inSlope: 21.205853
- outSlope: 21.205853
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.31001422
- - serializedVersion: 3
- time: 1.0333333
- value: 6.955265
- inSlope: -15.500456
- outSlope: -15.500456
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.4156075
- - serializedVersion: 3
- time: 1.2666667
- value: 3.258686
- inSlope: 2.8706079
- outSlope: 2.8706079
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.23945689
- - serializedVersion: 3
- time: 1.4333333
- value: 34.16847
- inSlope: 82.39822
- outSlope: 82.39822
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.18120433
- - serializedVersion: 3
- time: 1.6666666
- value: 39.97672
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.633333
- value: 39.97672
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.9333334
- value: 39.97672
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.1666665
- value: 12.60428
- inSlope: -199.95436
- outSlope: -199.95436
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.16197868
- - serializedVersion: 3
- time: 5.4
- value: -11.63631
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: localEulerAnglesRaw.y
- path:
- classID: 4
- script: {fileID: 0}
- flags: 16
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: -0.7692276
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.23333333
- value: -27.89246
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: -3.1596355
- inSlope: 22.60772
- outSlope: 22.60772
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.31001422
- - serializedVersion: 3
- time: 1.0333333
- value: -0.6257687
- inSlope: -12.18379
- outSlope: -12.18379
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.3955471
- - serializedVersion: 3
- time: 1.2666667
- value: -2.614538
- inSlope: 2.285473
- outSlope: 2.285473
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.23356655
- - serializedVersion: 3
- time: 1.4333333
- value: 9.776331
- inSlope: 43.541515
- outSlope: 43.541515
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.6666666
- value: 10.74032
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.633333
- value: 10.74032
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.9333334
- value: 10.74032
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.1666665
- value: 3.05832
- inSlope: -57.658615
- outSlope: -57.658615
- tangentMode: 0
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33735102
- - serializedVersion: 3
- time: 5.4
- value: -5.509936
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: localEulerAnglesRaw.z
- path:
- classID: 4
- script: {fileID: 0}
- flags: 16
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.46666667
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: 1
- inSlope: 1.2500001
- outSlope: 1.2500001
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.6666666
- value: 1.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.633333
- value: 1.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.8333335
- value: 2.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.4
- value: 2.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.4333334
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalScale.x
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.46666667
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: 1
- inSlope: 1.2500001
- outSlope: 1.2500001
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.6666666
- value: 1.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.633333
- value: 1.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.8333335
- value: 2.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.4
- value: 2.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.4333334
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalScale.y
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.46666667
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 0.5
- value: 1
- inSlope: 1.2500001
- outSlope: 1.2500001
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 1.6666666
- value: 1.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.633333
- value: 1.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 4.8333335
- value: 2.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.4
- value: 2.5
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- - serializedVersion: 3
- time: 5.4333334
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 136
- weightedMode: 0
- inWeight: 0.33333334
- outWeight: 0.33333334
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalScale.z
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- m_EulerEditorCurves:
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve: []
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalEulerAngles.x
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve: []
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalEulerAngles.y
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- - serializedVersion: 2
- curve:
- serializedVersion: 2
- m_Curve: []
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- attribute: m_LocalEulerAngles.z
- path:
- classID: 4
- script: {fileID: 0}
- flags: 0
- m_HasGenericRootTransform: 1
- m_HasMotionFloatCurves: 0
- m_Events: []
- m_ACLContext:
- m_RootBone: {fileID: 0}
- ACLCompressionLevel: 0
- ACLCurvePrecision: 0.01
- UseACLCurve: 0
- --- !u!114 &2590790698090210262
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 09e4fb4d0e1c4ef796502c9420b2361c, type: 3}
- m_Name: TimeLinePlayEntityAnimtionAsset
- m_EditorClassIdentifier:
- m_Clip: {fileID: 7400000, guid: 9acb780a3b4b71344931d0a64366d239, type: 2}
- m_Position: {x: 0, y: 0, z: 0}
- m_EulerAngles: {x: 0, y: 0, z: 0}
- m_UseTrackMatchFields: 1
- m_MatchTargetFields: 63
- m_RemoveStartOffset: 1
- m_ApplyFootIK: 1
- m_Loop: 0
- m_Version: 1
- m_Rotation: {x: 0, y: 0, z: 0, w: 1}
- isRunPlay: 0
- layerId: 0
- --- !u!114 &2849662949139851895
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
- m_Name: Animation Track
- m_EditorClassIdentifier:
- m_Version: 3
- m_AnimClip: {fileID: 0}
- m_Locked: 0
- m_Muted: 0
- m_CustomPlayableFullTypename:
- m_Curves: {fileID: 0}
- m_Parent: {fileID: 7508097628744153295}
- m_Children: []
- m_Clips: []
- m_Markers:
- m_Objects: []
- m_InfiniteClipPreExtrapolation: 1
- m_InfiniteClipPostExtrapolation: 1
- m_InfiniteClipOffsetPosition: {x: -0.87, y: 1.93, z: -5.99}
- m_InfiniteClipOffsetEulerAngles: {x: 0, y: 85.88484, z: 0}
- m_InfiniteClipTimeOffset: 0
- m_InfiniteClipRemoveOffset: 0
- m_InfiniteClipApplyFootIK: 1
- mInfiniteClipLoop: 0
- m_MatchTargetFields: 63
- m_Position: {x: 0, y: 0, z: 0}
- m_EulerAngles: {x: 0, y: 0, z: 0}
- m_AvatarMask: {fileID: 0}
- m_ApplyAvatarMask: 1
- m_TrackOffset: 0
- m_InfiniteClip: {fileID: 1541220652962846121}
- m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
- m_Rotation: {x: 0, y: 0, z: 0, w: 1}
- m_ApplyOffsets: 0
- --- !u!114 &3618470015436437293
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
- m_Name: Animation Track (1)
- m_EditorClassIdentifier:
- m_Version: 3
- m_AnimClip: {fileID: 0}
- m_Locked: 0
- m_Muted: 0
- m_CustomPlayableFullTypename:
- m_Curves: {fileID: 0}
- m_Parent: {fileID: 6074841118104965154}
- m_Children: []
- m_Clips:
- - m_Version: 1
- m_Start: 0
- m_ClipIn: 0
- m_Asset: {fileID: 2590790698090210262}
- m_Duration: 5
- m_TimeScale: 1
- m_ParentTrack: {fileID: 3618470015436437293}
- m_EaseInDuration: 0
- m_EaseOutDuration: 0
- m_BlendInDuration: -1
- m_BlendOutDuration: -1
- m_MixInCurve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- - serializedVersion: 3
- time: 1
- value: 1
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- m_MixOutCurve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 1
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- - serializedVersion: 3
- time: 1
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- m_BlendInCurveMode: 0
- m_BlendOutCurveMode: 0
- m_ExposedParameterNames: []
- m_AnimationCurves: {fileID: 0}
- m_Recordable: 0
- m_PostExtrapolationMode: 1
- m_PreExtrapolationMode: 1
- m_PostExtrapolationTime: Infinity
- m_PreExtrapolationTime: 0
- m_DisplayName: fbb_run
- m_Markers:
- m_Objects: []
- m_InfiniteClipPreExtrapolation: 0
- m_InfiniteClipPostExtrapolation: 0
- m_InfiniteClipOffsetPosition: {x: 0, y: 0, z: 0}
- m_InfiniteClipOffsetEulerAngles: {x: 0, y: 0, z: 0}
- m_InfiniteClipTimeOffset: 0
- m_InfiniteClipRemoveOffset: 0
- m_InfiniteClipApplyFootIK: 1
- mInfiniteClipLoop: 0
- m_MatchTargetFields: 63
- m_Position: {x: 0, y: 0, z: 0}
- m_EulerAngles: {x: 0, y: 0, z: 0}
- m_AvatarMask: {fileID: 0}
- m_ApplyAvatarMask: 1
- m_TrackOffset: 0
- m_InfiniteClip: {fileID: 0}
- m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
- m_Rotation: {x: 0, y: 0, z: 0, w: 1}
- m_ApplyOffsets: 0
- --- !u!114 &4704763729273551873
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
- m_Name: Animation Track (1)
- m_EditorClassIdentifier:
- m_Version: 3
- m_AnimClip: {fileID: 0}
- m_Locked: 0
- m_Muted: 0
- m_CustomPlayableFullTypename:
- m_Curves: {fileID: 0}
- m_Parent: {fileID: 7508097628744153295}
- m_Children: []
- m_Clips:
- - m_Version: 1
- m_Start: 0
- m_ClipIn: 0
- m_Asset: {fileID: 5490159142341179339}
- m_Duration: 10
- m_TimeScale: 1
- m_ParentTrack: {fileID: 4704763729273551873}
- m_EaseInDuration: 0
- m_EaseOutDuration: 0
- m_BlendInDuration: -1
- m_BlendOutDuration: -1
- m_MixInCurve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- - serializedVersion: 3
- time: 1
- value: 1
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- m_MixOutCurve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 1
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- - serializedVersion: 3
- time: 1
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- m_BlendInCurveMode: 0
- m_BlendOutCurveMode: 0
- m_ExposedParameterNames: []
- m_AnimationCurves: {fileID: 0}
- m_Recordable: 0
- m_PostExtrapolationMode: 1
- m_PreExtrapolationMode: 1
- m_PostExtrapolationTime: Infinity
- m_PreExtrapolationTime: 0
- m_DisplayName: fba_run
- m_Markers:
- m_Objects: []
- m_InfiniteClipPreExtrapolation: 0
- m_InfiniteClipPostExtrapolation: 0
- m_InfiniteClipOffsetPosition: {x: 0, y: 0, z: 0}
- m_InfiniteClipOffsetEulerAngles: {x: 0, y: 0, z: 0}
- m_InfiniteClipTimeOffset: 0
- m_InfiniteClipRemoveOffset: 0
- m_InfiniteClipApplyFootIK: 1
- mInfiniteClipLoop: 0
- m_MatchTargetFields: 63
- m_Position: {x: 0, y: 0, z: 0}
- m_EulerAngles: {x: 0, y: 0, z: 0}
- m_AvatarMask: {fileID: 0}
- m_ApplyAvatarMask: 1
- m_TrackOffset: 0
- m_InfiniteClip: {fileID: 0}
- m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
- m_Rotation: {x: 0, y: 0, z: 0, w: 1}
- m_ApplyOffsets: 0
- --- !u!114 &4838567273112702370
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
- m_Name: Animation Track
- m_EditorClassIdentifier:
- m_Version: 3
- m_AnimClip: {fileID: 0}
- m_Locked: 0
- m_Muted: 0
- m_CustomPlayableFullTypename:
- m_Curves: {fileID: 0}
- m_Parent: {fileID: 6074841118104965154}
- m_Children: []
- m_Clips: []
- m_Markers:
- m_Objects: []
- m_InfiniteClipPreExtrapolation: 1
- m_InfiniteClipPostExtrapolation: 1
- m_InfiniteClipOffsetPosition: {x: 0.46, y: -1.26, z: 12.373}
- m_InfiniteClipOffsetEulerAngles: {x: -0, y: 0, z: 0}
- m_InfiniteClipTimeOffset: 0
- m_InfiniteClipRemoveOffset: 0
- m_InfiniteClipApplyFootIK: 1
- mInfiniteClipLoop: 0
- m_MatchTargetFields: 63
- m_Position: {x: 0, y: 0, z: 0}
- m_EulerAngles: {x: 0, y: 0, z: 0}
- m_AvatarMask: {fileID: 0}
- m_ApplyAvatarMask: 1
- m_TrackOffset: 0
- m_InfiniteClip: {fileID: -8811015249955876618}
- m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
- m_Rotation: {x: 0, y: 0, z: 0, w: 1}
- m_ApplyOffsets: 0
- --- !u!114 &5490159142341179339
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 030f85c3f73729f4f976f66ffb23b875, type: 3}
- m_Name: AnimationPlayableAsset
- m_EditorClassIdentifier:
- m_Clip: {fileID: 7400000, guid: 4e461f9d281f1b44a8a74eacd739c107, type: 2}
- m_Position: {x: 0, y: 0, z: 0}
- m_EulerAngles: {x: 0, y: 0, z: 0}
- m_UseTrackMatchFields: 1
- m_MatchTargetFields: 63
- m_RemoveStartOffset: 1
- m_ApplyFootIK: 1
- m_Loop: 0
- m_Version: 1
- m_Rotation: {x: 0, y: 0, z: 0, w: 1}
- --- !u!114 &6074841118104965154
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: d0fc6f5187a81dc47999eefade6f0935, type: 3}
- m_Name: "\u6CD5\u5B9Db"
- m_EditorClassIdentifier:
- m_Version: 3
- m_AnimClip: {fileID: 0}
- m_Locked: 0
- m_Muted: 0
- m_CustomPlayableFullTypename:
- m_Curves: {fileID: 0}
- m_Parent: {fileID: 11400000}
- m_Children:
- - {fileID: 4838567273112702370}
- - {fileID: 3618470015436437293}
- m_Clips: []
- m_Markers:
- m_Objects: []
- --- !u!114 &6234116319914202816
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: fde0d25a170598d46a0b9dc16b4527a5, type: 3}
- m_Name: ActivationPlayableAsset
- m_EditorClassIdentifier:
- --- !u!114 &7404103914530714532
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 48853ae485fa386428341ac1ea122570, type: 3}
- m_Name: ControlPlayableAsset
- m_EditorClassIdentifier:
- sourceGameObject:
- exposedName: 716c5cdbcb192f448ae1f6e52b00d32e
- defaultValue: {fileID: 0}
- prefabGameObject: {fileID: 0}
- updateParticle: 1
- particleRandomSeed: 2850
- updateDirector: 1
- updateITimeControl: 1
- searchHierarchy: 1
- active: 1
- postPlayback: 2
- --- !u!114 &7508097628744153295
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: d0fc6f5187a81dc47999eefade6f0935, type: 3}
- m_Name: "\u6CD5\u5B9Da"
- m_EditorClassIdentifier:
- m_Version: 3
- m_AnimClip: {fileID: 0}
- m_Locked: 0
- m_Muted: 0
- m_CustomPlayableFullTypename:
- m_Curves: {fileID: 0}
- m_Parent: {fileID: 11400000}
- m_Children:
- - {fileID: 2849662949139851895}
- - {fileID: 4704763729273551873}
- m_Clips: []
- m_Markers:
- m_Objects: []
- --- !u!114 &7805773184835934395
- MonoBehaviour:
- m_ObjectHideFlags: 1
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 21bf7f712d84d26478ebe6a299f21738, type: 3}
- m_Name: Activation Track
- m_EditorClassIdentifier:
- m_Version: 3
- m_AnimClip: {fileID: 0}
- m_Locked: 0
- m_Muted: 0
- m_CustomPlayableFullTypename:
- m_Curves: {fileID: 0}
- m_Parent: {fileID: 11400000}
- m_Children: []
- m_Clips:
- - m_Version: 1
- m_Start: 0
- m_ClipIn: 0
- m_Asset: {fileID: 6234116319914202816}
- m_Duration: 10
- m_TimeScale: 1
- m_ParentTrack: {fileID: 7805773184835934395}
- m_EaseInDuration: 0
- m_EaseOutDuration: 0
- m_BlendInDuration: 0
- m_BlendOutDuration: 0
- m_MixInCurve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- - serializedVersion: 3
- time: 1
- value: 1
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- m_MixOutCurve:
- serializedVersion: 2
- m_Curve:
- - serializedVersion: 3
- time: 0
- value: 1
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- - serializedVersion: 3
- time: 1
- value: 0
- inSlope: 0
- outSlope: 0
- tangentMode: 0
- weightedMode: 0
- inWeight: 0
- outWeight: 0
- m_PreInfinity: 2
- m_PostInfinity: 2
- m_RotationOrder: 4
- m_BlendInCurveMode: 0
- m_BlendOutCurveMode: 0
- m_ExposedParameterNames: []
- m_AnimationCurves: {fileID: 0}
- m_Recordable: 0
- m_PostExtrapolationMode: 0
- m_PreExtrapolationMode: 0
- m_PostExtrapolationTime: 0
- m_PreExtrapolationTime: 0
- m_DisplayName: Active
- m_Markers:
- m_Objects: []
- m_PostPlaybackState: 3
|