SecondaryWeaponShotU.anim 131 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908
  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: SecondaryWeaponShotU
  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. - curve:
  18. serializedVersion: 2
  19. m_Curve:
  20. - serializedVersion: 3
  21. time: 0
  22. value: {x: 0, y: 0, z: 0}
  23. inSlope: {x: 0, y: 0, z: 0}
  24. outSlope: {x: 0, y: 0, z: 0}
  25. tangentMode: 0
  26. weightedMode: 0
  27. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  28. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  29. - serializedVersion: 3
  30. time: 0.083333336
  31. value: {x: 0, y: 0, z: 70}
  32. inSlope: {x: 0, y: 0, z: 0}
  33. outSlope: {x: 0, y: 0, z: 0}
  34. tangentMode: 0
  35. weightedMode: 0
  36. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  37. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  38. - serializedVersion: 3
  39. time: 0.25
  40. value: {x: 0, y: 0, z: 70}
  41. inSlope: {x: 0, y: 0, z: 0}
  42. outSlope: {x: 0, y: 0, z: 0}
  43. tangentMode: 0
  44. weightedMode: 0
  45. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  46. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  47. - serializedVersion: 3
  48. time: 0.33333334
  49. value: {x: 0, y: 0, z: 70}
  50. inSlope: {x: 0, y: 0, z: 0}
  51. outSlope: {x: 0, y: 0, z: 0}
  52. tangentMode: 0
  53. weightedMode: 0
  54. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  55. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  56. - serializedVersion: 3
  57. time: 0.41666666
  58. value: {x: 0, y: 0, z: 90}
  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.5
  67. value: {x: 0, y: 0, z: 70}
  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. - serializedVersion: 3
  75. time: 0.5833333
  76. value: {x: 0, y: 0, z: 70}
  77. inSlope: {x: 0, y: 0, z: 0}
  78. outSlope: {x: 0, y: 0, z: 0}
  79. tangentMode: 0
  80. weightedMode: 0
  81. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  82. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  83. - serializedVersion: 3
  84. time: 0.6666667
  85. value: {x: 0, y: 0, z: 0}
  86. inSlope: {x: 0, y: 0, z: 0}
  87. outSlope: {x: 0, y: 0, z: 0}
  88. tangentMode: 0
  89. weightedMode: 0
  90. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  91. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  92. m_PreInfinity: 2
  93. m_PostInfinity: 2
  94. m_RotationOrder: 4
  95. path: Right/UpperBody/ArmLAnchor/ArmL
  96. - curve:
  97. serializedVersion: 2
  98. m_Curve:
  99. - serializedVersion: 3
  100. time: 0
  101. value: {x: 0, y: 0, z: 0}
  102. inSlope: {x: 0, y: 0, z: 0}
  103. outSlope: {x: 0, y: 0, z: 0}
  104. tangentMode: 0
  105. weightedMode: 0
  106. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  107. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  108. - serializedVersion: 3
  109. time: 0.083333336
  110. value: {x: 0, y: 0, z: 0}
  111. inSlope: {x: 0, y: 0, z: 0}
  112. outSlope: {x: 0, y: 0, z: 0}
  113. tangentMode: 0
  114. weightedMode: 0
  115. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  116. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  117. - serializedVersion: 3
  118. time: 0.25
  119. value: {x: 0, y: 0, z: -50}
  120. inSlope: {x: 0, y: 0, z: 0}
  121. outSlope: {x: 0, y: 0, z: 0}
  122. tangentMode: 0
  123. weightedMode: 0
  124. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  125. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  126. - serializedVersion: 3
  127. time: 0.33333334
  128. value: {x: 0, y: 0, z: -50}
  129. inSlope: {x: 0, y: 0, z: 0}
  130. outSlope: {x: 0, y: 0, z: 0}
  131. tangentMode: 0
  132. weightedMode: 0
  133. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  134. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  135. - serializedVersion: 3
  136. time: 0.41666666
  137. value: {x: 0, y: 0, z: -30}
  138. inSlope: {x: 0, y: 0, z: 0}
  139. outSlope: {x: 0, y: 0, z: 0}
  140. tangentMode: 0
  141. weightedMode: 0
  142. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  143. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  144. - serializedVersion: 3
  145. time: 0.5
  146. value: {x: 0, y: 0, z: -50}
  147. inSlope: {x: 0, y: 0, z: 0}
  148. outSlope: {x: 0, y: 0, z: 0}
  149. tangentMode: 0
  150. weightedMode: 0
  151. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  152. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  153. - serializedVersion: 3
  154. time: 0.5833333
  155. value: {x: 0, y: 0, z: -50}
  156. inSlope: {x: 0, y: 0, z: 0}
  157. outSlope: {x: 0, y: 0, z: 0}
  158. tangentMode: 0
  159. weightedMode: 0
  160. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  161. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  162. - serializedVersion: 3
  163. time: 0.6666667
  164. value: {x: 0, y: 0, z: 0}
  165. inSlope: {x: 0, y: 0, z: 0}
  166. outSlope: {x: 0, y: 0, z: 0}
  167. tangentMode: 0
  168. weightedMode: 0
  169. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  170. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  171. m_PreInfinity: 2
  172. m_PostInfinity: 2
  173. m_RotationOrder: 4
  174. path: Right/UpperBody/ArmLAnchor/ArmL/HandL
  175. - curve:
  176. serializedVersion: 2
  177. m_Curve:
  178. - serializedVersion: 3
  179. time: 0
  180. value: {x: 0, y: 0, z: 0}
  181. inSlope: {x: 0, y: 0, z: 0}
  182. outSlope: {x: 0, y: 0, z: 0}
  183. tangentMode: 0
  184. weightedMode: 0
  185. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  186. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  187. - serializedVersion: 3
  188. time: 0.33333334
  189. value: {x: 0, y: 0, z: 0}
  190. inSlope: {x: 0, y: 0, z: 0}
  191. outSlope: {x: 0, y: 0, z: 0}
  192. tangentMode: 0
  193. weightedMode: 0
  194. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  195. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  196. - serializedVersion: 3
  197. time: 0.41666666
  198. value: {x: 0, y: 0, z: 10}
  199. inSlope: {x: 0, y: 0, z: 0}
  200. outSlope: {x: 0, y: 0, z: 0}
  201. tangentMode: 0
  202. weightedMode: 0
  203. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  204. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  205. - serializedVersion: 3
  206. time: 0.5
  207. value: {x: 0, y: 0, z: 0}
  208. inSlope: {x: 0, y: 0, z: 0}
  209. outSlope: {x: 0, y: 0, z: 0}
  210. tangentMode: 0
  211. weightedMode: 0
  212. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  213. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  214. - serializedVersion: 3
  215. time: 0.6666667
  216. value: {x: 0, y: 0, z: 0}
  217. inSlope: {x: 0, y: 0, z: 0}
  218. outSlope: {x: 0, y: 0, z: 0}
  219. tangentMode: 0
  220. weightedMode: 0
  221. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  222. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  223. m_PreInfinity: 2
  224. m_PostInfinity: 2
  225. m_RotationOrder: 4
  226. path: Right/UpperBody
  227. - curve:
  228. serializedVersion: 2
  229. m_Curve:
  230. - serializedVersion: 3
  231. time: 0
  232. value: {x: 0, y: 0, z: 0}
  233. inSlope: {x: 0, y: 0, z: 0}
  234. outSlope: {x: 0, y: 0, z: 0}
  235. tangentMode: 0
  236. weightedMode: 0
  237. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  238. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  239. - serializedVersion: 3
  240. time: 0.33333334
  241. value: {x: 0, y: 0, z: -20}
  242. inSlope: {x: 0, y: 0, z: 0}
  243. outSlope: {x: 0, y: 0, z: 0}
  244. tangentMode: 0
  245. weightedMode: 0
  246. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  247. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  248. - serializedVersion: 3
  249. time: 0.5833333
  250. value: {x: 0, y: 0, z: -20}
  251. inSlope: {x: 0, y: 0, z: 0}
  252. outSlope: {x: 0, y: 0, z: 0}
  253. tangentMode: 0
  254. weightedMode: 0
  255. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  256. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  257. - serializedVersion: 3
  258. time: 0.6666667
  259. value: {x: 0, y: 0, z: 0}
  260. inSlope: {x: 0, y: 0, z: 0}
  261. outSlope: {x: 0, y: 0, z: 0}
  262. tangentMode: 0
  263. weightedMode: 0
  264. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  265. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  266. m_PreInfinity: 2
  267. m_PostInfinity: 2
  268. m_RotationOrder: 4
  269. path: Right/UpperBody/ArmRAnchor/ArmR
  270. - curve:
  271. serializedVersion: 2
  272. m_Curve:
  273. - serializedVersion: 3
  274. time: 0
  275. value: {x: 0, y: 0, z: 0}
  276. inSlope: {x: 0, y: 0, z: 0}
  277. outSlope: {x: 0, y: 0, z: 0}
  278. tangentMode: 0
  279. weightedMode: 0
  280. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  281. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  282. - serializedVersion: 3
  283. time: 0.33333334
  284. value: {x: 0, y: 0, z: -5}
  285. inSlope: {x: 0, y: 0, z: 0}
  286. outSlope: {x: 0, y: 0, z: 0}
  287. tangentMode: 0
  288. weightedMode: 0
  289. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  290. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  291. - serializedVersion: 3
  292. time: 0.41666666
  293. value: {x: 0, y: 0, z: 0}
  294. inSlope: {x: 0, y: 0, z: 0}
  295. outSlope: {x: 0, y: 0, z: 0}
  296. tangentMode: 0
  297. weightedMode: 0
  298. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  299. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  300. - serializedVersion: 3
  301. time: 0.6666667
  302. value: {x: 0, y: 0, z: 0}
  303. inSlope: {x: 0, y: 0, z: 0}
  304. outSlope: {x: 0, y: 0, z: 0}
  305. tangentMode: 0
  306. weightedMode: 0
  307. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  308. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  309. m_PreInfinity: 2
  310. m_PostInfinity: 2
  311. m_RotationOrder: 4
  312. path: Right/UpperBody/HeadAnchor/Head
  313. - curve:
  314. serializedVersion: 2
  315. m_Curve:
  316. - serializedVersion: 3
  317. time: 0
  318. value: {x: 0, y: 0, z: 0}
  319. inSlope: {x: 0, y: 0, z: 0}
  320. outSlope: {x: 0, y: 0, z: 0}
  321. tangentMode: 0
  322. weightedMode: 0
  323. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  324. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  325. - serializedVersion: 3
  326. time: 0.083333336
  327. value: {x: 0, y: 0, z: -70}
  328. inSlope: {x: 0, y: 0, z: 0}
  329. outSlope: {x: 0, y: 0, z: 0}
  330. tangentMode: 0
  331. weightedMode: 0
  332. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  333. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  334. - serializedVersion: 3
  335. time: 0.25
  336. value: {x: 0, y: 0, z: -70}
  337. inSlope: {x: 0, y: 0, z: 0}
  338. outSlope: {x: 0, y: 0, z: 0}
  339. tangentMode: 0
  340. weightedMode: 0
  341. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  342. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  343. - serializedVersion: 3
  344. time: 0.33333334
  345. value: {x: 0, y: 0, z: -70}
  346. inSlope: {x: 0, y: 0, z: 0}
  347. outSlope: {x: 0, y: 0, z: 0}
  348. tangentMode: 0
  349. weightedMode: 0
  350. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  351. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  352. - serializedVersion: 3
  353. time: 0.41666666
  354. value: {x: 0, y: 0, z: -90}
  355. inSlope: {x: 0, y: 0, z: 0}
  356. outSlope: {x: 0, y: 0, z: 0}
  357. tangentMode: 0
  358. weightedMode: 0
  359. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  360. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  361. - serializedVersion: 3
  362. time: 0.5
  363. value: {x: 0, y: 0, z: -70}
  364. inSlope: {x: 0, y: 0, z: 0}
  365. outSlope: {x: 0, y: 0, z: 0}
  366. tangentMode: 0
  367. weightedMode: 0
  368. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  369. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  370. - serializedVersion: 3
  371. time: 0.5833333
  372. value: {x: 0, y: 0, z: -70}
  373. inSlope: {x: 0, y: 0, z: 0}
  374. outSlope: {x: 0, y: 0, z: 0}
  375. tangentMode: 0
  376. weightedMode: 0
  377. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  378. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  379. - serializedVersion: 3
  380. time: 0.6666667
  381. value: {x: 0, y: 0, z: 0}
  382. inSlope: {x: 0, y: 0, z: 0}
  383. outSlope: {x: 0, y: 0, z: 0}
  384. tangentMode: 0
  385. weightedMode: 0
  386. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  387. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  388. m_PreInfinity: 2
  389. m_PostInfinity: 2
  390. m_RotationOrder: 4
  391. path: Left/UpperBody/ArmLAnchor/ArmL
  392. - curve:
  393. serializedVersion: 2
  394. m_Curve:
  395. - serializedVersion: 3
  396. time: 0
  397. value: {x: 0, y: 0, z: 0}
  398. inSlope: {x: 0, y: 0, z: 0}
  399. outSlope: {x: 0, y: 0, z: 0}
  400. tangentMode: 0
  401. weightedMode: 0
  402. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  403. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  404. - serializedVersion: 3
  405. time: 0.083333336
  406. value: {x: 0, y: 0, z: 0}
  407. inSlope: {x: 0, y: 0, z: 0}
  408. outSlope: {x: 0, y: 0, z: 0}
  409. tangentMode: 0
  410. weightedMode: 0
  411. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  412. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  413. - serializedVersion: 3
  414. time: 0.25
  415. value: {x: 0, y: 0, z: 50}
  416. inSlope: {x: 0, y: 0, z: 0}
  417. outSlope: {x: 0, y: 0, z: 0}
  418. tangentMode: 0
  419. weightedMode: 0
  420. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  421. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  422. - serializedVersion: 3
  423. time: 0.33333334
  424. value: {x: 0, y: 0, z: 50}
  425. inSlope: {x: 0, y: 0, z: 0}
  426. outSlope: {x: 0, y: 0, z: 0}
  427. tangentMode: 0
  428. weightedMode: 0
  429. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  430. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  431. - serializedVersion: 3
  432. time: 0.41666666
  433. value: {x: 0, y: 0, z: 30}
  434. inSlope: {x: 0, y: 0, z: 0}
  435. outSlope: {x: 0, y: 0, z: 0}
  436. tangentMode: 0
  437. weightedMode: 0
  438. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  439. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  440. - serializedVersion: 3
  441. time: 0.5
  442. value: {x: 0, y: 0, z: 50}
  443. inSlope: {x: 0, y: 0, z: 0}
  444. outSlope: {x: 0, y: 0, z: 0}
  445. tangentMode: 0
  446. weightedMode: 0
  447. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  448. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  449. - serializedVersion: 3
  450. time: 0.5833333
  451. value: {x: 0, y: 0, z: 50}
  452. inSlope: {x: 0, y: 0, z: 0}
  453. outSlope: {x: 0, y: 0, z: 0}
  454. tangentMode: 0
  455. weightedMode: 0
  456. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  457. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  458. - serializedVersion: 3
  459. time: 0.6666667
  460. value: {x: 0, y: 0, z: 0}
  461. inSlope: {x: 0, y: 0, z: 0}
  462. outSlope: {x: 0, y: 0, z: 0}
  463. tangentMode: 0
  464. weightedMode: 0
  465. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  466. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  467. m_PreInfinity: 2
  468. m_PostInfinity: 2
  469. m_RotationOrder: 4
  470. path: Left/UpperBody/ArmLAnchor/ArmL/HandL
  471. - curve:
  472. serializedVersion: 2
  473. m_Curve:
  474. - serializedVersion: 3
  475. time: 0
  476. value: {x: 0, y: 0, z: 0}
  477. inSlope: {x: 0, y: 0, z: 0}
  478. outSlope: {x: 0, y: 0, z: 0}
  479. tangentMode: 0
  480. weightedMode: 0
  481. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  482. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  483. - serializedVersion: 3
  484. time: 0.25
  485. value: {x: 0, y: 0, z: 0}
  486. inSlope: {x: 0, y: 0, z: 0}
  487. outSlope: {x: 0, y: 0, z: 0}
  488. tangentMode: 0
  489. weightedMode: 0
  490. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  491. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  492. - serializedVersion: 3
  493. time: 0.33333334
  494. value: {x: 0, y: 0, z: 0}
  495. inSlope: {x: 0, y: 0, z: 0}
  496. outSlope: {x: 0, y: 0, z: 0}
  497. tangentMode: 0
  498. weightedMode: 0
  499. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  500. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  501. - serializedVersion: 3
  502. time: 0.41666666
  503. value: {x: 0, y: 0, z: -10}
  504. inSlope: {x: 0, y: 0, z: 0}
  505. outSlope: {x: 0, y: 0, z: 0}
  506. tangentMode: 0
  507. weightedMode: 0
  508. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  509. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  510. - serializedVersion: 3
  511. time: 0.5
  512. value: {x: 0, y: 0, z: 0}
  513. inSlope: {x: 0, y: 0, z: 0}
  514. outSlope: {x: 0, y: 0, z: 0}
  515. tangentMode: 0
  516. weightedMode: 0
  517. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  518. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  519. - serializedVersion: 3
  520. time: 0.6666667
  521. value: {x: 0, y: 0, z: 0}
  522. inSlope: {x: 0, y: 0, z: 0}
  523. outSlope: {x: 0, y: 0, z: 0}
  524. tangentMode: 0
  525. weightedMode: 0
  526. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  527. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  528. m_PreInfinity: 2
  529. m_PostInfinity: 2
  530. m_RotationOrder: 4
  531. path: Left/UpperBody
  532. - curve:
  533. serializedVersion: 2
  534. m_Curve:
  535. - serializedVersion: 3
  536. time: 0
  537. value: {x: 0, y: 0, z: 0}
  538. inSlope: {x: 0, y: 0, z: 0}
  539. outSlope: {x: 0, y: 0, z: 0}
  540. tangentMode: 0
  541. weightedMode: 0
  542. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  543. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  544. - serializedVersion: 3
  545. time: 0.33333334
  546. value: {x: 0, y: 0, z: 5}
  547. inSlope: {x: 0, y: 0, z: 0}
  548. outSlope: {x: 0, y: 0, z: 0}
  549. tangentMode: 0
  550. weightedMode: 0
  551. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  552. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  553. - serializedVersion: 3
  554. time: 0.41666666
  555. value: {x: 0, y: 0, z: 0}
  556. inSlope: {x: 0, y: 0, z: 0}
  557. outSlope: {x: 0, y: 0, z: 0}
  558. tangentMode: 0
  559. weightedMode: 0
  560. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  561. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  562. - serializedVersion: 3
  563. time: 0.6666667
  564. value: {x: 0, y: 0, z: 0}
  565. inSlope: {x: 0, y: 0, z: 0}
  566. outSlope: {x: 0, y: 0, z: 0}
  567. tangentMode: 0
  568. weightedMode: 0
  569. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  570. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  571. m_PreInfinity: 2
  572. m_PostInfinity: 2
  573. m_RotationOrder: 4
  574. path: Left/UpperBody/HeadAnchor/Head
  575. - curve:
  576. serializedVersion: 2
  577. m_Curve:
  578. - serializedVersion: 3
  579. time: 0
  580. value: {x: 0, y: 0, z: 0}
  581. inSlope: {x: 0, y: 0, z: 0}
  582. outSlope: {x: 0, y: 0, z: 0}
  583. tangentMode: 0
  584. weightedMode: 0
  585. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  586. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  587. - serializedVersion: 3
  588. time: 0.5833333
  589. value: {x: 0, y: 0, z: 20}
  590. inSlope: {x: 0, y: 0, z: 0}
  591. outSlope: {x: 0, y: 0, z: 0}
  592. tangentMode: 0
  593. weightedMode: 0
  594. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  595. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  596. m_PreInfinity: 2
  597. m_PostInfinity: 2
  598. m_RotationOrder: 4
  599. path: Left/UpperBody/ArmRAnchor/ArmR
  600. - curve:
  601. serializedVersion: 2
  602. m_Curve:
  603. - serializedVersion: 3
  604. time: 0
  605. value: {x: 0, y: 0, z: 20}
  606. inSlope: {x: 0, y: 0, z: 0}
  607. outSlope: {x: 0, y: 0, z: 0}
  608. tangentMode: 0
  609. weightedMode: 0
  610. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  611. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  612. - serializedVersion: 3
  613. time: 0.083333336
  614. value: {x: 0, y: 0, z: 0}
  615. inSlope: {x: 0, y: 0, z: 0}
  616. outSlope: {x: 0, y: 0, z: 0}
  617. tangentMode: 0
  618. weightedMode: 0
  619. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  620. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  621. - serializedVersion: 3
  622. time: 0.25
  623. value: {x: 0, y: 0, z: 0}
  624. inSlope: {x: 0, y: 0, z: 0}
  625. outSlope: {x: 0, y: 0, z: 0}
  626. tangentMode: 0
  627. weightedMode: 0
  628. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  629. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  630. - serializedVersion: 3
  631. time: 0.33333334
  632. value: {x: 0, y: 0, z: 0}
  633. inSlope: {x: 0, y: 0, z: 0}
  634. outSlope: {x: 0, y: 0, z: 0}
  635. tangentMode: 0
  636. weightedMode: 0
  637. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  638. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  639. - serializedVersion: 3
  640. time: 0.5
  641. value: {x: 0, y: 0, z: 0}
  642. inSlope: {x: 0, y: 0, z: 0}
  643. outSlope: {x: 0, y: 0, z: 0}
  644. tangentMode: 0
  645. weightedMode: 0
  646. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  647. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  648. - serializedVersion: 3
  649. time: 0.6666667
  650. value: {x: 0, y: 0, z: 20}
  651. inSlope: {x: 0, y: 0, z: 0}
  652. outSlope: {x: 0, y: 0, z: 0}
  653. tangentMode: 0
  654. weightedMode: 0
  655. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  656. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  657. m_PreInfinity: 2
  658. m_PostInfinity: 2
  659. m_RotationOrder: 4
  660. path: Front/UpperBody/ArmLAnchor/ArmL
  661. - curve:
  662. serializedVersion: 2
  663. m_Curve:
  664. - serializedVersion: 3
  665. time: 0
  666. value: {x: 0, y: 0, z: 0}
  667. inSlope: {x: 0, y: 0, z: 0}
  668. outSlope: {x: 0, y: 0, z: 0}
  669. tangentMode: 0
  670. weightedMode: 0
  671. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  672. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  673. - serializedVersion: 3
  674. time: 0.25
  675. value: {x: 0, y: 0, z: 70}
  676. inSlope: {x: 0, y: 0, z: 0}
  677. outSlope: {x: 0, y: 0, z: 0}
  678. tangentMode: 0
  679. weightedMode: 0
  680. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  681. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  682. - serializedVersion: 3
  683. time: 0.33333334
  684. value: {x: 0, y: 0, z: 70}
  685. inSlope: {x: 0, y: 0, z: 0}
  686. outSlope: {x: 0, y: 0, z: 0}
  687. tangentMode: 0
  688. weightedMode: 0
  689. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  690. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  691. - serializedVersion: 3
  692. time: 0.41666666
  693. value: {x: 0, y: 0, z: 50}
  694. inSlope: {x: 0, y: 0, z: 0}
  695. outSlope: {x: 0, y: 0, z: 0}
  696. tangentMode: 0
  697. weightedMode: 0
  698. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  699. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  700. - serializedVersion: 3
  701. time: 0.5
  702. value: {x: 0, y: 0, z: 70}
  703. inSlope: {x: 0, y: 0, z: 0}
  704. outSlope: {x: 0, y: 0, z: 0}
  705. tangentMode: 0
  706. weightedMode: 0
  707. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  708. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  709. - serializedVersion: 3
  710. time: 0.6666667
  711. value: {x: 0, y: 0, z: 0}
  712. inSlope: {x: 0, y: 0, z: 0}
  713. outSlope: {x: 0, y: 0, z: 0}
  714. tangentMode: 0
  715. weightedMode: 0
  716. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  717. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  718. m_PreInfinity: 2
  719. m_PostInfinity: 2
  720. m_RotationOrder: 4
  721. path: Front/UpperBody/ArmLAnchor/ArmL/HandL
  722. - curve:
  723. serializedVersion: 2
  724. m_Curve:
  725. - serializedVersion: 3
  726. time: 0
  727. value: {x: 0, y: 0, z: -20}
  728. inSlope: {x: 0, y: 0, z: 0}
  729. outSlope: {x: 0, y: 0, z: 0}
  730. tangentMode: 0
  731. weightedMode: 0
  732. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  733. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  734. - serializedVersion: 3
  735. time: 0.083333336
  736. value: {x: 0, y: 0, z: 10}
  737. inSlope: {x: 0, y: 0, z: 0}
  738. outSlope: {x: 0, y: 0, z: 0}
  739. tangentMode: 0
  740. weightedMode: 0
  741. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  742. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  743. - serializedVersion: 3
  744. time: 0.25
  745. value: {x: 0, y: 0, z: 10}
  746. inSlope: {x: 0, y: 0, z: 0}
  747. outSlope: {x: 0, y: 0, z: 0}
  748. tangentMode: 0
  749. weightedMode: 0
  750. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  751. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  752. - serializedVersion: 3
  753. time: 0.33333334
  754. value: {x: 0, y: 0, z: 10}
  755. inSlope: {x: 0, y: 0, z: 0}
  756. outSlope: {x: 0, y: 0, z: 0}
  757. tangentMode: 0
  758. weightedMode: 0
  759. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  760. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  761. - serializedVersion: 3
  762. time: 0.41666666
  763. value: {x: 0, y: 0, z: 10}
  764. inSlope: {x: 0, y: 0, z: 0}
  765. outSlope: {x: 0, y: 0, z: 0}
  766. tangentMode: 0
  767. weightedMode: 0
  768. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  769. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  770. - serializedVersion: 3
  771. time: 0.5
  772. value: {x: 0, y: 0, z: 10}
  773. inSlope: {x: 0, y: 0, z: 0}
  774. outSlope: {x: 0, y: 0, z: 0}
  775. tangentMode: 0
  776. weightedMode: 0
  777. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  778. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  779. - serializedVersion: 3
  780. time: 0.6666667
  781. value: {x: 0, y: 0, z: -20}
  782. inSlope: {x: 0, y: 0, z: 0}
  783. outSlope: {x: 0, y: 0, z: 0}
  784. tangentMode: 0
  785. weightedMode: 0
  786. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  787. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  788. m_PreInfinity: 2
  789. m_PostInfinity: 2
  790. m_RotationOrder: 4
  791. path: Back/UpperBody/ArmLAnchor/ArmL
  792. - curve:
  793. serializedVersion: 2
  794. m_Curve:
  795. - serializedVersion: 3
  796. time: 0
  797. value: {x: 0, y: 0, z: 0}
  798. inSlope: {x: 0, y: 0, z: 0}
  799. outSlope: {x: 0, y: 0, z: 0}
  800. tangentMode: 0
  801. weightedMode: 0
  802. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  803. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  804. - serializedVersion: 3
  805. time: 0.33333334
  806. value: {x: 0, y: 0, z: 50}
  807. inSlope: {x: 0, y: 0, z: 0}
  808. outSlope: {x: 0, y: 0, z: 0}
  809. tangentMode: 0
  810. weightedMode: 0
  811. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  812. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  813. - serializedVersion: 3
  814. time: 0.41666666
  815. value: {x: 0, y: 0, z: 50}
  816. inSlope: {x: 0, y: 0, z: 0}
  817. outSlope: {x: 0, y: 0, z: 0}
  818. tangentMode: 0
  819. weightedMode: 0
  820. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  821. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  822. - serializedVersion: 3
  823. time: 0.5
  824. value: {x: 0, y: 0, z: 50}
  825. inSlope: {x: 0, y: 0, z: 0}
  826. outSlope: {x: 0, y: 0, z: 0}
  827. tangentMode: 0
  828. weightedMode: 0
  829. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  830. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  831. - serializedVersion: 3
  832. time: 0.6666667
  833. value: {x: 0, y: 0, z: 0}
  834. inSlope: {x: 0, y: 0, z: 0}
  835. outSlope: {x: 0, y: 0, z: 0}
  836. tangentMode: 0
  837. weightedMode: 0
  838. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  839. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  840. m_PreInfinity: 2
  841. m_PostInfinity: 2
  842. m_RotationOrder: 4
  843. path: Back/UpperBody/ArmLAnchor/ArmL/HandL
  844. m_PositionCurves:
  845. - curve:
  846. serializedVersion: 2
  847. m_Curve:
  848. - serializedVersion: 3
  849. time: 0
  850. value: {x: 0.15, y: 0.6, z: 0}
  851. inSlope: {x: 0, y: 0, z: 0}
  852. outSlope: {x: 0, y: 0, z: 0}
  853. tangentMode: 0
  854. weightedMode: 0
  855. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  856. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  857. - serializedVersion: 3
  858. time: 0.25
  859. value: {x: 0.15, y: 0.6, z: 0}
  860. inSlope: {x: 0, y: 0, z: 0}
  861. outSlope: {x: 0, y: 0, z: 0}
  862. tangentMode: 0
  863. weightedMode: 0
  864. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  865. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  866. - serializedVersion: 3
  867. time: 0.33333334
  868. value: {x: 0.15, y: 0.6, z: 0}
  869. inSlope: {x: 0, y: 0, z: 0}
  870. outSlope: {x: 0, y: 0, z: 0}
  871. tangentMode: 0
  872. weightedMode: 0
  873. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  874. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  875. - serializedVersion: 3
  876. time: 0.41666666
  877. value: {x: 0, y: 0.6, z: 0}
  878. inSlope: {x: 0, y: 0, z: 0}
  879. outSlope: {x: 0, y: 0, z: 0}
  880. tangentMode: 0
  881. weightedMode: 0
  882. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  883. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  884. - serializedVersion: 3
  885. time: 0.5
  886. value: {x: 0.15, y: 0.6, z: 0}
  887. inSlope: {x: 0, y: 0, z: 0}
  888. outSlope: {x: 0, y: 0, z: 0}
  889. tangentMode: 0
  890. weightedMode: 0
  891. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  892. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  893. - serializedVersion: 3
  894. time: 0.6666667
  895. value: {x: 0.15, y: 0.6, z: 0}
  896. inSlope: {x: 0, y: 0, z: 0}
  897. outSlope: {x: 0, y: 0, z: 0}
  898. tangentMode: 0
  899. weightedMode: 0
  900. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  901. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  902. m_PreInfinity: 2
  903. m_PostInfinity: 2
  904. m_RotationOrder: 4
  905. path: Right/UpperBody/ArmLAnchor/ArmL
  906. - curve:
  907. serializedVersion: 2
  908. m_Curve:
  909. - serializedVersion: 3
  910. time: 0
  911. value: {x: 0.45, y: 0.54999995, z: 0}
  912. inSlope: {x: 0, y: 0, z: 0}
  913. outSlope: {x: 0, y: 0, z: 0}
  914. tangentMode: 0
  915. weightedMode: 0
  916. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  917. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  918. - serializedVersion: 3
  919. time: 0.33333334
  920. value: {x: 0.45, y: 0.55, z: 0}
  921. inSlope: {x: 0, y: 0.00000057220467, z: 0}
  922. outSlope: {x: 0, y: 0.00000057220467, z: 0}
  923. tangentMode: 0
  924. weightedMode: 0
  925. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  926. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  927. - serializedVersion: 3
  928. time: 0.41666666
  929. value: {x: 0.45, y: 0.65, z: 0}
  930. inSlope: {x: 0, y: 0, z: 0}
  931. outSlope: {x: 0, y: 0, z: 0}
  932. tangentMode: 0
  933. weightedMode: 0
  934. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  935. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  936. - serializedVersion: 3
  937. time: 0.5
  938. value: {x: 0.45, y: 0.55, z: 0}
  939. inSlope: {x: 0, y: 0, z: 0}
  940. outSlope: {x: 0, y: 0, z: 0}
  941. tangentMode: 0
  942. weightedMode: 0
  943. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  944. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  945. m_PreInfinity: 2
  946. m_PostInfinity: 2
  947. m_RotationOrder: 4
  948. path: Front/UpperBody/ArmLAnchor/ArmL
  949. - curve:
  950. serializedVersion: 2
  951. m_Curve:
  952. - serializedVersion: 3
  953. time: 0
  954. value: {x: 0, y: 0.9, z: 0}
  955. inSlope: {x: 0, y: 0, z: 0}
  956. outSlope: {x: 0, y: 0, z: 0}
  957. tangentMode: 0
  958. weightedMode: 0
  959. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  960. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  961. - serializedVersion: 3
  962. time: 0.25
  963. value: {x: 0, y: 0.8, z: 0}
  964. inSlope: {x: 0, y: 0, z: 0}
  965. outSlope: {x: 0, y: 0, z: 0}
  966. tangentMode: 0
  967. weightedMode: 0
  968. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  969. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  970. - serializedVersion: 3
  971. time: 0.33333334
  972. value: {x: 0, y: 0.8, z: 0}
  973. inSlope: {x: 0, y: 0, z: 0}
  974. outSlope: {x: 0, y: 0, z: 0}
  975. tangentMode: 0
  976. weightedMode: 0
  977. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  978. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  979. - serializedVersion: 3
  980. time: 0.41666666
  981. value: {x: 0, y: 0.95, z: 0}
  982. inSlope: {x: 0, y: 0, z: 0}
  983. outSlope: {x: 0, y: 0, z: 0}
  984. tangentMode: 0
  985. weightedMode: 0
  986. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  987. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  988. - serializedVersion: 3
  989. time: 0.5
  990. value: {x: 0, y: 0.9, z: 0}
  991. inSlope: {x: 0, y: 0, z: 0}
  992. outSlope: {x: 0, y: 0, z: 0}
  993. tangentMode: 0
  994. weightedMode: 0
  995. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  996. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  997. m_PreInfinity: 2
  998. m_PostInfinity: 2
  999. m_RotationOrder: 4
  1000. path: Front/UpperBody/HeadAnchor/Head
  1001. - curve:
  1002. serializedVersion: 2
  1003. m_Curve:
  1004. - serializedVersion: 3
  1005. time: 0
  1006. value: {x: 0, y: 0.9, z: 0}
  1007. inSlope: {x: 0, y: 0, z: 0}
  1008. outSlope: {x: 0, y: 0, z: 0}
  1009. tangentMode: 0
  1010. weightedMode: 0
  1011. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1012. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1013. - serializedVersion: 3
  1014. time: 0.25
  1015. value: {x: 0, y: 0.8, z: 0}
  1016. inSlope: {x: 0, y: 0, z: 0}
  1017. outSlope: {x: 0, y: 0, z: 0}
  1018. tangentMode: 0
  1019. weightedMode: 0
  1020. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1021. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1022. - serializedVersion: 3
  1023. time: 0.33333334
  1024. value: {x: 0, y: 0.8, z: 0}
  1025. inSlope: {x: 0, y: 0, z: 0}
  1026. outSlope: {x: 0, y: 0, z: 0}
  1027. tangentMode: 0
  1028. weightedMode: 0
  1029. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1030. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1031. - serializedVersion: 3
  1032. time: 0.41666666
  1033. value: {x: 0, y: 0.95, z: 0}
  1034. inSlope: {x: 0, y: 0, z: 0}
  1035. outSlope: {x: 0, y: 0, z: 0}
  1036. tangentMode: 0
  1037. weightedMode: 0
  1038. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1039. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1040. - serializedVersion: 3
  1041. time: 0.5
  1042. value: {x: 0, y: 0.9, z: 0}
  1043. inSlope: {x: 0, y: 0, z: 0}
  1044. outSlope: {x: 0, y: 0, z: 0}
  1045. tangentMode: 0
  1046. weightedMode: 0
  1047. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1048. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1049. m_PreInfinity: 2
  1050. m_PostInfinity: 2
  1051. m_RotationOrder: 4
  1052. path: Back/UpperBody/HeadAnchor/Head
  1053. m_ScaleCurves: []
  1054. m_FloatCurves: []
  1055. m_PPtrCurves: []
  1056. m_SampleRate: 60
  1057. m_WrapMode: 0
  1058. m_Bounds:
  1059. m_Center: {x: 0, y: 0, z: 0}
  1060. m_Extent: {x: 0, y: 0, z: 0}
  1061. m_ClipBindingConstant:
  1062. genericBindings:
  1063. - serializedVersion: 2
  1064. path: 681162621
  1065. attribute: 1
  1066. script: {fileID: 0}
  1067. typeID: 4
  1068. customType: 0
  1069. isPPtrCurve: 0
  1070. - serializedVersion: 2
  1071. path: 1512265182
  1072. attribute: 1
  1073. script: {fileID: 0}
  1074. typeID: 4
  1075. customType: 0
  1076. isPPtrCurve: 0
  1077. - serializedVersion: 2
  1078. path: 1456004457
  1079. attribute: 1
  1080. script: {fileID: 0}
  1081. typeID: 4
  1082. customType: 0
  1083. isPPtrCurve: 0
  1084. - serializedVersion: 2
  1085. path: 4243230381
  1086. attribute: 1
  1087. script: {fileID: 0}
  1088. typeID: 4
  1089. customType: 0
  1090. isPPtrCurve: 0
  1091. - serializedVersion: 2
  1092. path: 681162621
  1093. attribute: 4
  1094. script: {fileID: 0}
  1095. typeID: 4
  1096. customType: 4
  1097. isPPtrCurve: 0
  1098. - serializedVersion: 2
  1099. path: 1943970801
  1100. attribute: 4
  1101. script: {fileID: 0}
  1102. typeID: 4
  1103. customType: 4
  1104. isPPtrCurve: 0
  1105. - serializedVersion: 2
  1106. path: 2268891813
  1107. attribute: 4
  1108. script: {fileID: 0}
  1109. typeID: 4
  1110. customType: 4
  1111. isPPtrCurve: 0
  1112. - serializedVersion: 2
  1113. path: 935310588
  1114. attribute: 4
  1115. script: {fileID: 0}
  1116. typeID: 4
  1117. customType: 4
  1118. isPPtrCurve: 0
  1119. - serializedVersion: 2
  1120. path: 611467210
  1121. attribute: 4
  1122. script: {fileID: 0}
  1123. typeID: 4
  1124. customType: 4
  1125. isPPtrCurve: 0
  1126. - serializedVersion: 2
  1127. path: 1595540170
  1128. attribute: 4
  1129. script: {fileID: 0}
  1130. typeID: 4
  1131. customType: 4
  1132. isPPtrCurve: 0
  1133. - serializedVersion: 2
  1134. path: 40132696
  1135. attribute: 4
  1136. script: {fileID: 0}
  1137. typeID: 4
  1138. customType: 4
  1139. isPPtrCurve: 0
  1140. - serializedVersion: 2
  1141. path: 1742853574
  1142. attribute: 4
  1143. script: {fileID: 0}
  1144. typeID: 4
  1145. customType: 4
  1146. isPPtrCurve: 0
  1147. - serializedVersion: 2
  1148. path: 1408338557
  1149. attribute: 4
  1150. script: {fileID: 0}
  1151. typeID: 4
  1152. customType: 4
  1153. isPPtrCurve: 0
  1154. - serializedVersion: 2
  1155. path: 1077674315
  1156. attribute: 4
  1157. script: {fileID: 0}
  1158. typeID: 4
  1159. customType: 4
  1160. isPPtrCurve: 0
  1161. - serializedVersion: 2
  1162. path: 1512265182
  1163. attribute: 4
  1164. script: {fileID: 0}
  1165. typeID: 4
  1166. customType: 4
  1167. isPPtrCurve: 0
  1168. - serializedVersion: 2
  1169. path: 2616739534
  1170. attribute: 4
  1171. script: {fileID: 0}
  1172. typeID: 4
  1173. customType: 4
  1174. isPPtrCurve: 0
  1175. - serializedVersion: 2
  1176. path: 4026598938
  1177. attribute: 4
  1178. script: {fileID: 0}
  1179. typeID: 4
  1180. customType: 4
  1181. isPPtrCurve: 0
  1182. - serializedVersion: 2
  1183. path: 2967867508
  1184. attribute: 4
  1185. script: {fileID: 0}
  1186. typeID: 4
  1187. customType: 4
  1188. isPPtrCurve: 0
  1189. pptrCurveMapping: []
  1190. m_AnimationClipSettings:
  1191. serializedVersion: 2
  1192. m_AdditiveReferencePoseClip: {fileID: 0}
  1193. m_AdditiveReferencePoseTime: 0
  1194. m_StartTime: 0
  1195. m_StopTime: 0.6666667
  1196. m_OrientationOffsetY: 0
  1197. m_Level: 0
  1198. m_CycleOffset: 0
  1199. m_HasAdditiveReferencePose: 0
  1200. m_LoopTime: 0
  1201. m_LoopBlend: 0
  1202. m_LoopBlendOrientation: 0
  1203. m_LoopBlendPositionY: 0
  1204. m_LoopBlendPositionXZ: 0
  1205. m_KeepOriginalOrientation: 0
  1206. m_KeepOriginalPositionY: 1
  1207. m_KeepOriginalPositionXZ: 0
  1208. m_HeightFromFeet: 0
  1209. m_Mirror: 0
  1210. m_EditorCurves:
  1211. - curve:
  1212. serializedVersion: 2
  1213. m_Curve:
  1214. - serializedVersion: 3
  1215. time: 0
  1216. value: 0
  1217. inSlope: 0
  1218. outSlope: 0
  1219. tangentMode: 136
  1220. weightedMode: 0
  1221. inWeight: 0.33333334
  1222. outWeight: 0.33333334
  1223. - serializedVersion: 3
  1224. time: 0.083333336
  1225. value: 0
  1226. inSlope: 0
  1227. outSlope: 0
  1228. tangentMode: 136
  1229. weightedMode: 0
  1230. inWeight: 0.33333334
  1231. outWeight: 0.33333334
  1232. - serializedVersion: 3
  1233. time: 0.25
  1234. value: 0
  1235. inSlope: 0
  1236. outSlope: 0
  1237. tangentMode: 136
  1238. weightedMode: 0
  1239. inWeight: 0.33333334
  1240. outWeight: 0.33333334
  1241. - serializedVersion: 3
  1242. time: 0.33333334
  1243. value: 0
  1244. inSlope: 0
  1245. outSlope: 0
  1246. tangentMode: 136
  1247. weightedMode: 0
  1248. inWeight: 0.33333334
  1249. outWeight: 0.33333334
  1250. - serializedVersion: 3
  1251. time: 0.41666666
  1252. value: 0
  1253. inSlope: 0
  1254. outSlope: 0
  1255. tangentMode: 136
  1256. weightedMode: 0
  1257. inWeight: 0.33333334
  1258. outWeight: 0.33333334
  1259. - serializedVersion: 3
  1260. time: 0.5
  1261. value: 0
  1262. inSlope: 0
  1263. outSlope: 0
  1264. tangentMode: 136
  1265. weightedMode: 0
  1266. inWeight: 0.33333334
  1267. outWeight: 0.33333334
  1268. - serializedVersion: 3
  1269. time: 0.5833333
  1270. value: 0
  1271. inSlope: 0
  1272. outSlope: 0
  1273. tangentMode: 136
  1274. weightedMode: 0
  1275. inWeight: 0.33333334
  1276. outWeight: 0.33333334
  1277. - serializedVersion: 3
  1278. time: 0.6666667
  1279. value: 0
  1280. inSlope: 0
  1281. outSlope: 0
  1282. tangentMode: 136
  1283. weightedMode: 0
  1284. inWeight: 0.33333334
  1285. outWeight: 0.33333334
  1286. m_PreInfinity: 2
  1287. m_PostInfinity: 2
  1288. m_RotationOrder: 4
  1289. attribute: localEulerAnglesRaw.x
  1290. path: Right/UpperBody/ArmLAnchor/ArmL
  1291. classID: 4
  1292. script: {fileID: 0}
  1293. - curve:
  1294. serializedVersion: 2
  1295. m_Curve:
  1296. - serializedVersion: 3
  1297. time: 0
  1298. value: 0
  1299. inSlope: 0
  1300. outSlope: 0
  1301. tangentMode: 136
  1302. weightedMode: 0
  1303. inWeight: 0.33333334
  1304. outWeight: 0.33333334
  1305. - serializedVersion: 3
  1306. time: 0.083333336
  1307. value: 0
  1308. inSlope: 0
  1309. outSlope: 0
  1310. tangentMode: 136
  1311. weightedMode: 0
  1312. inWeight: 0.33333334
  1313. outWeight: 0.33333334
  1314. - serializedVersion: 3
  1315. time: 0.25
  1316. value: 0
  1317. inSlope: 0
  1318. outSlope: 0
  1319. tangentMode: 136
  1320. weightedMode: 0
  1321. inWeight: 0.33333334
  1322. outWeight: 0.33333334
  1323. - serializedVersion: 3
  1324. time: 0.33333334
  1325. value: 0
  1326. inSlope: 0
  1327. outSlope: 0
  1328. tangentMode: 136
  1329. weightedMode: 0
  1330. inWeight: 0.33333334
  1331. outWeight: 0.33333334
  1332. - serializedVersion: 3
  1333. time: 0.41666666
  1334. value: 0
  1335. inSlope: 0
  1336. outSlope: 0
  1337. tangentMode: 136
  1338. weightedMode: 0
  1339. inWeight: 0.33333334
  1340. outWeight: 0.33333334
  1341. - serializedVersion: 3
  1342. time: 0.5
  1343. value: 0
  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.5833333
  1352. value: 0
  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: 0
  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: localEulerAnglesRaw.y
  1372. path: Right/UpperBody/ArmLAnchor/ArmL
  1373. classID: 4
  1374. script: {fileID: 0}
  1375. - curve:
  1376. serializedVersion: 2
  1377. m_Curve:
  1378. - serializedVersion: 3
  1379. time: 0
  1380. value: 0
  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.083333336
  1389. value: 70
  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.25
  1398. value: 70
  1399. inSlope: 0
  1400. outSlope: 0
  1401. tangentMode: 136
  1402. weightedMode: 0
  1403. inWeight: 0.33333334
  1404. outWeight: 0.33333334
  1405. - serializedVersion: 3
  1406. time: 0.33333334
  1407. value: 70
  1408. inSlope: 0
  1409. outSlope: 0
  1410. tangentMode: 136
  1411. weightedMode: 0
  1412. inWeight: 0.33333334
  1413. outWeight: 0.33333334
  1414. - serializedVersion: 3
  1415. time: 0.41666666
  1416. value: 90
  1417. inSlope: 0
  1418. outSlope: 0
  1419. tangentMode: 136
  1420. weightedMode: 0
  1421. inWeight: 0.33333334
  1422. outWeight: 0.33333334
  1423. - serializedVersion: 3
  1424. time: 0.5
  1425. value: 70
  1426. inSlope: 0
  1427. outSlope: 0
  1428. tangentMode: 136
  1429. weightedMode: 0
  1430. inWeight: 0.33333334
  1431. outWeight: 0.33333334
  1432. - serializedVersion: 3
  1433. time: 0.5833333
  1434. value: 70
  1435. inSlope: 0
  1436. outSlope: 0
  1437. tangentMode: 136
  1438. weightedMode: 0
  1439. inWeight: 0.33333334
  1440. outWeight: 0.33333334
  1441. - serializedVersion: 3
  1442. time: 0.6666667
  1443. value: 0
  1444. inSlope: 0
  1445. outSlope: 0
  1446. tangentMode: 136
  1447. weightedMode: 0
  1448. inWeight: 0.33333334
  1449. outWeight: 0.33333334
  1450. m_PreInfinity: 2
  1451. m_PostInfinity: 2
  1452. m_RotationOrder: 4
  1453. attribute: localEulerAnglesRaw.z
  1454. path: Right/UpperBody/ArmLAnchor/ArmL
  1455. classID: 4
  1456. script: {fileID: 0}
  1457. - curve:
  1458. serializedVersion: 2
  1459. m_Curve:
  1460. - serializedVersion: 3
  1461. time: 0
  1462. value: 0
  1463. inSlope: 0
  1464. outSlope: 0
  1465. tangentMode: 136
  1466. weightedMode: 0
  1467. inWeight: 0.33333334
  1468. outWeight: 0.33333334
  1469. - serializedVersion: 3
  1470. time: 0.083333336
  1471. value: 0
  1472. inSlope: 0
  1473. outSlope: 0
  1474. tangentMode: 136
  1475. weightedMode: 0
  1476. inWeight: 0.33333334
  1477. outWeight: 0.33333334
  1478. - serializedVersion: 3
  1479. time: 0.25
  1480. value: 0
  1481. inSlope: 0
  1482. outSlope: 0
  1483. tangentMode: 136
  1484. weightedMode: 0
  1485. inWeight: 0.33333334
  1486. outWeight: 0.33333334
  1487. - serializedVersion: 3
  1488. time: 0.33333334
  1489. value: 0
  1490. inSlope: 0
  1491. outSlope: 0
  1492. tangentMode: 136
  1493. weightedMode: 0
  1494. inWeight: 0.33333334
  1495. outWeight: 0.33333334
  1496. - serializedVersion: 3
  1497. time: 0.41666666
  1498. value: 0
  1499. inSlope: 0
  1500. outSlope: 0
  1501. tangentMode: 136
  1502. weightedMode: 0
  1503. inWeight: 0.33333334
  1504. outWeight: 0.33333334
  1505. - serializedVersion: 3
  1506. time: 0.5
  1507. value: 0
  1508. inSlope: 0
  1509. outSlope: 0
  1510. tangentMode: 136
  1511. weightedMode: 0
  1512. inWeight: 0.33333334
  1513. outWeight: 0.33333334
  1514. - serializedVersion: 3
  1515. time: 0.5833333
  1516. value: 0
  1517. inSlope: 0
  1518. outSlope: 0
  1519. tangentMode: 136
  1520. weightedMode: 0
  1521. inWeight: 0.33333334
  1522. outWeight: 0.33333334
  1523. - serializedVersion: 3
  1524. time: 0.6666667
  1525. value: 0
  1526. inSlope: 0
  1527. outSlope: 0
  1528. tangentMode: 136
  1529. weightedMode: 0
  1530. inWeight: 0.33333334
  1531. outWeight: 0.33333334
  1532. m_PreInfinity: 2
  1533. m_PostInfinity: 2
  1534. m_RotationOrder: 4
  1535. attribute: localEulerAnglesRaw.x
  1536. path: Right/UpperBody/ArmLAnchor/ArmL/HandL
  1537. classID: 4
  1538. script: {fileID: 0}
  1539. - curve:
  1540. serializedVersion: 2
  1541. m_Curve:
  1542. - serializedVersion: 3
  1543. time: 0
  1544. value: 0
  1545. inSlope: 0
  1546. outSlope: 0
  1547. tangentMode: 136
  1548. weightedMode: 0
  1549. inWeight: 0.33333334
  1550. outWeight: 0.33333334
  1551. - serializedVersion: 3
  1552. time: 0.083333336
  1553. value: 0
  1554. inSlope: 0
  1555. outSlope: 0
  1556. tangentMode: 136
  1557. weightedMode: 0
  1558. inWeight: 0.33333334
  1559. outWeight: 0.33333334
  1560. - serializedVersion: 3
  1561. time: 0.25
  1562. value: 0
  1563. inSlope: 0
  1564. outSlope: 0
  1565. tangentMode: 136
  1566. weightedMode: 0
  1567. inWeight: 0.33333334
  1568. outWeight: 0.33333334
  1569. - serializedVersion: 3
  1570. time: 0.33333334
  1571. value: 0
  1572. inSlope: 0
  1573. outSlope: 0
  1574. tangentMode: 136
  1575. weightedMode: 0
  1576. inWeight: 0.33333334
  1577. outWeight: 0.33333334
  1578. - serializedVersion: 3
  1579. time: 0.41666666
  1580. value: 0
  1581. inSlope: 0
  1582. outSlope: 0
  1583. tangentMode: 136
  1584. weightedMode: 0
  1585. inWeight: 0.33333334
  1586. outWeight: 0.33333334
  1587. - serializedVersion: 3
  1588. time: 0.5
  1589. value: 0
  1590. inSlope: 0
  1591. outSlope: 0
  1592. tangentMode: 136
  1593. weightedMode: 0
  1594. inWeight: 0.33333334
  1595. outWeight: 0.33333334
  1596. - serializedVersion: 3
  1597. time: 0.5833333
  1598. value: 0
  1599. inSlope: 0
  1600. outSlope: 0
  1601. tangentMode: 136
  1602. weightedMode: 0
  1603. inWeight: 0.33333334
  1604. outWeight: 0.33333334
  1605. - serializedVersion: 3
  1606. time: 0.6666667
  1607. value: 0
  1608. inSlope: 0
  1609. outSlope: 0
  1610. tangentMode: 136
  1611. weightedMode: 0
  1612. inWeight: 0.33333334
  1613. outWeight: 0.33333334
  1614. m_PreInfinity: 2
  1615. m_PostInfinity: 2
  1616. m_RotationOrder: 4
  1617. attribute: localEulerAnglesRaw.y
  1618. path: Right/UpperBody/ArmLAnchor/ArmL/HandL
  1619. classID: 4
  1620. script: {fileID: 0}
  1621. - curve:
  1622. serializedVersion: 2
  1623. m_Curve:
  1624. - serializedVersion: 3
  1625. time: 0
  1626. value: 0
  1627. inSlope: 0
  1628. outSlope: 0
  1629. tangentMode: 136
  1630. weightedMode: 0
  1631. inWeight: 0.33333334
  1632. outWeight: 0.33333334
  1633. - serializedVersion: 3
  1634. time: 0.083333336
  1635. value: 0
  1636. inSlope: 0
  1637. outSlope: 0
  1638. tangentMode: 136
  1639. weightedMode: 0
  1640. inWeight: 0.33333334
  1641. outWeight: 0.33333334
  1642. - serializedVersion: 3
  1643. time: 0.25
  1644. value: -50
  1645. inSlope: 0
  1646. outSlope: 0
  1647. tangentMode: 136
  1648. weightedMode: 0
  1649. inWeight: 0.33333334
  1650. outWeight: 0.33333334
  1651. - serializedVersion: 3
  1652. time: 0.33333334
  1653. value: -50
  1654. inSlope: 0
  1655. outSlope: 0
  1656. tangentMode: 136
  1657. weightedMode: 0
  1658. inWeight: 0.33333334
  1659. outWeight: 0.33333334
  1660. - serializedVersion: 3
  1661. time: 0.41666666
  1662. value: -30
  1663. inSlope: 0
  1664. outSlope: 0
  1665. tangentMode: 136
  1666. weightedMode: 0
  1667. inWeight: 0.33333334
  1668. outWeight: 0.33333334
  1669. - serializedVersion: 3
  1670. time: 0.5
  1671. value: -50
  1672. inSlope: 0
  1673. outSlope: 0
  1674. tangentMode: 136
  1675. weightedMode: 0
  1676. inWeight: 0.33333334
  1677. outWeight: 0.33333334
  1678. - serializedVersion: 3
  1679. time: 0.5833333
  1680. value: -50
  1681. inSlope: 0
  1682. outSlope: 0
  1683. tangentMode: 136
  1684. weightedMode: 0
  1685. inWeight: 0.33333334
  1686. outWeight: 0.33333334
  1687. - serializedVersion: 3
  1688. time: 0.6666667
  1689. value: 0
  1690. inSlope: 0
  1691. outSlope: 0
  1692. tangentMode: 136
  1693. weightedMode: 0
  1694. inWeight: 0.33333334
  1695. outWeight: 0.33333334
  1696. m_PreInfinity: 2
  1697. m_PostInfinity: 2
  1698. m_RotationOrder: 4
  1699. attribute: localEulerAnglesRaw.z
  1700. path: Right/UpperBody/ArmLAnchor/ArmL/HandL
  1701. classID: 4
  1702. script: {fileID: 0}
  1703. - curve:
  1704. serializedVersion: 2
  1705. m_Curve:
  1706. - serializedVersion: 3
  1707. time: 0
  1708. value: 0.15
  1709. inSlope: 0
  1710. outSlope: 0
  1711. tangentMode: 136
  1712. weightedMode: 0
  1713. inWeight: 0.33333334
  1714. outWeight: 0.33333334
  1715. - serializedVersion: 3
  1716. time: 0.25
  1717. value: 0.15
  1718. inSlope: 0
  1719. outSlope: 0
  1720. tangentMode: 136
  1721. weightedMode: 0
  1722. inWeight: 0.33333334
  1723. outWeight: 0.33333334
  1724. - serializedVersion: 3
  1725. time: 0.33333334
  1726. value: 0.15
  1727. inSlope: 0
  1728. outSlope: 0
  1729. tangentMode: 136
  1730. weightedMode: 0
  1731. inWeight: 0.33333334
  1732. outWeight: 0.33333334
  1733. - serializedVersion: 3
  1734. time: 0.41666666
  1735. value: 0
  1736. inSlope: 0
  1737. outSlope: 0
  1738. tangentMode: 136
  1739. weightedMode: 0
  1740. inWeight: 0.33333334
  1741. outWeight: 0.33333334
  1742. - serializedVersion: 3
  1743. time: 0.5
  1744. value: 0.15
  1745. inSlope: 0
  1746. outSlope: 0
  1747. tangentMode: 136
  1748. weightedMode: 0
  1749. inWeight: 0.33333334
  1750. outWeight: 0.33333334
  1751. - serializedVersion: 3
  1752. time: 0.6666667
  1753. value: 0.15
  1754. inSlope: 0
  1755. outSlope: 0
  1756. tangentMode: 136
  1757. weightedMode: 0
  1758. inWeight: 0.33333334
  1759. outWeight: 0.33333334
  1760. m_PreInfinity: 2
  1761. m_PostInfinity: 2
  1762. m_RotationOrder: 4
  1763. attribute: m_LocalPosition.x
  1764. path: Right/UpperBody/ArmLAnchor/ArmL
  1765. classID: 4
  1766. script: {fileID: 0}
  1767. - curve:
  1768. serializedVersion: 2
  1769. m_Curve:
  1770. - serializedVersion: 3
  1771. time: 0
  1772. value: 0.6
  1773. inSlope: 0
  1774. outSlope: 0
  1775. tangentMode: 136
  1776. weightedMode: 0
  1777. inWeight: 0.33333334
  1778. outWeight: 0.33333334
  1779. - serializedVersion: 3
  1780. time: 0.25
  1781. value: 0.6
  1782. inSlope: 0
  1783. outSlope: 0
  1784. tangentMode: 136
  1785. weightedMode: 0
  1786. inWeight: 0.33333334
  1787. outWeight: 0.33333334
  1788. - serializedVersion: 3
  1789. time: 0.33333334
  1790. value: 0.6
  1791. inSlope: 0
  1792. outSlope: 0
  1793. tangentMode: 136
  1794. weightedMode: 0
  1795. inWeight: 0.33333334
  1796. outWeight: 0.33333334
  1797. - serializedVersion: 3
  1798. time: 0.41666666
  1799. value: 0.6
  1800. inSlope: 0
  1801. outSlope: 0
  1802. tangentMode: 136
  1803. weightedMode: 0
  1804. inWeight: 0.33333334
  1805. outWeight: 0.33333334
  1806. - serializedVersion: 3
  1807. time: 0.5
  1808. value: 0.6
  1809. inSlope: 0
  1810. outSlope: 0
  1811. tangentMode: 136
  1812. weightedMode: 0
  1813. inWeight: 0.33333334
  1814. outWeight: 0.33333334
  1815. - serializedVersion: 3
  1816. time: 0.6666667
  1817. value: 0.6
  1818. inSlope: 0
  1819. outSlope: 0
  1820. tangentMode: 136
  1821. weightedMode: 0
  1822. inWeight: 0.33333334
  1823. outWeight: 0.33333334
  1824. m_PreInfinity: 2
  1825. m_PostInfinity: 2
  1826. m_RotationOrder: 4
  1827. attribute: m_LocalPosition.y
  1828. path: Right/UpperBody/ArmLAnchor/ArmL
  1829. classID: 4
  1830. script: {fileID: 0}
  1831. - curve:
  1832. serializedVersion: 2
  1833. m_Curve:
  1834. - serializedVersion: 3
  1835. time: 0
  1836. value: 0
  1837. inSlope: 0
  1838. outSlope: 0
  1839. tangentMode: 136
  1840. weightedMode: 0
  1841. inWeight: 0.33333334
  1842. outWeight: 0.33333334
  1843. - serializedVersion: 3
  1844. time: 0.25
  1845. value: 0
  1846. inSlope: 0
  1847. outSlope: 0
  1848. tangentMode: 136
  1849. weightedMode: 0
  1850. inWeight: 0.33333334
  1851. outWeight: 0.33333334
  1852. - serializedVersion: 3
  1853. time: 0.33333334
  1854. value: 0
  1855. inSlope: 0
  1856. outSlope: 0
  1857. tangentMode: 136
  1858. weightedMode: 0
  1859. inWeight: 0.33333334
  1860. outWeight: 0.33333334
  1861. - serializedVersion: 3
  1862. time: 0.41666666
  1863. value: 0
  1864. inSlope: 0
  1865. outSlope: 0
  1866. tangentMode: 136
  1867. weightedMode: 0
  1868. inWeight: 0.33333334
  1869. outWeight: 0.33333334
  1870. - serializedVersion: 3
  1871. time: 0.5
  1872. value: 0
  1873. inSlope: 0
  1874. outSlope: 0
  1875. tangentMode: 136
  1876. weightedMode: 0
  1877. inWeight: 0.33333334
  1878. outWeight: 0.33333334
  1879. - serializedVersion: 3
  1880. time: 0.6666667
  1881. value: 0
  1882. inSlope: 0
  1883. outSlope: 0
  1884. tangentMode: 136
  1885. weightedMode: 0
  1886. inWeight: 0.33333334
  1887. outWeight: 0.33333334
  1888. m_PreInfinity: 2
  1889. m_PostInfinity: 2
  1890. m_RotationOrder: 4
  1891. attribute: m_LocalPosition.z
  1892. path: Right/UpperBody/ArmLAnchor/ArmL
  1893. classID: 4
  1894. script: {fileID: 0}
  1895. - curve:
  1896. serializedVersion: 2
  1897. m_Curve:
  1898. - serializedVersion: 3
  1899. time: 0
  1900. value: 0
  1901. inSlope: 0
  1902. outSlope: 0
  1903. tangentMode: 136
  1904. weightedMode: 0
  1905. inWeight: 0.33333334
  1906. outWeight: 0.33333334
  1907. - serializedVersion: 3
  1908. time: 0.33333334
  1909. value: 0
  1910. inSlope: 0
  1911. outSlope: 0
  1912. tangentMode: 136
  1913. weightedMode: 0
  1914. inWeight: 0.33333334
  1915. outWeight: 0.33333334
  1916. - serializedVersion: 3
  1917. time: 0.41666666
  1918. value: 0
  1919. inSlope: 0
  1920. outSlope: 0
  1921. tangentMode: 136
  1922. weightedMode: 0
  1923. inWeight: 0.33333334
  1924. outWeight: 0.33333334
  1925. - serializedVersion: 3
  1926. time: 0.5
  1927. value: 0
  1928. inSlope: 0
  1929. outSlope: 0
  1930. tangentMode: 136
  1931. weightedMode: 0
  1932. inWeight: 0.33333334
  1933. outWeight: 0.33333334
  1934. - serializedVersion: 3
  1935. time: 0.6666667
  1936. value: 0
  1937. inSlope: 0
  1938. outSlope: 0
  1939. tangentMode: 136
  1940. weightedMode: 0
  1941. inWeight: 0.33333334
  1942. outWeight: 0.33333334
  1943. m_PreInfinity: 2
  1944. m_PostInfinity: 2
  1945. m_RotationOrder: 4
  1946. attribute: localEulerAnglesRaw.x
  1947. path: Right/UpperBody
  1948. classID: 4
  1949. script: {fileID: 0}
  1950. - curve:
  1951. serializedVersion: 2
  1952. m_Curve:
  1953. - serializedVersion: 3
  1954. time: 0
  1955. value: 0
  1956. inSlope: 0
  1957. outSlope: 0
  1958. tangentMode: 136
  1959. weightedMode: 0
  1960. inWeight: 0.33333334
  1961. outWeight: 0.33333334
  1962. - serializedVersion: 3
  1963. time: 0.33333334
  1964. value: 0
  1965. inSlope: 0
  1966. outSlope: 0
  1967. tangentMode: 136
  1968. weightedMode: 0
  1969. inWeight: 0.33333334
  1970. outWeight: 0.33333334
  1971. - serializedVersion: 3
  1972. time: 0.41666666
  1973. value: 0
  1974. inSlope: 0
  1975. outSlope: 0
  1976. tangentMode: 136
  1977. weightedMode: 0
  1978. inWeight: 0.33333334
  1979. outWeight: 0.33333334
  1980. - serializedVersion: 3
  1981. time: 0.5
  1982. value: 0
  1983. inSlope: 0
  1984. outSlope: 0
  1985. tangentMode: 136
  1986. weightedMode: 0
  1987. inWeight: 0.33333334
  1988. outWeight: 0.33333334
  1989. - serializedVersion: 3
  1990. time: 0.6666667
  1991. value: 0
  1992. inSlope: 0
  1993. outSlope: 0
  1994. tangentMode: 136
  1995. weightedMode: 0
  1996. inWeight: 0.33333334
  1997. outWeight: 0.33333334
  1998. m_PreInfinity: 2
  1999. m_PostInfinity: 2
  2000. m_RotationOrder: 4
  2001. attribute: localEulerAnglesRaw.y
  2002. path: Right/UpperBody
  2003. classID: 4
  2004. script: {fileID: 0}
  2005. - curve:
  2006. serializedVersion: 2
  2007. m_Curve:
  2008. - serializedVersion: 3
  2009. time: 0
  2010. value: 0
  2011. inSlope: 0
  2012. outSlope: 0
  2013. tangentMode: 136
  2014. weightedMode: 0
  2015. inWeight: 0.33333334
  2016. outWeight: 0.33333334
  2017. - serializedVersion: 3
  2018. time: 0.33333334
  2019. value: 0
  2020. inSlope: 0
  2021. outSlope: 0
  2022. tangentMode: 136
  2023. weightedMode: 0
  2024. inWeight: 0.33333334
  2025. outWeight: 0.33333334
  2026. - serializedVersion: 3
  2027. time: 0.41666666
  2028. value: 10
  2029. inSlope: 0
  2030. outSlope: 0
  2031. tangentMode: 136
  2032. weightedMode: 0
  2033. inWeight: 0.33333334
  2034. outWeight: 0.33333334
  2035. - serializedVersion: 3
  2036. time: 0.5
  2037. value: 0
  2038. inSlope: 0
  2039. outSlope: 0
  2040. tangentMode: 136
  2041. weightedMode: 0
  2042. inWeight: 0.33333334
  2043. outWeight: 0.33333334
  2044. - serializedVersion: 3
  2045. time: 0.6666667
  2046. value: 0
  2047. inSlope: 0
  2048. outSlope: 0
  2049. tangentMode: 136
  2050. weightedMode: 0
  2051. inWeight: 0.33333334
  2052. outWeight: 0.33333334
  2053. m_PreInfinity: 2
  2054. m_PostInfinity: 2
  2055. m_RotationOrder: 4
  2056. attribute: localEulerAnglesRaw.z
  2057. path: Right/UpperBody
  2058. classID: 4
  2059. script: {fileID: 0}
  2060. - curve:
  2061. serializedVersion: 2
  2062. m_Curve:
  2063. - serializedVersion: 3
  2064. time: 0
  2065. value: 0
  2066. inSlope: 0
  2067. outSlope: 0
  2068. tangentMode: 136
  2069. weightedMode: 0
  2070. inWeight: 0.33333334
  2071. outWeight: 0.33333334
  2072. - serializedVersion: 3
  2073. time: 0.33333334
  2074. value: 0
  2075. inSlope: 0
  2076. outSlope: 0
  2077. tangentMode: 136
  2078. weightedMode: 0
  2079. inWeight: 0.33333334
  2080. outWeight: 0.33333334
  2081. - serializedVersion: 3
  2082. time: 0.5833333
  2083. value: 0
  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.6666667
  2092. value: 0
  2093. inSlope: 0
  2094. outSlope: 0
  2095. tangentMode: 136
  2096. weightedMode: 0
  2097. inWeight: 0.33333334
  2098. outWeight: 0.33333334
  2099. m_PreInfinity: 2
  2100. m_PostInfinity: 2
  2101. m_RotationOrder: 4
  2102. attribute: localEulerAnglesRaw.x
  2103. path: Right/UpperBody/ArmRAnchor/ArmR
  2104. classID: 4
  2105. script: {fileID: 0}
  2106. - curve:
  2107. serializedVersion: 2
  2108. m_Curve:
  2109. - serializedVersion: 3
  2110. time: 0
  2111. value: 0
  2112. inSlope: 0
  2113. outSlope: 0
  2114. tangentMode: 136
  2115. weightedMode: 0
  2116. inWeight: 0.33333334
  2117. outWeight: 0.33333334
  2118. - serializedVersion: 3
  2119. time: 0.33333334
  2120. value: 0
  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.5833333
  2129. value: 0
  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: 0.6666667
  2138. value: 0
  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: localEulerAnglesRaw.y
  2149. path: Right/UpperBody/ArmRAnchor/ArmR
  2150. classID: 4
  2151. script: {fileID: 0}
  2152. - curve:
  2153. serializedVersion: 2
  2154. m_Curve:
  2155. - serializedVersion: 3
  2156. time: 0
  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.33333334
  2166. value: -20
  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: 0.5833333
  2175. value: -20
  2176. inSlope: 0
  2177. outSlope: 0
  2178. tangentMode: 136
  2179. weightedMode: 0
  2180. inWeight: 0.33333334
  2181. outWeight: 0.33333334
  2182. - serializedVersion: 3
  2183. time: 0.6666667
  2184. value: 0
  2185. inSlope: 0
  2186. outSlope: 0
  2187. tangentMode: 136
  2188. weightedMode: 0
  2189. inWeight: 0.33333334
  2190. outWeight: 0.33333334
  2191. m_PreInfinity: 2
  2192. m_PostInfinity: 2
  2193. m_RotationOrder: 4
  2194. attribute: localEulerAnglesRaw.z
  2195. path: Right/UpperBody/ArmRAnchor/ArmR
  2196. classID: 4
  2197. script: {fileID: 0}
  2198. - curve:
  2199. serializedVersion: 2
  2200. m_Curve:
  2201. - serializedVersion: 3
  2202. time: 0
  2203. value: 0
  2204. inSlope: 0
  2205. outSlope: 0
  2206. tangentMode: 136
  2207. weightedMode: 0
  2208. inWeight: 0.33333334
  2209. outWeight: 0.33333334
  2210. - serializedVersion: 3
  2211. time: 0.33333334
  2212. value: 0
  2213. inSlope: 0
  2214. outSlope: 0
  2215. tangentMode: 136
  2216. weightedMode: 0
  2217. inWeight: 0.33333334
  2218. outWeight: 0.33333334
  2219. - serializedVersion: 3
  2220. time: 0.41666666
  2221. value: 0
  2222. inSlope: 0
  2223. outSlope: 0
  2224. tangentMode: 136
  2225. weightedMode: 0
  2226. inWeight: 0.33333334
  2227. outWeight: 0.33333334
  2228. - serializedVersion: 3
  2229. time: 0.6666667
  2230. value: 0
  2231. inSlope: 0
  2232. outSlope: 0
  2233. tangentMode: 136
  2234. weightedMode: 0
  2235. inWeight: 0.33333334
  2236. outWeight: 0.33333334
  2237. m_PreInfinity: 2
  2238. m_PostInfinity: 2
  2239. m_RotationOrder: 4
  2240. attribute: localEulerAnglesRaw.x
  2241. path: Right/UpperBody/HeadAnchor/Head
  2242. classID: 4
  2243. script: {fileID: 0}
  2244. - curve:
  2245. serializedVersion: 2
  2246. m_Curve:
  2247. - serializedVersion: 3
  2248. time: 0
  2249. value: 0
  2250. inSlope: 0
  2251. outSlope: 0
  2252. tangentMode: 136
  2253. weightedMode: 0
  2254. inWeight: 0.33333334
  2255. outWeight: 0.33333334
  2256. - serializedVersion: 3
  2257. time: 0.33333334
  2258. value: 0
  2259. inSlope: 0
  2260. outSlope: 0
  2261. tangentMode: 136
  2262. weightedMode: 0
  2263. inWeight: 0.33333334
  2264. outWeight: 0.33333334
  2265. - serializedVersion: 3
  2266. time: 0.41666666
  2267. value: 0
  2268. inSlope: 0
  2269. outSlope: 0
  2270. tangentMode: 136
  2271. weightedMode: 0
  2272. inWeight: 0.33333334
  2273. outWeight: 0.33333334
  2274. - serializedVersion: 3
  2275. time: 0.6666667
  2276. value: 0
  2277. inSlope: 0
  2278. outSlope: 0
  2279. tangentMode: 136
  2280. weightedMode: 0
  2281. inWeight: 0.33333334
  2282. outWeight: 0.33333334
  2283. m_PreInfinity: 2
  2284. m_PostInfinity: 2
  2285. m_RotationOrder: 4
  2286. attribute: localEulerAnglesRaw.y
  2287. path: Right/UpperBody/HeadAnchor/Head
  2288. classID: 4
  2289. script: {fileID: 0}
  2290. - curve:
  2291. serializedVersion: 2
  2292. m_Curve:
  2293. - serializedVersion: 3
  2294. time: 0
  2295. value: 0
  2296. inSlope: 0
  2297. outSlope: 0
  2298. tangentMode: 136
  2299. weightedMode: 0
  2300. inWeight: 0.33333334
  2301. outWeight: 0.33333334
  2302. - serializedVersion: 3
  2303. time: 0.33333334
  2304. value: -5
  2305. inSlope: 0
  2306. outSlope: 0
  2307. tangentMode: 136
  2308. weightedMode: 0
  2309. inWeight: 0.33333334
  2310. outWeight: 0.33333334
  2311. - serializedVersion: 3
  2312. time: 0.41666666
  2313. value: 0
  2314. inSlope: 0
  2315. outSlope: 0
  2316. tangentMode: 136
  2317. weightedMode: 0
  2318. inWeight: 0.33333334
  2319. outWeight: 0.33333334
  2320. - serializedVersion: 3
  2321. time: 0.6666667
  2322. value: 0
  2323. inSlope: 0
  2324. outSlope: 0
  2325. tangentMode: 136
  2326. weightedMode: 0
  2327. inWeight: 0.33333334
  2328. outWeight: 0.33333334
  2329. m_PreInfinity: 2
  2330. m_PostInfinity: 2
  2331. m_RotationOrder: 4
  2332. attribute: localEulerAnglesRaw.z
  2333. path: Right/UpperBody/HeadAnchor/Head
  2334. classID: 4
  2335. script: {fileID: 0}
  2336. - curve:
  2337. serializedVersion: 2
  2338. m_Curve:
  2339. - serializedVersion: 3
  2340. time: 0
  2341. value: 0
  2342. inSlope: 0
  2343. outSlope: 0
  2344. tangentMode: 136
  2345. weightedMode: 0
  2346. inWeight: 0.33333334
  2347. outWeight: 0.33333334
  2348. - serializedVersion: 3
  2349. time: 0.083333336
  2350. value: 0
  2351. inSlope: 0
  2352. outSlope: 0
  2353. tangentMode: 136
  2354. weightedMode: 0
  2355. inWeight: 0.33333334
  2356. outWeight: 0.33333334
  2357. - serializedVersion: 3
  2358. time: 0.25
  2359. value: 0
  2360. inSlope: 0
  2361. outSlope: 0
  2362. tangentMode: 136
  2363. weightedMode: 0
  2364. inWeight: 0.33333334
  2365. outWeight: 0.33333334
  2366. - serializedVersion: 3
  2367. time: 0.33333334
  2368. value: 0
  2369. inSlope: 0
  2370. outSlope: 0
  2371. tangentMode: 136
  2372. weightedMode: 0
  2373. inWeight: 0.33333334
  2374. outWeight: 0.33333334
  2375. - serializedVersion: 3
  2376. time: 0.41666666
  2377. value: 0
  2378. inSlope: 0
  2379. outSlope: 0
  2380. tangentMode: 136
  2381. weightedMode: 0
  2382. inWeight: 0.33333334
  2383. outWeight: 0.33333334
  2384. - serializedVersion: 3
  2385. time: 0.5
  2386. value: 0
  2387. inSlope: 0
  2388. outSlope: 0
  2389. tangentMode: 136
  2390. weightedMode: 0
  2391. inWeight: 0.33333334
  2392. outWeight: 0.33333334
  2393. - serializedVersion: 3
  2394. time: 0.5833333
  2395. value: 0
  2396. inSlope: 0
  2397. outSlope: 0
  2398. tangentMode: 136
  2399. weightedMode: 0
  2400. inWeight: 0.33333334
  2401. outWeight: 0.33333334
  2402. - serializedVersion: 3
  2403. time: 0.6666667
  2404. value: 0
  2405. inSlope: 0
  2406. outSlope: 0
  2407. tangentMode: 136
  2408. weightedMode: 0
  2409. inWeight: 0.33333334
  2410. outWeight: 0.33333334
  2411. m_PreInfinity: 2
  2412. m_PostInfinity: 2
  2413. m_RotationOrder: 4
  2414. attribute: localEulerAnglesRaw.x
  2415. path: Left/UpperBody/ArmLAnchor/ArmL
  2416. classID: 4
  2417. script: {fileID: 0}
  2418. - curve:
  2419. serializedVersion: 2
  2420. m_Curve:
  2421. - serializedVersion: 3
  2422. time: 0
  2423. value: 0
  2424. inSlope: 0
  2425. outSlope: 0
  2426. tangentMode: 136
  2427. weightedMode: 0
  2428. inWeight: 0.33333334
  2429. outWeight: 0.33333334
  2430. - serializedVersion: 3
  2431. time: 0.083333336
  2432. value: 0
  2433. inSlope: 0
  2434. outSlope: 0
  2435. tangentMode: 136
  2436. weightedMode: 0
  2437. inWeight: 0.33333334
  2438. outWeight: 0.33333334
  2439. - serializedVersion: 3
  2440. time: 0.25
  2441. value: 0
  2442. inSlope: 0
  2443. outSlope: 0
  2444. tangentMode: 136
  2445. weightedMode: 0
  2446. inWeight: 0.33333334
  2447. outWeight: 0.33333334
  2448. - serializedVersion: 3
  2449. time: 0.33333334
  2450. value: 0
  2451. inSlope: 0
  2452. outSlope: 0
  2453. tangentMode: 136
  2454. weightedMode: 0
  2455. inWeight: 0.33333334
  2456. outWeight: 0.33333334
  2457. - serializedVersion: 3
  2458. time: 0.41666666
  2459. value: 0
  2460. inSlope: 0
  2461. outSlope: 0
  2462. tangentMode: 136
  2463. weightedMode: 0
  2464. inWeight: 0.33333334
  2465. outWeight: 0.33333334
  2466. - serializedVersion: 3
  2467. time: 0.5
  2468. value: 0
  2469. inSlope: 0
  2470. outSlope: 0
  2471. tangentMode: 136
  2472. weightedMode: 0
  2473. inWeight: 0.33333334
  2474. outWeight: 0.33333334
  2475. - serializedVersion: 3
  2476. time: 0.5833333
  2477. value: 0
  2478. inSlope: 0
  2479. outSlope: 0
  2480. tangentMode: 136
  2481. weightedMode: 0
  2482. inWeight: 0.33333334
  2483. outWeight: 0.33333334
  2484. - serializedVersion: 3
  2485. time: 0.6666667
  2486. value: 0
  2487. inSlope: 0
  2488. outSlope: 0
  2489. tangentMode: 136
  2490. weightedMode: 0
  2491. inWeight: 0.33333334
  2492. outWeight: 0.33333334
  2493. m_PreInfinity: 2
  2494. m_PostInfinity: 2
  2495. m_RotationOrder: 4
  2496. attribute: localEulerAnglesRaw.y
  2497. path: Left/UpperBody/ArmLAnchor/ArmL
  2498. classID: 4
  2499. script: {fileID: 0}
  2500. - curve:
  2501. serializedVersion: 2
  2502. m_Curve:
  2503. - serializedVersion: 3
  2504. time: 0
  2505. value: 0
  2506. inSlope: 0
  2507. outSlope: 0
  2508. tangentMode: 136
  2509. weightedMode: 0
  2510. inWeight: 0.33333334
  2511. outWeight: 0.33333334
  2512. - serializedVersion: 3
  2513. time: 0.083333336
  2514. value: -70
  2515. inSlope: 0
  2516. outSlope: 0
  2517. tangentMode: 136
  2518. weightedMode: 0
  2519. inWeight: 0.33333334
  2520. outWeight: 0.33333334
  2521. - serializedVersion: 3
  2522. time: 0.25
  2523. value: -70
  2524. inSlope: 0
  2525. outSlope: 0
  2526. tangentMode: 136
  2527. weightedMode: 0
  2528. inWeight: 0.33333334
  2529. outWeight: 0.33333334
  2530. - serializedVersion: 3
  2531. time: 0.33333334
  2532. value: -70
  2533. inSlope: 0
  2534. outSlope: 0
  2535. tangentMode: 136
  2536. weightedMode: 0
  2537. inWeight: 0.33333334
  2538. outWeight: 0.33333334
  2539. - serializedVersion: 3
  2540. time: 0.41666666
  2541. value: -90
  2542. inSlope: 0
  2543. outSlope: 0
  2544. tangentMode: 136
  2545. weightedMode: 0
  2546. inWeight: 0.33333334
  2547. outWeight: 0.33333334
  2548. - serializedVersion: 3
  2549. time: 0.5
  2550. value: -70
  2551. inSlope: 0
  2552. outSlope: 0
  2553. tangentMode: 136
  2554. weightedMode: 0
  2555. inWeight: 0.33333334
  2556. outWeight: 0.33333334
  2557. - serializedVersion: 3
  2558. time: 0.5833333
  2559. value: -70
  2560. inSlope: 0
  2561. outSlope: 0
  2562. tangentMode: 136
  2563. weightedMode: 0
  2564. inWeight: 0.33333334
  2565. outWeight: 0.33333334
  2566. - serializedVersion: 3
  2567. time: 0.6666667
  2568. value: 0
  2569. inSlope: 0
  2570. outSlope: 0
  2571. tangentMode: 136
  2572. weightedMode: 0
  2573. inWeight: 0.33333334
  2574. outWeight: 0.33333334
  2575. m_PreInfinity: 2
  2576. m_PostInfinity: 2
  2577. m_RotationOrder: 4
  2578. attribute: localEulerAnglesRaw.z
  2579. path: Left/UpperBody/ArmLAnchor/ArmL
  2580. classID: 4
  2581. script: {fileID: 0}
  2582. - curve:
  2583. serializedVersion: 2
  2584. m_Curve:
  2585. - serializedVersion: 3
  2586. time: 0
  2587. value: 0
  2588. inSlope: 0
  2589. outSlope: 0
  2590. tangentMode: 136
  2591. weightedMode: 0
  2592. inWeight: 0.33333334
  2593. outWeight: 0.33333334
  2594. - serializedVersion: 3
  2595. time: 0.083333336
  2596. value: 0
  2597. inSlope: 0
  2598. outSlope: 0
  2599. tangentMode: 136
  2600. weightedMode: 0
  2601. inWeight: 0.33333334
  2602. outWeight: 0.33333334
  2603. - serializedVersion: 3
  2604. time: 0.25
  2605. value: 0
  2606. inSlope: 0
  2607. outSlope: 0
  2608. tangentMode: 136
  2609. weightedMode: 0
  2610. inWeight: 0.33333334
  2611. outWeight: 0.33333334
  2612. - serializedVersion: 3
  2613. time: 0.33333334
  2614. value: 0
  2615. inSlope: 0
  2616. outSlope: 0
  2617. tangentMode: 136
  2618. weightedMode: 0
  2619. inWeight: 0.33333334
  2620. outWeight: 0.33333334
  2621. - serializedVersion: 3
  2622. time: 0.41666666
  2623. value: 0
  2624. inSlope: 0
  2625. outSlope: 0
  2626. tangentMode: 136
  2627. weightedMode: 0
  2628. inWeight: 0.33333334
  2629. outWeight: 0.33333334
  2630. - serializedVersion: 3
  2631. time: 0.5
  2632. value: 0
  2633. inSlope: 0
  2634. outSlope: 0
  2635. tangentMode: 136
  2636. weightedMode: 0
  2637. inWeight: 0.33333334
  2638. outWeight: 0.33333334
  2639. - serializedVersion: 3
  2640. time: 0.5833333
  2641. value: 0
  2642. inSlope: 0
  2643. outSlope: 0
  2644. tangentMode: 136
  2645. weightedMode: 0
  2646. inWeight: 0.33333334
  2647. outWeight: 0.33333334
  2648. - serializedVersion: 3
  2649. time: 0.6666667
  2650. value: 0
  2651. inSlope: 0
  2652. outSlope: 0
  2653. tangentMode: 136
  2654. weightedMode: 0
  2655. inWeight: 0.33333334
  2656. outWeight: 0.33333334
  2657. m_PreInfinity: 2
  2658. m_PostInfinity: 2
  2659. m_RotationOrder: 4
  2660. attribute: localEulerAnglesRaw.x
  2661. path: Left/UpperBody/ArmLAnchor/ArmL/HandL
  2662. classID: 4
  2663. script: {fileID: 0}
  2664. - curve:
  2665. serializedVersion: 2
  2666. m_Curve:
  2667. - serializedVersion: 3
  2668. time: 0
  2669. value: 0
  2670. inSlope: 0
  2671. outSlope: 0
  2672. tangentMode: 136
  2673. weightedMode: 0
  2674. inWeight: 0.33333334
  2675. outWeight: 0.33333334
  2676. - serializedVersion: 3
  2677. time: 0.083333336
  2678. value: 0
  2679. inSlope: 0
  2680. outSlope: 0
  2681. tangentMode: 136
  2682. weightedMode: 0
  2683. inWeight: 0.33333334
  2684. outWeight: 0.33333334
  2685. - serializedVersion: 3
  2686. time: 0.25
  2687. value: 0
  2688. inSlope: 0
  2689. outSlope: 0
  2690. tangentMode: 136
  2691. weightedMode: 0
  2692. inWeight: 0.33333334
  2693. outWeight: 0.33333334
  2694. - serializedVersion: 3
  2695. time: 0.33333334
  2696. value: 0
  2697. inSlope: 0
  2698. outSlope: 0
  2699. tangentMode: 136
  2700. weightedMode: 0
  2701. inWeight: 0.33333334
  2702. outWeight: 0.33333334
  2703. - serializedVersion: 3
  2704. time: 0.41666666
  2705. value: 0
  2706. inSlope: 0
  2707. outSlope: 0
  2708. tangentMode: 136
  2709. weightedMode: 0
  2710. inWeight: 0.33333334
  2711. outWeight: 0.33333334
  2712. - serializedVersion: 3
  2713. time: 0.5
  2714. value: 0
  2715. inSlope: 0
  2716. outSlope: 0
  2717. tangentMode: 136
  2718. weightedMode: 0
  2719. inWeight: 0.33333334
  2720. outWeight: 0.33333334
  2721. - serializedVersion: 3
  2722. time: 0.5833333
  2723. value: 0
  2724. inSlope: 0
  2725. outSlope: 0
  2726. tangentMode: 136
  2727. weightedMode: 0
  2728. inWeight: 0.33333334
  2729. outWeight: 0.33333334
  2730. - serializedVersion: 3
  2731. time: 0.6666667
  2732. value: 0
  2733. inSlope: 0
  2734. outSlope: 0
  2735. tangentMode: 136
  2736. weightedMode: 0
  2737. inWeight: 0.33333334
  2738. outWeight: 0.33333334
  2739. m_PreInfinity: 2
  2740. m_PostInfinity: 2
  2741. m_RotationOrder: 4
  2742. attribute: localEulerAnglesRaw.y
  2743. path: Left/UpperBody/ArmLAnchor/ArmL/HandL
  2744. classID: 4
  2745. script: {fileID: 0}
  2746. - curve:
  2747. serializedVersion: 2
  2748. m_Curve:
  2749. - serializedVersion: 3
  2750. time: 0
  2751. value: 0
  2752. inSlope: 0
  2753. outSlope: 0
  2754. tangentMode: 136
  2755. weightedMode: 0
  2756. inWeight: 0.33333334
  2757. outWeight: 0.33333334
  2758. - serializedVersion: 3
  2759. time: 0.083333336
  2760. value: 0
  2761. inSlope: 0
  2762. outSlope: 0
  2763. tangentMode: 136
  2764. weightedMode: 0
  2765. inWeight: 0.33333334
  2766. outWeight: 0.33333334
  2767. - serializedVersion: 3
  2768. time: 0.25
  2769. value: 50
  2770. inSlope: 0
  2771. outSlope: 0
  2772. tangentMode: 136
  2773. weightedMode: 0
  2774. inWeight: 0.33333334
  2775. outWeight: 0.33333334
  2776. - serializedVersion: 3
  2777. time: 0.33333334
  2778. value: 50
  2779. inSlope: 0
  2780. outSlope: 0
  2781. tangentMode: 136
  2782. weightedMode: 0
  2783. inWeight: 0.33333334
  2784. outWeight: 0.33333334
  2785. - serializedVersion: 3
  2786. time: 0.41666666
  2787. value: 30
  2788. inSlope: 0
  2789. outSlope: 0
  2790. tangentMode: 136
  2791. weightedMode: 0
  2792. inWeight: 0.33333334
  2793. outWeight: 0.33333334
  2794. - serializedVersion: 3
  2795. time: 0.5
  2796. value: 50
  2797. inSlope: 0
  2798. outSlope: 0
  2799. tangentMode: 136
  2800. weightedMode: 0
  2801. inWeight: 0.33333334
  2802. outWeight: 0.33333334
  2803. - serializedVersion: 3
  2804. time: 0.5833333
  2805. value: 50
  2806. inSlope: 0
  2807. outSlope: 0
  2808. tangentMode: 136
  2809. weightedMode: 0
  2810. inWeight: 0.33333334
  2811. outWeight: 0.33333334
  2812. - serializedVersion: 3
  2813. time: 0.6666667
  2814. value: 0
  2815. inSlope: 0
  2816. outSlope: 0
  2817. tangentMode: 136
  2818. weightedMode: 0
  2819. inWeight: 0.33333334
  2820. outWeight: 0.33333334
  2821. m_PreInfinity: 2
  2822. m_PostInfinity: 2
  2823. m_RotationOrder: 4
  2824. attribute: localEulerAnglesRaw.z
  2825. path: Left/UpperBody/ArmLAnchor/ArmL/HandL
  2826. classID: 4
  2827. script: {fileID: 0}
  2828. - curve:
  2829. serializedVersion: 2
  2830. m_Curve:
  2831. - serializedVersion: 3
  2832. time: 0
  2833. value: 0
  2834. inSlope: 0
  2835. outSlope: 0
  2836. tangentMode: 136
  2837. weightedMode: 0
  2838. inWeight: 0.33333334
  2839. outWeight: 0.33333334
  2840. - serializedVersion: 3
  2841. time: 0.25
  2842. value: 0
  2843. inSlope: 0
  2844. outSlope: 0
  2845. tangentMode: 136
  2846. weightedMode: 0
  2847. inWeight: 0.33333334
  2848. outWeight: 0.33333334
  2849. - serializedVersion: 3
  2850. time: 0.33333334
  2851. value: 0
  2852. inSlope: 0
  2853. outSlope: 0
  2854. tangentMode: 136
  2855. weightedMode: 0
  2856. inWeight: 0.33333334
  2857. outWeight: 0.33333334
  2858. - serializedVersion: 3
  2859. time: 0.41666666
  2860. value: 0
  2861. inSlope: 0
  2862. outSlope: 0
  2863. tangentMode: 136
  2864. weightedMode: 0
  2865. inWeight: 0.33333334
  2866. outWeight: 0.33333334
  2867. - serializedVersion: 3
  2868. time: 0.5
  2869. value: 0
  2870. inSlope: 0
  2871. outSlope: 0
  2872. tangentMode: 136
  2873. weightedMode: 0
  2874. inWeight: 0.33333334
  2875. outWeight: 0.33333334
  2876. - serializedVersion: 3
  2877. time: 0.6666667
  2878. value: 0
  2879. inSlope: 0
  2880. outSlope: 0
  2881. tangentMode: 136
  2882. weightedMode: 0
  2883. inWeight: 0.33333334
  2884. outWeight: 0.33333334
  2885. m_PreInfinity: 2
  2886. m_PostInfinity: 2
  2887. m_RotationOrder: 4
  2888. attribute: localEulerAnglesRaw.x
  2889. path: Left/UpperBody
  2890. classID: 4
  2891. script: {fileID: 0}
  2892. - curve:
  2893. serializedVersion: 2
  2894. m_Curve:
  2895. - serializedVersion: 3
  2896. time: 0
  2897. value: 0
  2898. inSlope: 0
  2899. outSlope: 0
  2900. tangentMode: 136
  2901. weightedMode: 0
  2902. inWeight: 0.33333334
  2903. outWeight: 0.33333334
  2904. - serializedVersion: 3
  2905. time: 0.25
  2906. value: 0
  2907. inSlope: 0
  2908. outSlope: 0
  2909. tangentMode: 136
  2910. weightedMode: 0
  2911. inWeight: 0.33333334
  2912. outWeight: 0.33333334
  2913. - serializedVersion: 3
  2914. time: 0.33333334
  2915. value: 0
  2916. inSlope: 0
  2917. outSlope: 0
  2918. tangentMode: 136
  2919. weightedMode: 0
  2920. inWeight: 0.33333334
  2921. outWeight: 0.33333334
  2922. - serializedVersion: 3
  2923. time: 0.41666666
  2924. value: 0
  2925. inSlope: 0
  2926. outSlope: 0
  2927. tangentMode: 136
  2928. weightedMode: 0
  2929. inWeight: 0.33333334
  2930. outWeight: 0.33333334
  2931. - serializedVersion: 3
  2932. time: 0.5
  2933. value: 0
  2934. inSlope: 0
  2935. outSlope: 0
  2936. tangentMode: 136
  2937. weightedMode: 0
  2938. inWeight: 0.33333334
  2939. outWeight: 0.33333334
  2940. - serializedVersion: 3
  2941. time: 0.6666667
  2942. value: 0
  2943. inSlope: 0
  2944. outSlope: 0
  2945. tangentMode: 136
  2946. weightedMode: 0
  2947. inWeight: 0.33333334
  2948. outWeight: 0.33333334
  2949. m_PreInfinity: 2
  2950. m_PostInfinity: 2
  2951. m_RotationOrder: 4
  2952. attribute: localEulerAnglesRaw.y
  2953. path: Left/UpperBody
  2954. classID: 4
  2955. script: {fileID: 0}
  2956. - curve:
  2957. serializedVersion: 2
  2958. m_Curve:
  2959. - serializedVersion: 3
  2960. time: 0
  2961. value: 0
  2962. inSlope: 0
  2963. outSlope: 0
  2964. tangentMode: 136
  2965. weightedMode: 0
  2966. inWeight: 0.33333334
  2967. outWeight: 0.33333334
  2968. - serializedVersion: 3
  2969. time: 0.25
  2970. value: 0
  2971. inSlope: 0
  2972. outSlope: 0
  2973. tangentMode: 136
  2974. weightedMode: 0
  2975. inWeight: 0.33333334
  2976. outWeight: 0.33333334
  2977. - serializedVersion: 3
  2978. time: 0.33333334
  2979. value: 0
  2980. inSlope: 0
  2981. outSlope: 0
  2982. tangentMode: 136
  2983. weightedMode: 0
  2984. inWeight: 0.33333334
  2985. outWeight: 0.33333334
  2986. - serializedVersion: 3
  2987. time: 0.41666666
  2988. value: -10
  2989. inSlope: 0
  2990. outSlope: 0
  2991. tangentMode: 136
  2992. weightedMode: 0
  2993. inWeight: 0.33333334
  2994. outWeight: 0.33333334
  2995. - serializedVersion: 3
  2996. time: 0.5
  2997. value: 0
  2998. inSlope: 0
  2999. outSlope: 0
  3000. tangentMode: 136
  3001. weightedMode: 0
  3002. inWeight: 0.33333334
  3003. outWeight: 0.33333334
  3004. - serializedVersion: 3
  3005. time: 0.6666667
  3006. value: 0
  3007. inSlope: 0
  3008. outSlope: 0
  3009. tangentMode: 136
  3010. weightedMode: 0
  3011. inWeight: 0.33333334
  3012. outWeight: 0.33333334
  3013. m_PreInfinity: 2
  3014. m_PostInfinity: 2
  3015. m_RotationOrder: 4
  3016. attribute: localEulerAnglesRaw.z
  3017. path: Left/UpperBody
  3018. classID: 4
  3019. script: {fileID: 0}
  3020. - curve:
  3021. serializedVersion: 2
  3022. m_Curve:
  3023. - serializedVersion: 3
  3024. time: 0
  3025. value: 0
  3026. inSlope: 0
  3027. outSlope: 0
  3028. tangentMode: 136
  3029. weightedMode: 0
  3030. inWeight: 0.33333334
  3031. outWeight: 0.33333334
  3032. - serializedVersion: 3
  3033. time: 0.33333334
  3034. value: 0
  3035. inSlope: 0
  3036. outSlope: 0
  3037. tangentMode: 136
  3038. weightedMode: 0
  3039. inWeight: 0.33333334
  3040. outWeight: 0.33333334
  3041. - serializedVersion: 3
  3042. time: 0.41666666
  3043. value: 0
  3044. inSlope: 0
  3045. outSlope: 0
  3046. tangentMode: 136
  3047. weightedMode: 0
  3048. inWeight: 0.33333334
  3049. outWeight: 0.33333334
  3050. - serializedVersion: 3
  3051. time: 0.6666667
  3052. value: 0
  3053. inSlope: 0
  3054. outSlope: 0
  3055. tangentMode: 136
  3056. weightedMode: 0
  3057. inWeight: 0.33333334
  3058. outWeight: 0.33333334
  3059. m_PreInfinity: 2
  3060. m_PostInfinity: 2
  3061. m_RotationOrder: 4
  3062. attribute: localEulerAnglesRaw.x
  3063. path: Left/UpperBody/HeadAnchor/Head
  3064. classID: 4
  3065. script: {fileID: 0}
  3066. - curve:
  3067. serializedVersion: 2
  3068. m_Curve:
  3069. - serializedVersion: 3
  3070. time: 0
  3071. value: 0
  3072. inSlope: 0
  3073. outSlope: 0
  3074. tangentMode: 136
  3075. weightedMode: 0
  3076. inWeight: 0.33333334
  3077. outWeight: 0.33333334
  3078. - serializedVersion: 3
  3079. time: 0.33333334
  3080. value: 0
  3081. inSlope: 0
  3082. outSlope: 0
  3083. tangentMode: 136
  3084. weightedMode: 0
  3085. inWeight: 0.33333334
  3086. outWeight: 0.33333334
  3087. - serializedVersion: 3
  3088. time: 0.41666666
  3089. value: 0
  3090. inSlope: 0
  3091. outSlope: 0
  3092. tangentMode: 136
  3093. weightedMode: 0
  3094. inWeight: 0.33333334
  3095. outWeight: 0.33333334
  3096. - serializedVersion: 3
  3097. time: 0.6666667
  3098. value: 0
  3099. inSlope: 0
  3100. outSlope: 0
  3101. tangentMode: 136
  3102. weightedMode: 0
  3103. inWeight: 0.33333334
  3104. outWeight: 0.33333334
  3105. m_PreInfinity: 2
  3106. m_PostInfinity: 2
  3107. m_RotationOrder: 4
  3108. attribute: localEulerAnglesRaw.y
  3109. path: Left/UpperBody/HeadAnchor/Head
  3110. classID: 4
  3111. script: {fileID: 0}
  3112. - curve:
  3113. serializedVersion: 2
  3114. m_Curve:
  3115. - serializedVersion: 3
  3116. time: 0
  3117. value: 0
  3118. inSlope: 0
  3119. outSlope: 0
  3120. tangentMode: 136
  3121. weightedMode: 0
  3122. inWeight: 0.33333334
  3123. outWeight: 0.33333334
  3124. - serializedVersion: 3
  3125. time: 0.33333334
  3126. value: 5
  3127. inSlope: 0
  3128. outSlope: 0
  3129. tangentMode: 136
  3130. weightedMode: 0
  3131. inWeight: 0.33333334
  3132. outWeight: 0.33333334
  3133. - serializedVersion: 3
  3134. time: 0.41666666
  3135. value: 0
  3136. inSlope: 0
  3137. outSlope: 0
  3138. tangentMode: 136
  3139. weightedMode: 0
  3140. inWeight: 0.33333334
  3141. outWeight: 0.33333334
  3142. - serializedVersion: 3
  3143. time: 0.6666667
  3144. value: 0
  3145. inSlope: 0
  3146. outSlope: 0
  3147. tangentMode: 136
  3148. weightedMode: 0
  3149. inWeight: 0.33333334
  3150. outWeight: 0.33333334
  3151. m_PreInfinity: 2
  3152. m_PostInfinity: 2
  3153. m_RotationOrder: 4
  3154. attribute: localEulerAnglesRaw.z
  3155. path: Left/UpperBody/HeadAnchor/Head
  3156. classID: 4
  3157. script: {fileID: 0}
  3158. - curve:
  3159. serializedVersion: 2
  3160. m_Curve:
  3161. - serializedVersion: 3
  3162. time: 0
  3163. value: 0
  3164. inSlope: 0
  3165. outSlope: 0
  3166. tangentMode: 136
  3167. weightedMode: 0
  3168. inWeight: 0.33333334
  3169. outWeight: 0.33333334
  3170. - serializedVersion: 3
  3171. time: 0.5833333
  3172. value: 0
  3173. inSlope: 0
  3174. outSlope: 0
  3175. tangentMode: 136
  3176. weightedMode: 0
  3177. inWeight: 0.33333334
  3178. outWeight: 0.33333334
  3179. m_PreInfinity: 2
  3180. m_PostInfinity: 2
  3181. m_RotationOrder: 4
  3182. attribute: localEulerAnglesRaw.x
  3183. path: Left/UpperBody/ArmRAnchor/ArmR
  3184. classID: 4
  3185. script: {fileID: 0}
  3186. - curve:
  3187. serializedVersion: 2
  3188. m_Curve:
  3189. - serializedVersion: 3
  3190. time: 0
  3191. value: 0
  3192. inSlope: 0
  3193. outSlope: 0
  3194. tangentMode: 136
  3195. weightedMode: 0
  3196. inWeight: 0.33333334
  3197. outWeight: 0.33333334
  3198. - serializedVersion: 3
  3199. time: 0.5833333
  3200. value: 0
  3201. inSlope: 0
  3202. outSlope: 0
  3203. tangentMode: 136
  3204. weightedMode: 0
  3205. inWeight: 0.33333334
  3206. outWeight: 0.33333334
  3207. m_PreInfinity: 2
  3208. m_PostInfinity: 2
  3209. m_RotationOrder: 4
  3210. attribute: localEulerAnglesRaw.y
  3211. path: Left/UpperBody/ArmRAnchor/ArmR
  3212. classID: 4
  3213. script: {fileID: 0}
  3214. - curve:
  3215. serializedVersion: 2
  3216. m_Curve:
  3217. - serializedVersion: 3
  3218. time: 0
  3219. value: 0
  3220. inSlope: 0
  3221. outSlope: 0
  3222. tangentMode: 136
  3223. weightedMode: 0
  3224. inWeight: 0.33333334
  3225. outWeight: 0.33333334
  3226. - serializedVersion: 3
  3227. time: 0.5833333
  3228. value: 20
  3229. inSlope: 0
  3230. outSlope: 0
  3231. tangentMode: 136
  3232. weightedMode: 0
  3233. inWeight: 0.33333334
  3234. outWeight: 0.33333334
  3235. m_PreInfinity: 2
  3236. m_PostInfinity: 2
  3237. m_RotationOrder: 4
  3238. attribute: localEulerAnglesRaw.z
  3239. path: Left/UpperBody/ArmRAnchor/ArmR
  3240. classID: 4
  3241. script: {fileID: 0}
  3242. - curve:
  3243. serializedVersion: 2
  3244. m_Curve:
  3245. - serializedVersion: 3
  3246. time: 0
  3247. value: 0
  3248. inSlope: 0
  3249. outSlope: 0
  3250. tangentMode: 136
  3251. weightedMode: 0
  3252. inWeight: 0.33333334
  3253. outWeight: 0.33333334
  3254. - serializedVersion: 3
  3255. time: 0.083333336
  3256. value: 0
  3257. inSlope: 0
  3258. outSlope: 0
  3259. tangentMode: 136
  3260. weightedMode: 0
  3261. inWeight: 0.33333334
  3262. outWeight: 0.33333334
  3263. - serializedVersion: 3
  3264. time: 0.25
  3265. value: 0
  3266. inSlope: 0
  3267. outSlope: 0
  3268. tangentMode: 136
  3269. weightedMode: 0
  3270. inWeight: 0.33333334
  3271. outWeight: 0.33333334
  3272. - serializedVersion: 3
  3273. time: 0.33333334
  3274. value: 0
  3275. inSlope: 0
  3276. outSlope: 0
  3277. tangentMode: 136
  3278. weightedMode: 0
  3279. inWeight: 0.33333334
  3280. outWeight: 0.33333334
  3281. - serializedVersion: 3
  3282. time: 0.5
  3283. value: 0
  3284. inSlope: 0
  3285. outSlope: 0
  3286. tangentMode: 136
  3287. weightedMode: 0
  3288. inWeight: 0.33333334
  3289. outWeight: 0.33333334
  3290. - serializedVersion: 3
  3291. time: 0.6666667
  3292. value: 0
  3293. inSlope: 0
  3294. outSlope: 0
  3295. tangentMode: 136
  3296. weightedMode: 0
  3297. inWeight: 0.33333334
  3298. outWeight: 0.33333334
  3299. m_PreInfinity: 2
  3300. m_PostInfinity: 2
  3301. m_RotationOrder: 4
  3302. attribute: localEulerAnglesRaw.x
  3303. path: Front/UpperBody/ArmLAnchor/ArmL
  3304. classID: 4
  3305. script: {fileID: 0}
  3306. - curve:
  3307. serializedVersion: 2
  3308. m_Curve:
  3309. - serializedVersion: 3
  3310. time: 0
  3311. value: 0
  3312. inSlope: 0
  3313. outSlope: 0
  3314. tangentMode: 136
  3315. weightedMode: 0
  3316. inWeight: 0.33333334
  3317. outWeight: 0.33333334
  3318. - serializedVersion: 3
  3319. time: 0.083333336
  3320. value: 0
  3321. inSlope: 0
  3322. outSlope: 0
  3323. tangentMode: 136
  3324. weightedMode: 0
  3325. inWeight: 0.33333334
  3326. outWeight: 0.33333334
  3327. - serializedVersion: 3
  3328. time: 0.25
  3329. value: 0
  3330. inSlope: 0
  3331. outSlope: 0
  3332. tangentMode: 136
  3333. weightedMode: 0
  3334. inWeight: 0.33333334
  3335. outWeight: 0.33333334
  3336. - serializedVersion: 3
  3337. time: 0.33333334
  3338. value: 0
  3339. inSlope: 0
  3340. outSlope: 0
  3341. tangentMode: 136
  3342. weightedMode: 0
  3343. inWeight: 0.33333334
  3344. outWeight: 0.33333334
  3345. - serializedVersion: 3
  3346. time: 0.5
  3347. value: 0
  3348. inSlope: 0
  3349. outSlope: 0
  3350. tangentMode: 136
  3351. weightedMode: 0
  3352. inWeight: 0.33333334
  3353. outWeight: 0.33333334
  3354. - serializedVersion: 3
  3355. time: 0.6666667
  3356. value: 0
  3357. inSlope: 0
  3358. outSlope: 0
  3359. tangentMode: 136
  3360. weightedMode: 0
  3361. inWeight: 0.33333334
  3362. outWeight: 0.33333334
  3363. m_PreInfinity: 2
  3364. m_PostInfinity: 2
  3365. m_RotationOrder: 4
  3366. attribute: localEulerAnglesRaw.y
  3367. path: Front/UpperBody/ArmLAnchor/ArmL
  3368. classID: 4
  3369. script: {fileID: 0}
  3370. - curve:
  3371. serializedVersion: 2
  3372. m_Curve:
  3373. - serializedVersion: 3
  3374. time: 0
  3375. value: 20
  3376. inSlope: 0
  3377. outSlope: 0
  3378. tangentMode: 136
  3379. weightedMode: 0
  3380. inWeight: 0.33333334
  3381. outWeight: 0.33333334
  3382. - serializedVersion: 3
  3383. time: 0.083333336
  3384. value: 0
  3385. inSlope: 0
  3386. outSlope: 0
  3387. tangentMode: 136
  3388. weightedMode: 0
  3389. inWeight: 0.33333334
  3390. outWeight: 0.33333334
  3391. - serializedVersion: 3
  3392. time: 0.25
  3393. value: 0
  3394. inSlope: 0
  3395. outSlope: 0
  3396. tangentMode: 136
  3397. weightedMode: 0
  3398. inWeight: 0.33333334
  3399. outWeight: 0.33333334
  3400. - serializedVersion: 3
  3401. time: 0.33333334
  3402. value: 0
  3403. inSlope: 0
  3404. outSlope: 0
  3405. tangentMode: 136
  3406. weightedMode: 0
  3407. inWeight: 0.33333334
  3408. outWeight: 0.33333334
  3409. - serializedVersion: 3
  3410. time: 0.5
  3411. value: 0
  3412. inSlope: 0
  3413. outSlope: 0
  3414. tangentMode: 136
  3415. weightedMode: 0
  3416. inWeight: 0.33333334
  3417. outWeight: 0.33333334
  3418. - serializedVersion: 3
  3419. time: 0.6666667
  3420. value: 20
  3421. inSlope: 0
  3422. outSlope: 0
  3423. tangentMode: 136
  3424. weightedMode: 0
  3425. inWeight: 0.33333334
  3426. outWeight: 0.33333334
  3427. m_PreInfinity: 2
  3428. m_PostInfinity: 2
  3429. m_RotationOrder: 4
  3430. attribute: localEulerAnglesRaw.z
  3431. path: Front/UpperBody/ArmLAnchor/ArmL
  3432. classID: 4
  3433. script: {fileID: 0}
  3434. - curve:
  3435. serializedVersion: 2
  3436. m_Curve:
  3437. - serializedVersion: 3
  3438. time: 0
  3439. value: 0
  3440. inSlope: 0
  3441. outSlope: 0
  3442. tangentMode: 136
  3443. weightedMode: 0
  3444. inWeight: 0.33333334
  3445. outWeight: 0.33333334
  3446. - serializedVersion: 3
  3447. time: 0.25
  3448. value: 0
  3449. inSlope: 0
  3450. outSlope: 0
  3451. tangentMode: 136
  3452. weightedMode: 0
  3453. inWeight: 0.33333334
  3454. outWeight: 0.33333334
  3455. - serializedVersion: 3
  3456. time: 0.33333334
  3457. value: 0
  3458. inSlope: 0
  3459. outSlope: 0
  3460. tangentMode: 136
  3461. weightedMode: 0
  3462. inWeight: 0.33333334
  3463. outWeight: 0.33333334
  3464. - serializedVersion: 3
  3465. time: 0.41666666
  3466. value: 0
  3467. inSlope: 0
  3468. outSlope: 0
  3469. tangentMode: 136
  3470. weightedMode: 0
  3471. inWeight: 0.33333334
  3472. outWeight: 0.33333334
  3473. - serializedVersion: 3
  3474. time: 0.5
  3475. value: 0
  3476. inSlope: 0
  3477. outSlope: 0
  3478. tangentMode: 136
  3479. weightedMode: 0
  3480. inWeight: 0.33333334
  3481. outWeight: 0.33333334
  3482. - serializedVersion: 3
  3483. time: 0.6666667
  3484. value: 0
  3485. inSlope: 0
  3486. outSlope: 0
  3487. tangentMode: 136
  3488. weightedMode: 0
  3489. inWeight: 0.33333334
  3490. outWeight: 0.33333334
  3491. m_PreInfinity: 2
  3492. m_PostInfinity: 2
  3493. m_RotationOrder: 4
  3494. attribute: localEulerAnglesRaw.x
  3495. path: Front/UpperBody/ArmLAnchor/ArmL/HandL
  3496. classID: 4
  3497. script: {fileID: 0}
  3498. - curve:
  3499. serializedVersion: 2
  3500. m_Curve:
  3501. - serializedVersion: 3
  3502. time: 0
  3503. value: 0
  3504. inSlope: 0
  3505. outSlope: 0
  3506. tangentMode: 136
  3507. weightedMode: 0
  3508. inWeight: 0.33333334
  3509. outWeight: 0.33333334
  3510. - serializedVersion: 3
  3511. time: 0.25
  3512. value: 0
  3513. inSlope: 0
  3514. outSlope: 0
  3515. tangentMode: 136
  3516. weightedMode: 0
  3517. inWeight: 0.33333334
  3518. outWeight: 0.33333334
  3519. - serializedVersion: 3
  3520. time: 0.33333334
  3521. value: 0
  3522. inSlope: 0
  3523. outSlope: 0
  3524. tangentMode: 136
  3525. weightedMode: 0
  3526. inWeight: 0.33333334
  3527. outWeight: 0.33333334
  3528. - serializedVersion: 3
  3529. time: 0.41666666
  3530. value: 0
  3531. inSlope: 0
  3532. outSlope: 0
  3533. tangentMode: 136
  3534. weightedMode: 0
  3535. inWeight: 0.33333334
  3536. outWeight: 0.33333334
  3537. - serializedVersion: 3
  3538. time: 0.5
  3539. value: 0
  3540. inSlope: 0
  3541. outSlope: 0
  3542. tangentMode: 136
  3543. weightedMode: 0
  3544. inWeight: 0.33333334
  3545. outWeight: 0.33333334
  3546. - serializedVersion: 3
  3547. time: 0.6666667
  3548. value: 0
  3549. inSlope: 0
  3550. outSlope: 0
  3551. tangentMode: 136
  3552. weightedMode: 0
  3553. inWeight: 0.33333334
  3554. outWeight: 0.33333334
  3555. m_PreInfinity: 2
  3556. m_PostInfinity: 2
  3557. m_RotationOrder: 4
  3558. attribute: localEulerAnglesRaw.y
  3559. path: Front/UpperBody/ArmLAnchor/ArmL/HandL
  3560. classID: 4
  3561. script: {fileID: 0}
  3562. - curve:
  3563. serializedVersion: 2
  3564. m_Curve:
  3565. - serializedVersion: 3
  3566. time: 0
  3567. value: 0
  3568. inSlope: 0
  3569. outSlope: 0
  3570. tangentMode: 136
  3571. weightedMode: 0
  3572. inWeight: 0.33333334
  3573. outWeight: 0.33333334
  3574. - serializedVersion: 3
  3575. time: 0.25
  3576. value: 70
  3577. inSlope: 0
  3578. outSlope: 0
  3579. tangentMode: 136
  3580. weightedMode: 0
  3581. inWeight: 0.33333334
  3582. outWeight: 0.33333334
  3583. - serializedVersion: 3
  3584. time: 0.33333334
  3585. value: 70
  3586. inSlope: 0
  3587. outSlope: 0
  3588. tangentMode: 136
  3589. weightedMode: 0
  3590. inWeight: 0.33333334
  3591. outWeight: 0.33333334
  3592. - serializedVersion: 3
  3593. time: 0.41666666
  3594. value: 50
  3595. inSlope: 0
  3596. outSlope: 0
  3597. tangentMode: 136
  3598. weightedMode: 0
  3599. inWeight: 0.33333334
  3600. outWeight: 0.33333334
  3601. - serializedVersion: 3
  3602. time: 0.5
  3603. value: 70
  3604. inSlope: 0
  3605. outSlope: 0
  3606. tangentMode: 136
  3607. weightedMode: 0
  3608. inWeight: 0.33333334
  3609. outWeight: 0.33333334
  3610. - serializedVersion: 3
  3611. time: 0.6666667
  3612. value: 0
  3613. inSlope: 0
  3614. outSlope: 0
  3615. tangentMode: 136
  3616. weightedMode: 0
  3617. inWeight: 0.33333334
  3618. outWeight: 0.33333334
  3619. m_PreInfinity: 2
  3620. m_PostInfinity: 2
  3621. m_RotationOrder: 4
  3622. attribute: localEulerAnglesRaw.z
  3623. path: Front/UpperBody/ArmLAnchor/ArmL/HandL
  3624. classID: 4
  3625. script: {fileID: 0}
  3626. - curve:
  3627. serializedVersion: 2
  3628. m_Curve:
  3629. - serializedVersion: 3
  3630. time: 0
  3631. value: 0.45
  3632. inSlope: 0
  3633. outSlope: 0
  3634. tangentMode: 136
  3635. weightedMode: 0
  3636. inWeight: 0.33333334
  3637. outWeight: 0.33333334
  3638. - serializedVersion: 3
  3639. time: 0.33333334
  3640. value: 0.45
  3641. inSlope: 0
  3642. outSlope: 0
  3643. tangentMode: 136
  3644. weightedMode: 0
  3645. inWeight: 0.33333334
  3646. outWeight: 0.33333334
  3647. - serializedVersion: 3
  3648. time: 0.41666666
  3649. value: 0.45
  3650. inSlope: 0
  3651. outSlope: 0
  3652. tangentMode: 136
  3653. weightedMode: 0
  3654. inWeight: 0.33333334
  3655. outWeight: 0.33333334
  3656. - serializedVersion: 3
  3657. time: 0.5
  3658. value: 0.45
  3659. inSlope: 0
  3660. outSlope: 0
  3661. tangentMode: 136
  3662. weightedMode: 0
  3663. inWeight: 0.33333334
  3664. outWeight: 0.33333334
  3665. m_PreInfinity: 2
  3666. m_PostInfinity: 2
  3667. m_RotationOrder: 4
  3668. attribute: m_LocalPosition.x
  3669. path: Front/UpperBody/ArmLAnchor/ArmL
  3670. classID: 4
  3671. script: {fileID: 0}
  3672. - curve:
  3673. serializedVersion: 2
  3674. m_Curve:
  3675. - serializedVersion: 3
  3676. time: 0
  3677. value: 0.54999995
  3678. inSlope: 0
  3679. outSlope: 0
  3680. tangentMode: 136
  3681. weightedMode: 0
  3682. inWeight: 0.33333334
  3683. outWeight: 0.33333334
  3684. - serializedVersion: 3
  3685. time: 0.33333334
  3686. value: 0.55
  3687. inSlope: 0.00000057220467
  3688. outSlope: 0.00000057220467
  3689. tangentMode: 136
  3690. weightedMode: 0
  3691. inWeight: 0.33333334
  3692. outWeight: 0.33333334
  3693. - serializedVersion: 3
  3694. time: 0.41666666
  3695. value: 0.65
  3696. inSlope: 0
  3697. outSlope: 0
  3698. tangentMode: 136
  3699. weightedMode: 0
  3700. inWeight: 0.33333334
  3701. outWeight: 0.33333334
  3702. - serializedVersion: 3
  3703. time: 0.5
  3704. value: 0.55
  3705. inSlope: 0
  3706. outSlope: 0
  3707. tangentMode: 136
  3708. weightedMode: 0
  3709. inWeight: 0.33333334
  3710. outWeight: 0.33333334
  3711. m_PreInfinity: 2
  3712. m_PostInfinity: 2
  3713. m_RotationOrder: 4
  3714. attribute: m_LocalPosition.y
  3715. path: Front/UpperBody/ArmLAnchor/ArmL
  3716. classID: 4
  3717. script: {fileID: 0}
  3718. - curve:
  3719. serializedVersion: 2
  3720. m_Curve:
  3721. - serializedVersion: 3
  3722. time: 0
  3723. value: 0
  3724. inSlope: 0
  3725. outSlope: 0
  3726. tangentMode: 136
  3727. weightedMode: 0
  3728. inWeight: 0.33333334
  3729. outWeight: 0.33333334
  3730. - serializedVersion: 3
  3731. time: 0.33333334
  3732. value: 0
  3733. inSlope: 0
  3734. outSlope: 0
  3735. tangentMode: 136
  3736. weightedMode: 0
  3737. inWeight: 0.33333334
  3738. outWeight: 0.33333334
  3739. - serializedVersion: 3
  3740. time: 0.41666666
  3741. value: 0
  3742. inSlope: 0
  3743. outSlope: 0
  3744. tangentMode: 136
  3745. weightedMode: 0
  3746. inWeight: 0.33333334
  3747. outWeight: 0.33333334
  3748. - serializedVersion: 3
  3749. time: 0.5
  3750. value: 0
  3751. inSlope: 0
  3752. outSlope: 0
  3753. tangentMode: 136
  3754. weightedMode: 0
  3755. inWeight: 0.33333334
  3756. outWeight: 0.33333334
  3757. m_PreInfinity: 2
  3758. m_PostInfinity: 2
  3759. m_RotationOrder: 4
  3760. attribute: m_LocalPosition.z
  3761. path: Front/UpperBody/ArmLAnchor/ArmL
  3762. classID: 4
  3763. script: {fileID: 0}
  3764. - curve:
  3765. serializedVersion: 2
  3766. m_Curve:
  3767. - serializedVersion: 3
  3768. time: 0
  3769. value: 0
  3770. inSlope: 0
  3771. outSlope: 0
  3772. tangentMode: 136
  3773. weightedMode: 0
  3774. inWeight: 0.33333334
  3775. outWeight: 0.33333334
  3776. - serializedVersion: 3
  3777. time: 0.25
  3778. value: 0
  3779. inSlope: 0
  3780. outSlope: 0
  3781. tangentMode: 136
  3782. weightedMode: 0
  3783. inWeight: 0.33333334
  3784. outWeight: 0.33333334
  3785. - serializedVersion: 3
  3786. time: 0.33333334
  3787. value: 0
  3788. inSlope: 0
  3789. outSlope: 0
  3790. tangentMode: 136
  3791. weightedMode: 0
  3792. inWeight: 0.33333334
  3793. outWeight: 0.33333334
  3794. - serializedVersion: 3
  3795. time: 0.41666666
  3796. value: 0
  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.5
  3805. value: 0
  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_LocalPosition.x
  3816. path: Front/UpperBody/HeadAnchor/Head
  3817. classID: 4
  3818. script: {fileID: 0}
  3819. - curve:
  3820. serializedVersion: 2
  3821. m_Curve:
  3822. - serializedVersion: 3
  3823. time: 0
  3824. value: 0.9
  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.25
  3833. value: 0.8
  3834. inSlope: 0
  3835. outSlope: 0
  3836. tangentMode: 136
  3837. weightedMode: 0
  3838. inWeight: 0.33333334
  3839. outWeight: 0.33333334
  3840. - serializedVersion: 3
  3841. time: 0.33333334
  3842. value: 0.8
  3843. inSlope: 0
  3844. outSlope: 0
  3845. tangentMode: 136
  3846. weightedMode: 0
  3847. inWeight: 0.33333334
  3848. outWeight: 0.33333334
  3849. - serializedVersion: 3
  3850. time: 0.41666666
  3851. value: 0.95
  3852. inSlope: 0
  3853. outSlope: 0
  3854. tangentMode: 136
  3855. weightedMode: 0
  3856. inWeight: 0.33333334
  3857. outWeight: 0.33333334
  3858. - serializedVersion: 3
  3859. time: 0.5
  3860. value: 0.9
  3861. inSlope: 0
  3862. outSlope: 0
  3863. tangentMode: 136
  3864. weightedMode: 0
  3865. inWeight: 0.33333334
  3866. outWeight: 0.33333334
  3867. m_PreInfinity: 2
  3868. m_PostInfinity: 2
  3869. m_RotationOrder: 4
  3870. attribute: m_LocalPosition.y
  3871. path: Front/UpperBody/HeadAnchor/Head
  3872. classID: 4
  3873. script: {fileID: 0}
  3874. - curve:
  3875. serializedVersion: 2
  3876. m_Curve:
  3877. - serializedVersion: 3
  3878. time: 0
  3879. value: 0
  3880. inSlope: 0
  3881. outSlope: 0
  3882. tangentMode: 136
  3883. weightedMode: 0
  3884. inWeight: 0.33333334
  3885. outWeight: 0.33333334
  3886. - serializedVersion: 3
  3887. time: 0.25
  3888. value: 0
  3889. inSlope: 0
  3890. outSlope: 0
  3891. tangentMode: 136
  3892. weightedMode: 0
  3893. inWeight: 0.33333334
  3894. outWeight: 0.33333334
  3895. - serializedVersion: 3
  3896. time: 0.33333334
  3897. value: 0
  3898. inSlope: 0
  3899. outSlope: 0
  3900. tangentMode: 136
  3901. weightedMode: 0
  3902. inWeight: 0.33333334
  3903. outWeight: 0.33333334
  3904. - serializedVersion: 3
  3905. time: 0.41666666
  3906. value: 0
  3907. inSlope: 0
  3908. outSlope: 0
  3909. tangentMode: 136
  3910. weightedMode: 0
  3911. inWeight: 0.33333334
  3912. outWeight: 0.33333334
  3913. - serializedVersion: 3
  3914. time: 0.5
  3915. value: 0
  3916. inSlope: 0
  3917. outSlope: 0
  3918. tangentMode: 136
  3919. weightedMode: 0
  3920. inWeight: 0.33333334
  3921. outWeight: 0.33333334
  3922. m_PreInfinity: 2
  3923. m_PostInfinity: 2
  3924. m_RotationOrder: 4
  3925. attribute: m_LocalPosition.z
  3926. path: Front/UpperBody/HeadAnchor/Head
  3927. classID: 4
  3928. script: {fileID: 0}
  3929. - curve:
  3930. serializedVersion: 2
  3931. m_Curve:
  3932. - serializedVersion: 3
  3933. time: 0
  3934. value: 0
  3935. inSlope: 0
  3936. outSlope: 0
  3937. tangentMode: 136
  3938. weightedMode: 0
  3939. inWeight: 0.33333334
  3940. outWeight: 0.33333334
  3941. - serializedVersion: 3
  3942. time: 0.083333336
  3943. value: 0
  3944. inSlope: 0
  3945. outSlope: 0
  3946. tangentMode: 136
  3947. weightedMode: 0
  3948. inWeight: 0.33333334
  3949. outWeight: 0.33333334
  3950. - serializedVersion: 3
  3951. time: 0.25
  3952. value: 0
  3953. inSlope: 0
  3954. outSlope: 0
  3955. tangentMode: 136
  3956. weightedMode: 0
  3957. inWeight: 0.33333334
  3958. outWeight: 0.33333334
  3959. - serializedVersion: 3
  3960. time: 0.33333334
  3961. value: 0
  3962. inSlope: 0
  3963. outSlope: 0
  3964. tangentMode: 136
  3965. weightedMode: 0
  3966. inWeight: 0.33333334
  3967. outWeight: 0.33333334
  3968. - serializedVersion: 3
  3969. time: 0.41666666
  3970. value: 0
  3971. inSlope: 0
  3972. outSlope: 0
  3973. tangentMode: 136
  3974. weightedMode: 0
  3975. inWeight: 0.33333334
  3976. outWeight: 0.33333334
  3977. - serializedVersion: 3
  3978. time: 0.5
  3979. value: 0
  3980. inSlope: 0
  3981. outSlope: 0
  3982. tangentMode: 136
  3983. weightedMode: 0
  3984. inWeight: 0.33333334
  3985. outWeight: 0.33333334
  3986. - serializedVersion: 3
  3987. time: 0.6666667
  3988. value: 0
  3989. inSlope: 0
  3990. outSlope: 0
  3991. tangentMode: 136
  3992. weightedMode: 0
  3993. inWeight: 0.33333334
  3994. outWeight: 0.33333334
  3995. m_PreInfinity: 2
  3996. m_PostInfinity: 2
  3997. m_RotationOrder: 4
  3998. attribute: localEulerAnglesRaw.x
  3999. path: Back/UpperBody/ArmLAnchor/ArmL
  4000. classID: 4
  4001. script: {fileID: 0}
  4002. - curve:
  4003. serializedVersion: 2
  4004. m_Curve:
  4005. - serializedVersion: 3
  4006. time: 0
  4007. value: 0
  4008. inSlope: 0
  4009. outSlope: 0
  4010. tangentMode: 136
  4011. weightedMode: 0
  4012. inWeight: 0.33333334
  4013. outWeight: 0.33333334
  4014. - serializedVersion: 3
  4015. time: 0.083333336
  4016. value: 0
  4017. inSlope: 0
  4018. outSlope: 0
  4019. tangentMode: 136
  4020. weightedMode: 0
  4021. inWeight: 0.33333334
  4022. outWeight: 0.33333334
  4023. - serializedVersion: 3
  4024. time: 0.25
  4025. value: 0
  4026. inSlope: 0
  4027. outSlope: 0
  4028. tangentMode: 136
  4029. weightedMode: 0
  4030. inWeight: 0.33333334
  4031. outWeight: 0.33333334
  4032. - serializedVersion: 3
  4033. time: 0.33333334
  4034. value: 0
  4035. inSlope: 0
  4036. outSlope: 0
  4037. tangentMode: 136
  4038. weightedMode: 0
  4039. inWeight: 0.33333334
  4040. outWeight: 0.33333334
  4041. - serializedVersion: 3
  4042. time: 0.41666666
  4043. value: 0
  4044. inSlope: 0
  4045. outSlope: 0
  4046. tangentMode: 136
  4047. weightedMode: 0
  4048. inWeight: 0.33333334
  4049. outWeight: 0.33333334
  4050. - serializedVersion: 3
  4051. time: 0.5
  4052. value: 0
  4053. inSlope: 0
  4054. outSlope: 0
  4055. tangentMode: 136
  4056. weightedMode: 0
  4057. inWeight: 0.33333334
  4058. outWeight: 0.33333334
  4059. - serializedVersion: 3
  4060. time: 0.6666667
  4061. value: 0
  4062. inSlope: 0
  4063. outSlope: 0
  4064. tangentMode: 136
  4065. weightedMode: 0
  4066. inWeight: 0.33333334
  4067. outWeight: 0.33333334
  4068. m_PreInfinity: 2
  4069. m_PostInfinity: 2
  4070. m_RotationOrder: 4
  4071. attribute: localEulerAnglesRaw.y
  4072. path: Back/UpperBody/ArmLAnchor/ArmL
  4073. classID: 4
  4074. script: {fileID: 0}
  4075. - curve:
  4076. serializedVersion: 2
  4077. m_Curve:
  4078. - serializedVersion: 3
  4079. time: 0
  4080. value: -20
  4081. inSlope: 0
  4082. outSlope: 0
  4083. tangentMode: 136
  4084. weightedMode: 0
  4085. inWeight: 0.33333334
  4086. outWeight: 0.33333334
  4087. - serializedVersion: 3
  4088. time: 0.083333336
  4089. value: 10
  4090. inSlope: 0
  4091. outSlope: 0
  4092. tangentMode: 136
  4093. weightedMode: 0
  4094. inWeight: 0.33333334
  4095. outWeight: 0.33333334
  4096. - serializedVersion: 3
  4097. time: 0.25
  4098. value: 10
  4099. inSlope: 0
  4100. outSlope: 0
  4101. tangentMode: 136
  4102. weightedMode: 0
  4103. inWeight: 0.33333334
  4104. outWeight: 0.33333334
  4105. - serializedVersion: 3
  4106. time: 0.33333334
  4107. value: 10
  4108. inSlope: 0
  4109. outSlope: 0
  4110. tangentMode: 136
  4111. weightedMode: 0
  4112. inWeight: 0.33333334
  4113. outWeight: 0.33333334
  4114. - serializedVersion: 3
  4115. time: 0.41666666
  4116. value: 10
  4117. inSlope: 0
  4118. outSlope: 0
  4119. tangentMode: 136
  4120. weightedMode: 0
  4121. inWeight: 0.33333334
  4122. outWeight: 0.33333334
  4123. - serializedVersion: 3
  4124. time: 0.5
  4125. value: 10
  4126. inSlope: 0
  4127. outSlope: 0
  4128. tangentMode: 136
  4129. weightedMode: 0
  4130. inWeight: 0.33333334
  4131. outWeight: 0.33333334
  4132. - serializedVersion: 3
  4133. time: 0.6666667
  4134. value: -20
  4135. inSlope: 0
  4136. outSlope: 0
  4137. tangentMode: 136
  4138. weightedMode: 0
  4139. inWeight: 0.33333334
  4140. outWeight: 0.33333334
  4141. m_PreInfinity: 2
  4142. m_PostInfinity: 2
  4143. m_RotationOrder: 4
  4144. attribute: localEulerAnglesRaw.z
  4145. path: Back/UpperBody/ArmLAnchor/ArmL
  4146. classID: 4
  4147. script: {fileID: 0}
  4148. - curve:
  4149. serializedVersion: 2
  4150. m_Curve:
  4151. - serializedVersion: 3
  4152. time: 0
  4153. value: 0
  4154. inSlope: 0
  4155. outSlope: 0
  4156. tangentMode: 136
  4157. weightedMode: 0
  4158. inWeight: 0.33333334
  4159. outWeight: 0.33333334
  4160. - serializedVersion: 3
  4161. time: 0.25
  4162. value: 0
  4163. inSlope: 0
  4164. outSlope: 0
  4165. tangentMode: 136
  4166. weightedMode: 0
  4167. inWeight: 0.33333334
  4168. outWeight: 0.33333334
  4169. - serializedVersion: 3
  4170. time: 0.33333334
  4171. value: 0
  4172. inSlope: 0
  4173. outSlope: 0
  4174. tangentMode: 136
  4175. weightedMode: 0
  4176. inWeight: 0.33333334
  4177. outWeight: 0.33333334
  4178. - serializedVersion: 3
  4179. time: 0.41666666
  4180. value: 0
  4181. inSlope: 0
  4182. outSlope: 0
  4183. tangentMode: 136
  4184. weightedMode: 0
  4185. inWeight: 0.33333334
  4186. outWeight: 0.33333334
  4187. - serializedVersion: 3
  4188. time: 0.5
  4189. value: 0
  4190. inSlope: 0
  4191. outSlope: 0
  4192. tangentMode: 136
  4193. weightedMode: 0
  4194. inWeight: 0.33333334
  4195. outWeight: 0.33333334
  4196. m_PreInfinity: 2
  4197. m_PostInfinity: 2
  4198. m_RotationOrder: 4
  4199. attribute: m_LocalPosition.x
  4200. path: Back/UpperBody/HeadAnchor/Head
  4201. classID: 4
  4202. script: {fileID: 0}
  4203. - curve:
  4204. serializedVersion: 2
  4205. m_Curve:
  4206. - serializedVersion: 3
  4207. time: 0
  4208. value: 0.9
  4209. inSlope: 0
  4210. outSlope: 0
  4211. tangentMode: 136
  4212. weightedMode: 0
  4213. inWeight: 0.33333334
  4214. outWeight: 0.33333334
  4215. - serializedVersion: 3
  4216. time: 0.25
  4217. value: 0.8
  4218. inSlope: 0
  4219. outSlope: 0
  4220. tangentMode: 136
  4221. weightedMode: 0
  4222. inWeight: 0.33333334
  4223. outWeight: 0.33333334
  4224. - serializedVersion: 3
  4225. time: 0.33333334
  4226. value: 0.8
  4227. inSlope: 0
  4228. outSlope: 0
  4229. tangentMode: 136
  4230. weightedMode: 0
  4231. inWeight: 0.33333334
  4232. outWeight: 0.33333334
  4233. - serializedVersion: 3
  4234. time: 0.41666666
  4235. value: 0.95
  4236. inSlope: 0
  4237. outSlope: 0
  4238. tangentMode: 136
  4239. weightedMode: 0
  4240. inWeight: 0.33333334
  4241. outWeight: 0.33333334
  4242. - serializedVersion: 3
  4243. time: 0.5
  4244. value: 0.9
  4245. inSlope: 0
  4246. outSlope: 0
  4247. tangentMode: 136
  4248. weightedMode: 0
  4249. inWeight: 0.33333334
  4250. outWeight: 0.33333334
  4251. m_PreInfinity: 2
  4252. m_PostInfinity: 2
  4253. m_RotationOrder: 4
  4254. attribute: m_LocalPosition.y
  4255. path: Back/UpperBody/HeadAnchor/Head
  4256. classID: 4
  4257. script: {fileID: 0}
  4258. - curve:
  4259. serializedVersion: 2
  4260. m_Curve:
  4261. - serializedVersion: 3
  4262. time: 0
  4263. value: 0
  4264. inSlope: 0
  4265. outSlope: 0
  4266. tangentMode: 136
  4267. weightedMode: 0
  4268. inWeight: 0.33333334
  4269. outWeight: 0.33333334
  4270. - serializedVersion: 3
  4271. time: 0.25
  4272. value: 0
  4273. inSlope: 0
  4274. outSlope: 0
  4275. tangentMode: 136
  4276. weightedMode: 0
  4277. inWeight: 0.33333334
  4278. outWeight: 0.33333334
  4279. - serializedVersion: 3
  4280. time: 0.33333334
  4281. value: 0
  4282. inSlope: 0
  4283. outSlope: 0
  4284. tangentMode: 136
  4285. weightedMode: 0
  4286. inWeight: 0.33333334
  4287. outWeight: 0.33333334
  4288. - serializedVersion: 3
  4289. time: 0.41666666
  4290. value: 0
  4291. inSlope: 0
  4292. outSlope: 0
  4293. tangentMode: 136
  4294. weightedMode: 0
  4295. inWeight: 0.33333334
  4296. outWeight: 0.33333334
  4297. - serializedVersion: 3
  4298. time: 0.5
  4299. value: 0
  4300. inSlope: 0
  4301. outSlope: 0
  4302. tangentMode: 136
  4303. weightedMode: 0
  4304. inWeight: 0.33333334
  4305. outWeight: 0.33333334
  4306. m_PreInfinity: 2
  4307. m_PostInfinity: 2
  4308. m_RotationOrder: 4
  4309. attribute: m_LocalPosition.z
  4310. path: Back/UpperBody/HeadAnchor/Head
  4311. classID: 4
  4312. script: {fileID: 0}
  4313. - curve:
  4314. serializedVersion: 2
  4315. m_Curve:
  4316. - serializedVersion: 3
  4317. time: 0
  4318. value: 0
  4319. inSlope: 0
  4320. outSlope: 0
  4321. tangentMode: 136
  4322. weightedMode: 0
  4323. inWeight: 0.33333334
  4324. outWeight: 0.33333334
  4325. - serializedVersion: 3
  4326. time: 0.33333334
  4327. value: 0
  4328. inSlope: 0
  4329. outSlope: 0
  4330. tangentMode: 136
  4331. weightedMode: 0
  4332. inWeight: 0.33333334
  4333. outWeight: 0.33333334
  4334. - serializedVersion: 3
  4335. time: 0.41666666
  4336. value: 0
  4337. inSlope: 0
  4338. outSlope: 0
  4339. tangentMode: 136
  4340. weightedMode: 0
  4341. inWeight: 0.33333334
  4342. outWeight: 0.33333334
  4343. - serializedVersion: 3
  4344. time: 0.5
  4345. value: 0
  4346. inSlope: 0
  4347. outSlope: 0
  4348. tangentMode: 136
  4349. weightedMode: 0
  4350. inWeight: 0.33333334
  4351. outWeight: 0.33333334
  4352. - serializedVersion: 3
  4353. time: 0.6666667
  4354. value: 0
  4355. inSlope: 0
  4356. outSlope: 0
  4357. tangentMode: 136
  4358. weightedMode: 0
  4359. inWeight: 0.33333334
  4360. outWeight: 0.33333334
  4361. m_PreInfinity: 2
  4362. m_PostInfinity: 2
  4363. m_RotationOrder: 4
  4364. attribute: localEulerAnglesRaw.x
  4365. path: Back/UpperBody/ArmLAnchor/ArmL/HandL
  4366. classID: 4
  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.33333334
  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.41666666
  4391. value: 0
  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.5
  4400. value: 0
  4401. inSlope: 0
  4402. outSlope: 0
  4403. tangentMode: 136
  4404. weightedMode: 0
  4405. inWeight: 0.33333334
  4406. outWeight: 0.33333334
  4407. - serializedVersion: 3
  4408. time: 0.6666667
  4409. value: 0
  4410. inSlope: 0
  4411. outSlope: 0
  4412. tangentMode: 136
  4413. weightedMode: 0
  4414. inWeight: 0.33333334
  4415. outWeight: 0.33333334
  4416. m_PreInfinity: 2
  4417. m_PostInfinity: 2
  4418. m_RotationOrder: 4
  4419. attribute: localEulerAnglesRaw.y
  4420. path: Back/UpperBody/ArmLAnchor/ArmL/HandL
  4421. classID: 4
  4422. script: {fileID: 0}
  4423. - curve:
  4424. serializedVersion: 2
  4425. m_Curve:
  4426. - serializedVersion: 3
  4427. time: 0
  4428. value: 0
  4429. inSlope: 0
  4430. outSlope: 0
  4431. tangentMode: 136
  4432. weightedMode: 0
  4433. inWeight: 0.33333334
  4434. outWeight: 0.33333334
  4435. - serializedVersion: 3
  4436. time: 0.33333334
  4437. value: 50
  4438. inSlope: 0
  4439. outSlope: 0
  4440. tangentMode: 136
  4441. weightedMode: 0
  4442. inWeight: 0.33333334
  4443. outWeight: 0.33333334
  4444. - serializedVersion: 3
  4445. time: 0.41666666
  4446. value: 50
  4447. inSlope: 0
  4448. outSlope: 0
  4449. tangentMode: 136
  4450. weightedMode: 0
  4451. inWeight: 0.33333334
  4452. outWeight: 0.33333334
  4453. - serializedVersion: 3
  4454. time: 0.5
  4455. value: 50
  4456. inSlope: 0
  4457. outSlope: 0
  4458. tangentMode: 136
  4459. weightedMode: 0
  4460. inWeight: 0.33333334
  4461. outWeight: 0.33333334
  4462. - serializedVersion: 3
  4463. time: 0.6666667
  4464. value: 0
  4465. inSlope: 0
  4466. outSlope: 0
  4467. tangentMode: 136
  4468. weightedMode: 0
  4469. inWeight: 0.33333334
  4470. outWeight: 0.33333334
  4471. m_PreInfinity: 2
  4472. m_PostInfinity: 2
  4473. m_RotationOrder: 4
  4474. attribute: localEulerAnglesRaw.z
  4475. path: Back/UpperBody/ArmLAnchor/ArmL/HandL
  4476. classID: 4
  4477. script: {fileID: 0}
  4478. m_EulerEditorCurves:
  4479. - curve:
  4480. serializedVersion: 2
  4481. m_Curve: []
  4482. m_PreInfinity: 2
  4483. m_PostInfinity: 2
  4484. m_RotationOrder: 4
  4485. attribute: m_LocalEulerAngles.z
  4486. path: Front/UpperBody/ArmLAnchor/ArmL/HandL
  4487. classID: 4
  4488. script: {fileID: 0}
  4489. - curve:
  4490. serializedVersion: 2
  4491. m_Curve: []
  4492. m_PreInfinity: 2
  4493. m_PostInfinity: 2
  4494. m_RotationOrder: 4
  4495. attribute: m_LocalEulerAngles.y
  4496. path: Front/UpperBody/ArmLAnchor/ArmL/HandL
  4497. classID: 4
  4498. script: {fileID: 0}
  4499. - curve:
  4500. serializedVersion: 2
  4501. m_Curve: []
  4502. m_PreInfinity: 2
  4503. m_PostInfinity: 2
  4504. m_RotationOrder: 4
  4505. attribute: m_LocalEulerAngles.x
  4506. path: Front/UpperBody/ArmLAnchor/ArmL/HandL
  4507. classID: 4
  4508. script: {fileID: 0}
  4509. - curve:
  4510. serializedVersion: 2
  4511. m_Curve: []
  4512. m_PreInfinity: 2
  4513. m_PostInfinity: 2
  4514. m_RotationOrder: 4
  4515. attribute: m_LocalEulerAngles.z
  4516. path: Left/UpperBody/ArmRAnchor/ArmR
  4517. classID: 4
  4518. script: {fileID: 0}
  4519. - curve:
  4520. serializedVersion: 2
  4521. m_Curve: []
  4522. m_PreInfinity: 2
  4523. m_PostInfinity: 2
  4524. m_RotationOrder: 4
  4525. attribute: m_LocalEulerAngles.y
  4526. path: Left/UpperBody/ArmRAnchor/ArmR
  4527. classID: 4
  4528. script: {fileID: 0}
  4529. - curve:
  4530. serializedVersion: 2
  4531. m_Curve: []
  4532. m_PreInfinity: 2
  4533. m_PostInfinity: 2
  4534. m_RotationOrder: 4
  4535. attribute: m_LocalEulerAngles.x
  4536. path: Left/UpperBody/ArmRAnchor/ArmR
  4537. classID: 4
  4538. script: {fileID: 0}
  4539. - curve:
  4540. serializedVersion: 2
  4541. m_Curve: []
  4542. m_PreInfinity: 2
  4543. m_PostInfinity: 2
  4544. m_RotationOrder: 4
  4545. attribute: m_LocalEulerAngles.z
  4546. path: Right/UpperBody
  4547. classID: 4
  4548. script: {fileID: 0}
  4549. - curve:
  4550. serializedVersion: 2
  4551. m_Curve: []
  4552. m_PreInfinity: 2
  4553. m_PostInfinity: 2
  4554. m_RotationOrder: 4
  4555. attribute: m_LocalEulerAngles.y
  4556. path: Right/UpperBody
  4557. classID: 4
  4558. script: {fileID: 0}
  4559. - curve:
  4560. serializedVersion: 2
  4561. m_Curve: []
  4562. m_PreInfinity: 2
  4563. m_PostInfinity: 2
  4564. m_RotationOrder: 4
  4565. attribute: m_LocalEulerAngles.x
  4566. path: Right/UpperBody
  4567. classID: 4
  4568. script: {fileID: 0}
  4569. - curve:
  4570. serializedVersion: 2
  4571. m_Curve: []
  4572. m_PreInfinity: 2
  4573. m_PostInfinity: 2
  4574. m_RotationOrder: 4
  4575. attribute: m_LocalEulerAngles.z
  4576. path: Left/UpperBody/ArmLAnchor/ArmL/HandL
  4577. classID: 4
  4578. script: {fileID: 0}
  4579. - curve:
  4580. serializedVersion: 2
  4581. m_Curve: []
  4582. m_PreInfinity: 2
  4583. m_PostInfinity: 2
  4584. m_RotationOrder: 4
  4585. attribute: m_LocalEulerAngles.y
  4586. path: Left/UpperBody/ArmLAnchor/ArmL/HandL
  4587. classID: 4
  4588. script: {fileID: 0}
  4589. - curve:
  4590. serializedVersion: 2
  4591. m_Curve: []
  4592. m_PreInfinity: 2
  4593. m_PostInfinity: 2
  4594. m_RotationOrder: 4
  4595. attribute: m_LocalEulerAngles.x
  4596. path: Left/UpperBody/ArmLAnchor/ArmL/HandL
  4597. classID: 4
  4598. script: {fileID: 0}
  4599. - curve:
  4600. serializedVersion: 2
  4601. m_Curve: []
  4602. m_PreInfinity: 2
  4603. m_PostInfinity: 2
  4604. m_RotationOrder: 4
  4605. attribute: m_LocalEulerAngles.z
  4606. path: Right/UpperBody/ArmLAnchor/ArmL
  4607. classID: 4
  4608. script: {fileID: 0}
  4609. - curve:
  4610. serializedVersion: 2
  4611. m_Curve: []
  4612. m_PreInfinity: 2
  4613. m_PostInfinity: 2
  4614. m_RotationOrder: 4
  4615. attribute: m_LocalEulerAngles.y
  4616. path: Right/UpperBody/ArmLAnchor/ArmL
  4617. classID: 4
  4618. script: {fileID: 0}
  4619. - curve:
  4620. serializedVersion: 2
  4621. m_Curve: []
  4622. m_PreInfinity: 2
  4623. m_PostInfinity: 2
  4624. m_RotationOrder: 4
  4625. attribute: m_LocalEulerAngles.x
  4626. path: Right/UpperBody/ArmLAnchor/ArmL
  4627. classID: 4
  4628. script: {fileID: 0}
  4629. - curve:
  4630. serializedVersion: 2
  4631. m_Curve: []
  4632. m_PreInfinity: 2
  4633. m_PostInfinity: 2
  4634. m_RotationOrder: 4
  4635. attribute: m_LocalEulerAngles.z
  4636. path: Left/UpperBody/HeadAnchor/Head
  4637. classID: 4
  4638. script: {fileID: 0}
  4639. - curve:
  4640. serializedVersion: 2
  4641. m_Curve: []
  4642. m_PreInfinity: 2
  4643. m_PostInfinity: 2
  4644. m_RotationOrder: 4
  4645. attribute: m_LocalEulerAngles.y
  4646. path: Left/UpperBody/HeadAnchor/Head
  4647. classID: 4
  4648. script: {fileID: 0}
  4649. - curve:
  4650. serializedVersion: 2
  4651. m_Curve: []
  4652. m_PreInfinity: 2
  4653. m_PostInfinity: 2
  4654. m_RotationOrder: 4
  4655. attribute: m_LocalEulerAngles.x
  4656. path: Left/UpperBody/HeadAnchor/Head
  4657. classID: 4
  4658. script: {fileID: 0}
  4659. - curve:
  4660. serializedVersion: 2
  4661. m_Curve: []
  4662. m_PreInfinity: 2
  4663. m_PostInfinity: 2
  4664. m_RotationOrder: 4
  4665. attribute: m_LocalEulerAngles.z
  4666. path: Front/UpperBody/ArmLAnchor/ArmL
  4667. classID: 4
  4668. script: {fileID: 0}
  4669. - curve:
  4670. serializedVersion: 2
  4671. m_Curve: []
  4672. m_PreInfinity: 2
  4673. m_PostInfinity: 2
  4674. m_RotationOrder: 4
  4675. attribute: m_LocalEulerAngles.y
  4676. path: Front/UpperBody/ArmLAnchor/ArmL
  4677. classID: 4
  4678. script: {fileID: 0}
  4679. - curve:
  4680. serializedVersion: 2
  4681. m_Curve: []
  4682. m_PreInfinity: 2
  4683. m_PostInfinity: 2
  4684. m_RotationOrder: 4
  4685. attribute: m_LocalEulerAngles.x
  4686. path: Front/UpperBody/ArmLAnchor/ArmL
  4687. classID: 4
  4688. script: {fileID: 0}
  4689. - curve:
  4690. serializedVersion: 2
  4691. m_Curve: []
  4692. m_PreInfinity: 2
  4693. m_PostInfinity: 2
  4694. m_RotationOrder: 4
  4695. attribute: m_LocalEulerAngles.z
  4696. path: Right/UpperBody/ArmLAnchor/ArmL/HandL
  4697. classID: 4
  4698. script: {fileID: 0}
  4699. - curve:
  4700. serializedVersion: 2
  4701. m_Curve: []
  4702. m_PreInfinity: 2
  4703. m_PostInfinity: 2
  4704. m_RotationOrder: 4
  4705. attribute: m_LocalEulerAngles.y
  4706. path: Right/UpperBody/ArmLAnchor/ArmL/HandL
  4707. classID: 4
  4708. script: {fileID: 0}
  4709. - curve:
  4710. serializedVersion: 2
  4711. m_Curve: []
  4712. m_PreInfinity: 2
  4713. m_PostInfinity: 2
  4714. m_RotationOrder: 4
  4715. attribute: m_LocalEulerAngles.x
  4716. path: Right/UpperBody/ArmLAnchor/ArmL/HandL
  4717. classID: 4
  4718. script: {fileID: 0}
  4719. - curve:
  4720. serializedVersion: 2
  4721. m_Curve: []
  4722. m_PreInfinity: 2
  4723. m_PostInfinity: 2
  4724. m_RotationOrder: 4
  4725. attribute: m_LocalEulerAngles.z
  4726. path: Left/UpperBody
  4727. classID: 4
  4728. script: {fileID: 0}
  4729. - curve:
  4730. serializedVersion: 2
  4731. m_Curve: []
  4732. m_PreInfinity: 2
  4733. m_PostInfinity: 2
  4734. m_RotationOrder: 4
  4735. attribute: m_LocalEulerAngles.y
  4736. path: Left/UpperBody
  4737. classID: 4
  4738. script: {fileID: 0}
  4739. - curve:
  4740. serializedVersion: 2
  4741. m_Curve: []
  4742. m_PreInfinity: 2
  4743. m_PostInfinity: 2
  4744. m_RotationOrder: 4
  4745. attribute: m_LocalEulerAngles.x
  4746. path: Left/UpperBody
  4747. classID: 4
  4748. script: {fileID: 0}
  4749. - curve:
  4750. serializedVersion: 2
  4751. m_Curve: []
  4752. m_PreInfinity: 2
  4753. m_PostInfinity: 2
  4754. m_RotationOrder: 4
  4755. attribute: m_LocalEulerAngles.z
  4756. path: Left/UpperBody/ArmLAnchor/ArmL
  4757. classID: 4
  4758. script: {fileID: 0}
  4759. - curve:
  4760. serializedVersion: 2
  4761. m_Curve: []
  4762. m_PreInfinity: 2
  4763. m_PostInfinity: 2
  4764. m_RotationOrder: 4
  4765. attribute: m_LocalEulerAngles.y
  4766. path: Left/UpperBody/ArmLAnchor/ArmL
  4767. classID: 4
  4768. script: {fileID: 0}
  4769. - curve:
  4770. serializedVersion: 2
  4771. m_Curve: []
  4772. m_PreInfinity: 2
  4773. m_PostInfinity: 2
  4774. m_RotationOrder: 4
  4775. attribute: m_LocalEulerAngles.x
  4776. path: Left/UpperBody/ArmLAnchor/ArmL
  4777. classID: 4
  4778. script: {fileID: 0}
  4779. - curve:
  4780. serializedVersion: 2
  4781. m_Curve: []
  4782. m_PreInfinity: 2
  4783. m_PostInfinity: 2
  4784. m_RotationOrder: 4
  4785. attribute: m_LocalEulerAngles.z
  4786. path: Right/UpperBody/ArmRAnchor/ArmR
  4787. classID: 4
  4788. script: {fileID: 0}
  4789. - curve:
  4790. serializedVersion: 2
  4791. m_Curve: []
  4792. m_PreInfinity: 2
  4793. m_PostInfinity: 2
  4794. m_RotationOrder: 4
  4795. attribute: m_LocalEulerAngles.y
  4796. path: Right/UpperBody/ArmRAnchor/ArmR
  4797. classID: 4
  4798. script: {fileID: 0}
  4799. - curve:
  4800. serializedVersion: 2
  4801. m_Curve: []
  4802. m_PreInfinity: 2
  4803. m_PostInfinity: 2
  4804. m_RotationOrder: 4
  4805. attribute: m_LocalEulerAngles.x
  4806. path: Right/UpperBody/ArmRAnchor/ArmR
  4807. classID: 4
  4808. script: {fileID: 0}
  4809. - curve:
  4810. serializedVersion: 2
  4811. m_Curve: []
  4812. m_PreInfinity: 2
  4813. m_PostInfinity: 2
  4814. m_RotationOrder: 4
  4815. attribute: m_LocalEulerAngles.x
  4816. path: Right/UpperBody/HeadAnchor/Head
  4817. classID: 4
  4818. script: {fileID: 0}
  4819. - curve:
  4820. serializedVersion: 2
  4821. m_Curve: []
  4822. m_PreInfinity: 2
  4823. m_PostInfinity: 2
  4824. m_RotationOrder: 4
  4825. attribute: m_LocalEulerAngles.y
  4826. path: Right/UpperBody/HeadAnchor/Head
  4827. classID: 4
  4828. script: {fileID: 0}
  4829. - curve:
  4830. serializedVersion: 2
  4831. m_Curve: []
  4832. m_PreInfinity: 2
  4833. m_PostInfinity: 2
  4834. m_RotationOrder: 4
  4835. attribute: m_LocalEulerAngles.z
  4836. path: Right/UpperBody/HeadAnchor/Head
  4837. classID: 4
  4838. script: {fileID: 0}
  4839. - curve:
  4840. serializedVersion: 2
  4841. m_Curve: []
  4842. m_PreInfinity: 2
  4843. m_PostInfinity: 2
  4844. m_RotationOrder: 4
  4845. attribute: m_LocalEulerAngles.z
  4846. path: Back/UpperBody/ArmLAnchor/ArmL/HandL
  4847. classID: 4
  4848. script: {fileID: 0}
  4849. - curve:
  4850. serializedVersion: 2
  4851. m_Curve: []
  4852. m_PreInfinity: 2
  4853. m_PostInfinity: 2
  4854. m_RotationOrder: 4
  4855. attribute: m_LocalEulerAngles.y
  4856. path: Back/UpperBody/ArmLAnchor/ArmL/HandL
  4857. classID: 4
  4858. script: {fileID: 0}
  4859. - curve:
  4860. serializedVersion: 2
  4861. m_Curve: []
  4862. m_PreInfinity: 2
  4863. m_PostInfinity: 2
  4864. m_RotationOrder: 4
  4865. attribute: m_LocalEulerAngles.x
  4866. path: Back/UpperBody/ArmLAnchor/ArmL/HandL
  4867. classID: 4
  4868. script: {fileID: 0}
  4869. - curve:
  4870. serializedVersion: 2
  4871. m_Curve: []
  4872. m_PreInfinity: 2
  4873. m_PostInfinity: 2
  4874. m_RotationOrder: 4
  4875. attribute: m_LocalEulerAngles.x
  4876. path: Back/UpperBody/ArmLAnchor/ArmL
  4877. classID: 4
  4878. script: {fileID: 0}
  4879. - curve:
  4880. serializedVersion: 2
  4881. m_Curve: []
  4882. m_PreInfinity: 2
  4883. m_PostInfinity: 2
  4884. m_RotationOrder: 4
  4885. attribute: m_LocalEulerAngles.y
  4886. path: Back/UpperBody/ArmLAnchor/ArmL
  4887. classID: 4
  4888. script: {fileID: 0}
  4889. - curve:
  4890. serializedVersion: 2
  4891. m_Curve: []
  4892. m_PreInfinity: 2
  4893. m_PostInfinity: 2
  4894. m_RotationOrder: 4
  4895. attribute: m_LocalEulerAngles.z
  4896. path: Back/UpperBody/ArmLAnchor/ArmL
  4897. classID: 4
  4898. script: {fileID: 0}
  4899. m_HasGenericRootTransform: 0
  4900. m_HasMotionFloatCurves: 0
  4901. m_Events:
  4902. - time: 0.33333334
  4903. functionName: CustomEvent
  4904. data: Shot
  4905. objectReferenceParameter: {fileID: 0}
  4906. floatParameter: 0
  4907. intParameter: 0
  4908. messageOptions: 0