ChargeBow.anim 135 KB

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