ClimbL.anim 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241
  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: ClimbL
  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: 10}
  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. m_PreInfinity: 2
  30. m_PostInfinity: 2
  31. m_RotationOrder: 4
  32. path: Back/LowerBody/LegL
  33. - curve:
  34. serializedVersion: 2
  35. m_Curve:
  36. - serializedVersion: 3
  37. time: 0
  38. value: {x: 0, y: 0, z: -10}
  39. inSlope: {x: 0, y: 0, z: 0}
  40. outSlope: {x: 0, y: 0, z: 0}
  41. tangentMode: 0
  42. weightedMode: 0
  43. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  44. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  45. m_PreInfinity: 2
  46. m_PostInfinity: 2
  47. m_RotationOrder: 4
  48. path: Back/LowerBody/LegR
  49. - curve:
  50. serializedVersion: 2
  51. m_Curve:
  52. - serializedVersion: 3
  53. time: 0
  54. value: {x: 0, y: 0, z: -10}
  55. inSlope: {x: 0, y: 0, z: 0}
  56. outSlope: {x: 0, y: 0, z: 0}
  57. tangentMode: 0
  58. weightedMode: 0
  59. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  60. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  61. - serializedVersion: 3
  62. time: 0.5
  63. value: {x: 0, y: 0, z: -10}
  64. inSlope: {x: 0, y: 0, z: 0}
  65. outSlope: {x: 0, y: 0, z: 0}
  66. tangentMode: 0
  67. weightedMode: 0
  68. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  69. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  70. m_PreInfinity: 2
  71. m_PostInfinity: 2
  72. m_RotationOrder: 4
  73. path: Left/LowerBody
  74. - curve:
  75. serializedVersion: 2
  76. m_Curve:
  77. - serializedVersion: 3
  78. time: 0
  79. value: {x: 0, y: 0, z: 10}
  80. inSlope: {x: 0, y: 0, z: 0}
  81. outSlope: {x: 0, y: 0, z: 0}
  82. tangentMode: 0
  83. weightedMode: 0
  84. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  85. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  86. - serializedVersion: 3
  87. time: 0.5
  88. value: {x: 0, y: 0, z: 10}
  89. inSlope: {x: 0, y: 0, z: 0}
  90. outSlope: {x: 0, y: 0, z: 0}
  91. tangentMode: 0
  92. weightedMode: 0
  93. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  94. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  95. m_PreInfinity: 2
  96. m_PostInfinity: 2
  97. m_RotationOrder: 4
  98. path: Right/LowerBody
  99. - curve:
  100. serializedVersion: 2
  101. m_Curve:
  102. - serializedVersion: 3
  103. time: 0
  104. value: {x: 0, y: 0, z: 30}
  105. inSlope: {x: 0, y: 0, z: -120}
  106. outSlope: {x: 0, y: 0, z: -120}
  107. tangentMode: 0
  108. weightedMode: 0
  109. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  110. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  111. - serializedVersion: 3
  112. time: 0.25
  113. value: {x: 0, y: 0, z: 0}
  114. inSlope: {x: 0, y: 0, z: 0}
  115. outSlope: {x: 0, y: 0, z: 0}
  116. tangentMode: 0
  117. weightedMode: 0
  118. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  119. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  120. - serializedVersion: 3
  121. time: 0.5
  122. value: {x: 0, y: 0, z: 30}
  123. inSlope: {x: 0, y: 0, z: 120}
  124. outSlope: {x: 0, y: 0, z: 120}
  125. tangentMode: 0
  126. weightedMode: 0
  127. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  128. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  129. m_PreInfinity: 2
  130. m_PostInfinity: 2
  131. m_RotationOrder: 4
  132. path: Right/LowerBody/LegL
  133. - curve:
  134. serializedVersion: 2
  135. m_Curve:
  136. - serializedVersion: 3
  137. time: 0
  138. value: {x: 0, y: 0, z: 0}
  139. inSlope: {x: 0, y: 0, z: 120}
  140. outSlope: {x: 0, y: 0, z: 120}
  141. tangentMode: 0
  142. weightedMode: 0
  143. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  144. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  145. - serializedVersion: 3
  146. time: 0.25
  147. value: {x: 0, y: 0, z: 30}
  148. inSlope: {x: 0, y: 0, z: 0}
  149. outSlope: {x: 0, y: 0, z: 0}
  150. tangentMode: 0
  151. weightedMode: 0
  152. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  153. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  154. - serializedVersion: 3
  155. time: 0.5
  156. value: {x: 0, y: 0, z: 0}
  157. inSlope: {x: 0, y: 0, z: -120}
  158. outSlope: {x: 0, y: 0, z: -120}
  159. tangentMode: 0
  160. weightedMode: 0
  161. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  162. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  163. m_PreInfinity: 2
  164. m_PostInfinity: 2
  165. m_RotationOrder: 4
  166. path: Right/LowerBody/LegR
  167. - curve:
  168. serializedVersion: 2
  169. m_Curve:
  170. - serializedVersion: 3
  171. time: 0
  172. value: {x: 0, y: 0, z: -30}
  173. inSlope: {x: 0, y: 0, z: 120}
  174. outSlope: {x: 0, y: 0, z: 120}
  175. tangentMode: 0
  176. weightedMode: 0
  177. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  178. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  179. - serializedVersion: 3
  180. time: 0.25
  181. value: {x: 0, y: 0, z: 0}
  182. inSlope: {x: 0, y: 0, z: 0}
  183. outSlope: {x: 0, y: 0, z: 0}
  184. tangentMode: 0
  185. weightedMode: 0
  186. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  187. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  188. - serializedVersion: 3
  189. time: 0.5
  190. value: {x: 0, y: 0, z: -30}
  191. inSlope: {x: 0, y: 0, z: -120}
  192. outSlope: {x: 0, y: 0, z: -120}
  193. tangentMode: 0
  194. weightedMode: 0
  195. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  196. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  197. m_PreInfinity: 2
  198. m_PostInfinity: 2
  199. m_RotationOrder: 4
  200. path: Left/LowerBody/LegL
  201. - curve:
  202. serializedVersion: 2
  203. m_Curve:
  204. - serializedVersion: 3
  205. time: 0
  206. value: {x: 0, y: 0, z: 0}
  207. inSlope: {x: 0, y: 0, z: -120}
  208. outSlope: {x: 0, y: 0, z: -120}
  209. tangentMode: 0
  210. weightedMode: 0
  211. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  212. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  213. - serializedVersion: 3
  214. time: 0.25
  215. value: {x: 0, y: 0, z: -30}
  216. inSlope: {x: 0, y: 0, z: 0}
  217. outSlope: {x: 0, y: 0, z: 0}
  218. tangentMode: 0
  219. weightedMode: 0
  220. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  221. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  222. - serializedVersion: 3
  223. time: 0.5
  224. value: {x: 0, y: 0, z: 0}
  225. inSlope: {x: 0, y: 0, z: 120}
  226. outSlope: {x: 0, y: 0, z: 120}
  227. tangentMode: 0
  228. weightedMode: 0
  229. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  230. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  231. m_PreInfinity: 2
  232. m_PostInfinity: 2
  233. m_RotationOrder: 4
  234. path: Left/LowerBody/LegR
  235. m_PositionCurves:
  236. - curve:
  237. serializedVersion: 2
  238. m_Curve:
  239. - serializedVersion: 3
  240. time: 0
  241. value: {x: -0.3, y: 0.2, z: 0}
  242. inSlope: {x: 0, y: -0.8, z: 0}
  243. outSlope: {x: 0, y: -0.8, z: 0}
  244. tangentMode: 0
  245. weightedMode: 0
  246. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  247. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  248. - serializedVersion: 3
  249. time: 0.25
  250. value: {x: -0.3, y: 0, z: 0}
  251. inSlope: {x: 0, y: 0, z: 0}
  252. outSlope: {x: 0, y: 0, z: 0}
  253. tangentMode: 0
  254. weightedMode: 0
  255. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  256. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  257. - serializedVersion: 3
  258. time: 0.5
  259. value: {x: -0.3, y: 0.2, z: 0}
  260. inSlope: {x: 0, y: 0.8, z: 0}
  261. outSlope: {x: 0, y: 0.8, z: 0}
  262. tangentMode: 0
  263. weightedMode: 0
  264. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  265. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  266. m_PreInfinity: 2
  267. m_PostInfinity: 2
  268. m_RotationOrder: 4
  269. path: Back/LowerBody/LegL
  270. - curve:
  271. serializedVersion: 2
  272. m_Curve:
  273. - serializedVersion: 3
  274. time: 0
  275. value: {x: 0.3, y: 0, z: 0}
  276. inSlope: {x: 0, y: 0.8, z: 0}
  277. outSlope: {x: 0, y: 0.8, z: 0}
  278. tangentMode: 0
  279. weightedMode: 0
  280. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  281. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  282. - serializedVersion: 3
  283. time: 0.25
  284. value: {x: 0.3, y: 0.2, z: 0}
  285. inSlope: {x: 0, y: 0, z: 0}
  286. outSlope: {x: 0, y: 0, z: 0}
  287. tangentMode: 0
  288. weightedMode: 0
  289. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  290. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  291. - serializedVersion: 3
  292. time: 0.5
  293. value: {x: 0.3, y: 0, z: 0}
  294. inSlope: {x: 0, y: -0.8, z: 0}
  295. outSlope: {x: 0, y: -0.8, z: 0}
  296. tangentMode: 0
  297. weightedMode: 0
  298. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  299. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  300. m_PreInfinity: 2
  301. m_PostInfinity: 2
  302. m_RotationOrder: 4
  303. path: Back/LowerBody/LegR
  304. - curve:
  305. serializedVersion: 2
  306. m_Curve:
  307. - serializedVersion: 3
  308. time: 0
  309. value: {x: 0.15, y: 0.2, z: 0}
  310. inSlope: {x: 0, y: -0.8, z: 0}
  311. outSlope: {x: 0, y: -0.8, z: 0}
  312. tangentMode: 0
  313. weightedMode: 0
  314. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  315. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  316. - serializedVersion: 3
  317. time: 0.25
  318. value: {x: 0.15, y: 0, z: 0}
  319. inSlope: {x: 0, y: 0, z: 0}
  320. outSlope: {x: 0, y: 0, z: 0}
  321. tangentMode: 0
  322. weightedMode: 0
  323. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  324. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  325. - serializedVersion: 3
  326. time: 0.5
  327. value: {x: 0.15, y: 0.2, z: 0}
  328. inSlope: {x: 0, y: 0.8, z: 0}
  329. outSlope: {x: 0, y: 0.8, z: 0}
  330. tangentMode: 0
  331. weightedMode: 0
  332. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  333. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  334. m_PreInfinity: 2
  335. m_PostInfinity: 2
  336. m_RotationOrder: 4
  337. path: Right/LowerBody/LegL
  338. - curve:
  339. serializedVersion: 2
  340. m_Curve:
  341. - serializedVersion: 3
  342. time: 0
  343. value: {x: -0.08, y: 0, z: 0}
  344. inSlope: {x: 0, y: 0.8, z: 0}
  345. outSlope: {x: 0, y: 0.8, z: 0}
  346. tangentMode: 0
  347. weightedMode: 0
  348. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  349. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  350. - serializedVersion: 3
  351. time: 0.25
  352. value: {x: -0.08, y: 0.2, z: 0}
  353. inSlope: {x: 0, y: 0, z: 0}
  354. outSlope: {x: 0, y: 0, z: 0}
  355. tangentMode: 0
  356. weightedMode: 0
  357. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  358. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  359. - serializedVersion: 3
  360. time: 0.5
  361. value: {x: -0.08, y: 0, z: 0}
  362. inSlope: {x: 0, y: -0.8, z: 0}
  363. outSlope: {x: 0, y: -0.8, z: 0}
  364. tangentMode: 0
  365. weightedMode: 0
  366. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  367. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  368. m_PreInfinity: 2
  369. m_PostInfinity: 2
  370. m_RotationOrder: 4
  371. path: Right/LowerBody/LegR
  372. - curve:
  373. serializedVersion: 2
  374. m_Curve:
  375. - serializedVersion: 3
  376. time: 0
  377. value: {x: 0.08, y: 0.2, z: 0}
  378. inSlope: {x: 0, y: -0.8, z: 0}
  379. outSlope: {x: 0, y: -0.8, z: 0}
  380. tangentMode: 0
  381. weightedMode: 0
  382. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  383. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  384. - serializedVersion: 3
  385. time: 0.25
  386. value: {x: 0.08, y: 0, z: 0}
  387. inSlope: {x: 0, y: 0.25625, z: 0}
  388. outSlope: {x: 0, y: 0.25625, z: 0}
  389. tangentMode: 0
  390. weightedMode: 0
  391. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  392. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  393. - serializedVersion: 3
  394. time: 0.38333333
  395. value: {x: 0.08, y: 0.175, z: 0}
  396. inSlope: {x: 0, y: 0.76339287, z: 0}
  397. outSlope: {x: 0, y: 0.76339287, z: 0}
  398. tangentMode: 0
  399. weightedMode: 0
  400. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  401. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  402. - serializedVersion: 3
  403. time: 0.5
  404. value: {x: 0.08, y: 0.2, z: 0}
  405. inSlope: {x: 0, y: 0.21428575, z: 0}
  406. outSlope: {x: 0, y: 0.21428575, z: 0}
  407. tangentMode: 0
  408. weightedMode: 0
  409. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  410. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  411. m_PreInfinity: 2
  412. m_PostInfinity: 2
  413. m_RotationOrder: 4
  414. path: Left/LowerBody/LegL
  415. - curve:
  416. serializedVersion: 2
  417. m_Curve:
  418. - serializedVersion: 3
  419. time: 0
  420. value: {x: -0.15, y: 0, z: 0}
  421. inSlope: {x: 0, y: 0.8, z: 0}
  422. outSlope: {x: 0, y: 0.8, z: 0}
  423. tangentMode: 0
  424. weightedMode: 0
  425. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  426. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  427. - serializedVersion: 3
  428. time: 0.25
  429. value: {x: -0.15, y: 0.2, z: 0}
  430. inSlope: {x: 0, y: 0, z: 0}
  431. outSlope: {x: 0, y: 0, z: 0}
  432. tangentMode: 0
  433. weightedMode: 0
  434. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  435. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  436. - serializedVersion: 3
  437. time: 0.5
  438. value: {x: -0.15, y: 0, z: 0}
  439. inSlope: {x: 0, y: -0.8, z: 0}
  440. outSlope: {x: 0, y: -0.8, z: 0}
  441. tangentMode: 0
  442. weightedMode: 0
  443. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  444. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  445. m_PreInfinity: 2
  446. m_PostInfinity: 2
  447. m_RotationOrder: 4
  448. path: Left/LowerBody/LegR
  449. m_ScaleCurves: []
  450. m_FloatCurves: []
  451. m_PPtrCurves: []
  452. m_SampleRate: 60
  453. m_WrapMode: 0
  454. m_Bounds:
  455. m_Center: {x: 0, y: 0, z: 0}
  456. m_Extent: {x: 0, y: 0, z: 0}
  457. m_ClipBindingConstant:
  458. genericBindings:
  459. - serializedVersion: 2
  460. path: 2521132942
  461. attribute: 1
  462. script: {fileID: 0}
  463. typeID: 4
  464. customType: 0
  465. isPPtrCurve: 0
  466. - serializedVersion: 2
  467. path: 1816810221
  468. attribute: 1
  469. script: {fileID: 0}
  470. typeID: 4
  471. customType: 0
  472. isPPtrCurve: 0
  473. - serializedVersion: 2
  474. path: 52452560
  475. attribute: 1
  476. script: {fileID: 0}
  477. typeID: 4
  478. customType: 0
  479. isPPtrCurve: 0
  480. - serializedVersion: 2
  481. path: 4180631987
  482. attribute: 1
  483. script: {fileID: 0}
  484. typeID: 4
  485. customType: 0
  486. isPPtrCurve: 0
  487. - serializedVersion: 2
  488. path: 2515737398
  489. attribute: 1
  490. script: {fileID: 0}
  491. typeID: 4
  492. customType: 0
  493. isPPtrCurve: 0
  494. - serializedVersion: 2
  495. path: 1878795861
  496. attribute: 1
  497. script: {fileID: 0}
  498. typeID: 4
  499. customType: 0
  500. isPPtrCurve: 0
  501. - serializedVersion: 2
  502. path: 52452560
  503. attribute: 4
  504. script: {fileID: 0}
  505. typeID: 4
  506. customType: 4
  507. isPPtrCurve: 0
  508. - serializedVersion: 2
  509. path: 4180631987
  510. attribute: 4
  511. script: {fileID: 0}
  512. typeID: 4
  513. customType: 4
  514. isPPtrCurve: 0
  515. - serializedVersion: 2
  516. path: 2515737398
  517. attribute: 4
  518. script: {fileID: 0}
  519. typeID: 4
  520. customType: 4
  521. isPPtrCurve: 0
  522. - serializedVersion: 2
  523. path: 1878795861
  524. attribute: 4
  525. script: {fileID: 0}
  526. typeID: 4
  527. customType: 4
  528. isPPtrCurve: 0
  529. - serializedVersion: 2
  530. path: 2521132942
  531. attribute: 4
  532. script: {fileID: 0}
  533. typeID: 4
  534. customType: 4
  535. isPPtrCurve: 0
  536. - serializedVersion: 2
  537. path: 1816810221
  538. attribute: 4
  539. script: {fileID: 0}
  540. typeID: 4
  541. customType: 4
  542. isPPtrCurve: 0
  543. - serializedVersion: 2
  544. path: 129907941
  545. attribute: 4
  546. script: {fileID: 0}
  547. typeID: 4
  548. customType: 4
  549. isPPtrCurve: 0
  550. - serializedVersion: 2
  551. path: 3882050438
  552. attribute: 4
  553. script: {fileID: 0}
  554. typeID: 4
  555. customType: 4
  556. isPPtrCurve: 0
  557. pptrCurveMapping: []
  558. m_AnimationClipSettings:
  559. serializedVersion: 2
  560. m_AdditiveReferencePoseClip: {fileID: 0}
  561. m_AdditiveReferencePoseTime: 0
  562. m_StartTime: 0
  563. m_StopTime: 0.5
  564. m_OrientationOffsetY: 0
  565. m_Level: 0
  566. m_CycleOffset: 0
  567. m_HasAdditiveReferencePose: 0
  568. m_LoopTime: 1
  569. m_LoopBlend: 1
  570. m_LoopBlendOrientation: 0
  571. m_LoopBlendPositionY: 0
  572. m_LoopBlendPositionXZ: 0
  573. m_KeepOriginalOrientation: 0
  574. m_KeepOriginalPositionY: 1
  575. m_KeepOriginalPositionXZ: 0
  576. m_HeightFromFeet: 0
  577. m_Mirror: 0
  578. m_EditorCurves:
  579. - curve:
  580. serializedVersion: 2
  581. m_Curve:
  582. - serializedVersion: 3
  583. time: 0
  584. value: -0.3
  585. inSlope: 0
  586. outSlope: 0
  587. tangentMode: 34
  588. weightedMode: 0
  589. inWeight: 0.33333334
  590. outWeight: 0.33333334
  591. - serializedVersion: 3
  592. time: 0.25
  593. value: -0.3
  594. inSlope: 0
  595. outSlope: 0
  596. tangentMode: 34
  597. weightedMode: 0
  598. inWeight: 0.33333334
  599. outWeight: 0.33333334
  600. - serializedVersion: 3
  601. time: 0.5
  602. value: -0.3
  603. inSlope: 0
  604. outSlope: 0
  605. tangentMode: 34
  606. weightedMode: 0
  607. inWeight: 0.33333334
  608. outWeight: 0.33333334
  609. m_PreInfinity: 2
  610. m_PostInfinity: 2
  611. m_RotationOrder: 4
  612. attribute: m_LocalPosition.x
  613. path: Back/LowerBody/LegL
  614. classID: 4
  615. script: {fileID: 0}
  616. - curve:
  617. serializedVersion: 2
  618. m_Curve:
  619. - serializedVersion: 3
  620. time: 0
  621. value: 0.2
  622. inSlope: -0.8
  623. outSlope: -0.8
  624. tangentMode: 34
  625. weightedMode: 0
  626. inWeight: 0.33333334
  627. outWeight: 0.33333334
  628. - serializedVersion: 3
  629. time: 0.25
  630. value: 0
  631. inSlope: 0
  632. outSlope: 0
  633. tangentMode: 34
  634. weightedMode: 0
  635. inWeight: 0.33333334
  636. outWeight: 0.33333334
  637. - serializedVersion: 3
  638. time: 0.5
  639. value: 0.2
  640. inSlope: 0.8
  641. outSlope: 0.8
  642. tangentMode: 34
  643. weightedMode: 0
  644. inWeight: 0.33333334
  645. outWeight: 0.33333334
  646. m_PreInfinity: 2
  647. m_PostInfinity: 2
  648. m_RotationOrder: 4
  649. attribute: m_LocalPosition.y
  650. path: Back/LowerBody/LegL
  651. classID: 4
  652. script: {fileID: 0}
  653. - curve:
  654. serializedVersion: 2
  655. m_Curve:
  656. - serializedVersion: 3
  657. time: 0
  658. value: 0
  659. inSlope: 0
  660. outSlope: 0
  661. tangentMode: 34
  662. weightedMode: 0
  663. inWeight: 0.33333334
  664. outWeight: 0.33333334
  665. - serializedVersion: 3
  666. time: 0.25
  667. value: 0
  668. inSlope: 0
  669. outSlope: 0
  670. tangentMode: 34
  671. weightedMode: 0
  672. inWeight: 0.33333334
  673. outWeight: 0.33333334
  674. - serializedVersion: 3
  675. time: 0.5
  676. value: 0
  677. inSlope: 0
  678. outSlope: 0
  679. tangentMode: 34
  680. weightedMode: 0
  681. inWeight: 0.33333334
  682. outWeight: 0.33333334
  683. m_PreInfinity: 2
  684. m_PostInfinity: 2
  685. m_RotationOrder: 4
  686. attribute: m_LocalPosition.z
  687. path: Back/LowerBody/LegL
  688. classID: 4
  689. script: {fileID: 0}
  690. - curve:
  691. serializedVersion: 2
  692. m_Curve:
  693. - serializedVersion: 3
  694. time: 0
  695. value: 0.3
  696. inSlope: 0
  697. outSlope: 0
  698. tangentMode: 34
  699. weightedMode: 0
  700. inWeight: 0.33333334
  701. outWeight: 0.33333334
  702. - serializedVersion: 3
  703. time: 0.25
  704. value: 0.3
  705. inSlope: 0
  706. outSlope: 0
  707. tangentMode: 34
  708. weightedMode: 0
  709. inWeight: 0.33333334
  710. outWeight: 0.33333334
  711. - serializedVersion: 3
  712. time: 0.5
  713. value: 0.3
  714. inSlope: 0
  715. outSlope: 0
  716. tangentMode: 34
  717. weightedMode: 0
  718. inWeight: 0.33333334
  719. outWeight: 0.33333334
  720. m_PreInfinity: 2
  721. m_PostInfinity: 2
  722. m_RotationOrder: 4
  723. attribute: m_LocalPosition.x
  724. path: Back/LowerBody/LegR
  725. classID: 4
  726. script: {fileID: 0}
  727. - curve:
  728. serializedVersion: 2
  729. m_Curve:
  730. - serializedVersion: 3
  731. time: 0
  732. value: 0
  733. inSlope: 0.8
  734. outSlope: 0.8
  735. tangentMode: 34
  736. weightedMode: 0
  737. inWeight: 0.33333334
  738. outWeight: 0.33333334
  739. - serializedVersion: 3
  740. time: 0.25
  741. value: 0.2
  742. inSlope: 0
  743. outSlope: 0
  744. tangentMode: 34
  745. weightedMode: 0
  746. inWeight: 0.33333334
  747. outWeight: 0.33333334
  748. - serializedVersion: 3
  749. time: 0.5
  750. value: 0
  751. inSlope: -0.8
  752. outSlope: -0.8
  753. tangentMode: 34
  754. weightedMode: 0
  755. inWeight: 0.33333334
  756. outWeight: 0.33333334
  757. m_PreInfinity: 2
  758. m_PostInfinity: 2
  759. m_RotationOrder: 4
  760. attribute: m_LocalPosition.y
  761. path: Back/LowerBody/LegR
  762. classID: 4
  763. script: {fileID: 0}
  764. - curve:
  765. serializedVersion: 2
  766. m_Curve:
  767. - serializedVersion: 3
  768. time: 0
  769. value: 0
  770. inSlope: 0
  771. outSlope: 0
  772. tangentMode: 34
  773. weightedMode: 0
  774. inWeight: 0.33333334
  775. outWeight: 0.33333334
  776. - serializedVersion: 3
  777. time: 0.25
  778. value: 0
  779. inSlope: 0
  780. outSlope: 0
  781. tangentMode: 34
  782. weightedMode: 0
  783. inWeight: 0.33333334
  784. outWeight: 0.33333334
  785. - serializedVersion: 3
  786. time: 0.5
  787. value: 0
  788. inSlope: 0
  789. outSlope: 0
  790. tangentMode: 34
  791. weightedMode: 0
  792. inWeight: 0.33333334
  793. outWeight: 0.33333334
  794. m_PreInfinity: 2
  795. m_PostInfinity: 2
  796. m_RotationOrder: 4
  797. attribute: m_LocalPosition.z
  798. path: Back/LowerBody/LegR
  799. classID: 4
  800. script: {fileID: 0}
  801. - curve:
  802. serializedVersion: 2
  803. m_Curve:
  804. - serializedVersion: 3
  805. time: 0
  806. value: 0
  807. inSlope: 0
  808. outSlope: 0
  809. tangentMode: 34
  810. weightedMode: 0
  811. inWeight: 0.33333334
  812. outWeight: 0.33333334
  813. m_PreInfinity: 2
  814. m_PostInfinity: 2
  815. m_RotationOrder: 4
  816. attribute: localEulerAnglesRaw.x
  817. path: Back/LowerBody/LegL
  818. classID: 4
  819. script: {fileID: 0}
  820. - curve:
  821. serializedVersion: 2
  822. m_Curve:
  823. - serializedVersion: 3
  824. time: 0
  825. value: 0
  826. inSlope: 0
  827. outSlope: 0
  828. tangentMode: 34
  829. weightedMode: 0
  830. inWeight: 0.33333334
  831. outWeight: 0.33333334
  832. m_PreInfinity: 2
  833. m_PostInfinity: 2
  834. m_RotationOrder: 4
  835. attribute: localEulerAnglesRaw.y
  836. path: Back/LowerBody/LegL
  837. classID: 4
  838. script: {fileID: 0}
  839. - curve:
  840. serializedVersion: 2
  841. m_Curve:
  842. - serializedVersion: 3
  843. time: 0
  844. value: 10
  845. inSlope: 0
  846. outSlope: 0
  847. tangentMode: 34
  848. weightedMode: 0
  849. inWeight: 0.33333334
  850. outWeight: 0.33333334
  851. m_PreInfinity: 2
  852. m_PostInfinity: 2
  853. m_RotationOrder: 4
  854. attribute: localEulerAnglesRaw.z
  855. path: Back/LowerBody/LegL
  856. classID: 4
  857. script: {fileID: 0}
  858. - curve:
  859. serializedVersion: 2
  860. m_Curve:
  861. - serializedVersion: 3
  862. time: 0
  863. value: 0
  864. inSlope: 0
  865. outSlope: 0
  866. tangentMode: 34
  867. weightedMode: 0
  868. inWeight: 0.33333334
  869. outWeight: 0.33333334
  870. m_PreInfinity: 2
  871. m_PostInfinity: 2
  872. m_RotationOrder: 4
  873. attribute: localEulerAnglesRaw.x
  874. path: Back/LowerBody/LegR
  875. classID: 4
  876. script: {fileID: 0}
  877. - curve:
  878. serializedVersion: 2
  879. m_Curve:
  880. - serializedVersion: 3
  881. time: 0
  882. value: 0
  883. inSlope: 0
  884. outSlope: 0
  885. tangentMode: 34
  886. weightedMode: 0
  887. inWeight: 0.33333334
  888. outWeight: 0.33333334
  889. m_PreInfinity: 2
  890. m_PostInfinity: 2
  891. m_RotationOrder: 4
  892. attribute: localEulerAnglesRaw.y
  893. path: Back/LowerBody/LegR
  894. classID: 4
  895. script: {fileID: 0}
  896. - curve:
  897. serializedVersion: 2
  898. m_Curve:
  899. - serializedVersion: 3
  900. time: 0
  901. value: -10
  902. inSlope: 0
  903. outSlope: 0
  904. tangentMode: 34
  905. weightedMode: 0
  906. inWeight: 0.33333334
  907. outWeight: 0.33333334
  908. m_PreInfinity: 2
  909. m_PostInfinity: 2
  910. m_RotationOrder: 4
  911. attribute: localEulerAnglesRaw.z
  912. path: Back/LowerBody/LegR
  913. classID: 4
  914. script: {fileID: 0}
  915. - curve:
  916. serializedVersion: 2
  917. m_Curve:
  918. - serializedVersion: 3
  919. time: 0
  920. value: 0.15
  921. inSlope: 0
  922. outSlope: 0
  923. tangentMode: 34
  924. weightedMode: 0
  925. inWeight: 0.33333334
  926. outWeight: 0.33333334
  927. - serializedVersion: 3
  928. time: 0.25
  929. value: 0.15
  930. inSlope: 0
  931. outSlope: 0
  932. tangentMode: 34
  933. weightedMode: 0
  934. inWeight: 0.33333334
  935. outWeight: 0.33333334
  936. - serializedVersion: 3
  937. time: 0.5
  938. value: 0.15
  939. inSlope: 0
  940. outSlope: 0
  941. tangentMode: 34
  942. weightedMode: 0
  943. inWeight: 0.33333334
  944. outWeight: 0.33333334
  945. m_PreInfinity: 2
  946. m_PostInfinity: 2
  947. m_RotationOrder: 4
  948. attribute: m_LocalPosition.x
  949. path: Right/LowerBody/LegL
  950. classID: 4
  951. script: {fileID: 0}
  952. - curve:
  953. serializedVersion: 2
  954. m_Curve:
  955. - serializedVersion: 3
  956. time: 0
  957. value: 0.2
  958. inSlope: -0.8
  959. outSlope: -0.8
  960. tangentMode: 34
  961. weightedMode: 0
  962. inWeight: 0.33333334
  963. outWeight: 0.33333334
  964. - serializedVersion: 3
  965. time: 0.25
  966. value: 0
  967. inSlope: 0
  968. outSlope: 0
  969. tangentMode: 34
  970. weightedMode: 0
  971. inWeight: 0.33333334
  972. outWeight: 0.33333334
  973. - serializedVersion: 3
  974. time: 0.5
  975. value: 0.2
  976. inSlope: 0.8
  977. outSlope: 0.8
  978. tangentMode: 34
  979. weightedMode: 0
  980. inWeight: 0.33333334
  981. outWeight: 0.33333334
  982. m_PreInfinity: 2
  983. m_PostInfinity: 2
  984. m_RotationOrder: 4
  985. attribute: m_LocalPosition.y
  986. path: Right/LowerBody/LegL
  987. classID: 4
  988. script: {fileID: 0}
  989. - curve:
  990. serializedVersion: 2
  991. m_Curve:
  992. - serializedVersion: 3
  993. time: 0
  994. value: 0
  995. inSlope: 0
  996. outSlope: 0
  997. tangentMode: 34
  998. weightedMode: 0
  999. inWeight: 0.33333334
  1000. outWeight: 0.33333334
  1001. - serializedVersion: 3
  1002. time: 0.25
  1003. value: 0
  1004. inSlope: 0
  1005. outSlope: 0
  1006. tangentMode: 34
  1007. weightedMode: 0
  1008. inWeight: 0.33333334
  1009. outWeight: 0.33333334
  1010. - serializedVersion: 3
  1011. time: 0.5
  1012. value: 0
  1013. inSlope: 0
  1014. outSlope: 0
  1015. tangentMode: 34
  1016. weightedMode: 0
  1017. inWeight: 0.33333334
  1018. outWeight: 0.33333334
  1019. m_PreInfinity: 2
  1020. m_PostInfinity: 2
  1021. m_RotationOrder: 4
  1022. attribute: m_LocalPosition.z
  1023. path: Right/LowerBody/LegL
  1024. classID: 4
  1025. script: {fileID: 0}
  1026. - curve:
  1027. serializedVersion: 2
  1028. m_Curve:
  1029. - serializedVersion: 3
  1030. time: 0
  1031. value: -0.08
  1032. inSlope: 0
  1033. outSlope: 0
  1034. tangentMode: 34
  1035. weightedMode: 0
  1036. inWeight: 0.33333334
  1037. outWeight: 0.33333334
  1038. - serializedVersion: 3
  1039. time: 0.25
  1040. value: -0.08
  1041. inSlope: 0
  1042. outSlope: 0
  1043. tangentMode: 34
  1044. weightedMode: 0
  1045. inWeight: 0.33333334
  1046. outWeight: 0.33333334
  1047. - serializedVersion: 3
  1048. time: 0.5
  1049. value: -0.08
  1050. inSlope: 0
  1051. outSlope: 0
  1052. tangentMode: 34
  1053. weightedMode: 0
  1054. inWeight: 0.33333334
  1055. outWeight: 0.33333334
  1056. m_PreInfinity: 2
  1057. m_PostInfinity: 2
  1058. m_RotationOrder: 4
  1059. attribute: m_LocalPosition.x
  1060. path: Right/LowerBody/LegR
  1061. classID: 4
  1062. script: {fileID: 0}
  1063. - curve:
  1064. serializedVersion: 2
  1065. m_Curve:
  1066. - serializedVersion: 3
  1067. time: 0
  1068. value: 0
  1069. inSlope: 0.8
  1070. outSlope: 0.8
  1071. tangentMode: 34
  1072. weightedMode: 0
  1073. inWeight: 0.33333334
  1074. outWeight: 0.33333334
  1075. - serializedVersion: 3
  1076. time: 0.25
  1077. value: 0.2
  1078. inSlope: 0
  1079. outSlope: 0
  1080. tangentMode: 34
  1081. weightedMode: 0
  1082. inWeight: 0.33333334
  1083. outWeight: 0.33333334
  1084. - serializedVersion: 3
  1085. time: 0.5
  1086. value: 0
  1087. inSlope: -0.8
  1088. outSlope: -0.8
  1089. tangentMode: 34
  1090. weightedMode: 0
  1091. inWeight: 0.33333334
  1092. outWeight: 0.33333334
  1093. m_PreInfinity: 2
  1094. m_PostInfinity: 2
  1095. m_RotationOrder: 4
  1096. attribute: m_LocalPosition.y
  1097. path: Right/LowerBody/LegR
  1098. classID: 4
  1099. script: {fileID: 0}
  1100. - curve:
  1101. serializedVersion: 2
  1102. m_Curve:
  1103. - serializedVersion: 3
  1104. time: 0
  1105. value: 0
  1106. inSlope: 0
  1107. outSlope: 0
  1108. tangentMode: 34
  1109. weightedMode: 0
  1110. inWeight: 0.33333334
  1111. outWeight: 0.33333334
  1112. - serializedVersion: 3
  1113. time: 0.25
  1114. value: 0
  1115. inSlope: 0
  1116. outSlope: 0
  1117. tangentMode: 34
  1118. weightedMode: 0
  1119. inWeight: 0.33333334
  1120. outWeight: 0.33333334
  1121. - serializedVersion: 3
  1122. time: 0.5
  1123. value: 0
  1124. inSlope: 0
  1125. outSlope: 0
  1126. tangentMode: 34
  1127. weightedMode: 0
  1128. inWeight: 0.33333334
  1129. outWeight: 0.33333334
  1130. m_PreInfinity: 2
  1131. m_PostInfinity: 2
  1132. m_RotationOrder: 4
  1133. attribute: m_LocalPosition.z
  1134. path: Right/LowerBody/LegR
  1135. classID: 4
  1136. script: {fileID: 0}
  1137. - curve:
  1138. serializedVersion: 2
  1139. m_Curve:
  1140. - serializedVersion: 3
  1141. time: 0
  1142. value: 0.08
  1143. inSlope: 0
  1144. outSlope: 0
  1145. tangentMode: 34
  1146. weightedMode: 0
  1147. inWeight: 0.33333334
  1148. outWeight: 0.33333334
  1149. - serializedVersion: 3
  1150. time: 0.25
  1151. value: 0.08
  1152. inSlope: 0
  1153. outSlope: 0
  1154. tangentMode: 34
  1155. weightedMode: 0
  1156. inWeight: 0.33333334
  1157. outWeight: 0.33333334
  1158. - serializedVersion: 3
  1159. time: 0.38333333
  1160. value: 0.08
  1161. inSlope: 0
  1162. outSlope: 0
  1163. tangentMode: 34
  1164. weightedMode: 0
  1165. inWeight: 0.33333334
  1166. outWeight: 0.33333334
  1167. - serializedVersion: 3
  1168. time: 0.5
  1169. value: 0.08
  1170. inSlope: 0
  1171. outSlope: 0
  1172. tangentMode: 34
  1173. weightedMode: 0
  1174. inWeight: 0.33333334
  1175. outWeight: 0.33333334
  1176. m_PreInfinity: 2
  1177. m_PostInfinity: 2
  1178. m_RotationOrder: 4
  1179. attribute: m_LocalPosition.x
  1180. path: Left/LowerBody/LegL
  1181. classID: 4
  1182. script: {fileID: 0}
  1183. - curve:
  1184. serializedVersion: 2
  1185. m_Curve:
  1186. - serializedVersion: 3
  1187. time: 0
  1188. value: 0.2
  1189. inSlope: -0.8
  1190. outSlope: -0.8
  1191. tangentMode: 34
  1192. weightedMode: 0
  1193. inWeight: 0.33333334
  1194. outWeight: 0.33333334
  1195. - serializedVersion: 3
  1196. time: 0.25
  1197. value: 0
  1198. inSlope: 0.25625
  1199. outSlope: 0.25625
  1200. tangentMode: 34
  1201. weightedMode: 0
  1202. inWeight: 0.33333334
  1203. outWeight: 0.33333334
  1204. - serializedVersion: 3
  1205. time: 0.38333333
  1206. value: 0.175
  1207. inSlope: 0.76339287
  1208. outSlope: 0.76339287
  1209. tangentMode: 34
  1210. weightedMode: 0
  1211. inWeight: 0.33333334
  1212. outWeight: 0.33333334
  1213. - serializedVersion: 3
  1214. time: 0.5
  1215. value: 0.2
  1216. inSlope: 0.21428575
  1217. outSlope: 0.21428575
  1218. tangentMode: 34
  1219. weightedMode: 0
  1220. inWeight: 0.33333334
  1221. outWeight: 0.33333334
  1222. m_PreInfinity: 2
  1223. m_PostInfinity: 2
  1224. m_RotationOrder: 4
  1225. attribute: m_LocalPosition.y
  1226. path: Left/LowerBody/LegL
  1227. classID: 4
  1228. script: {fileID: 0}
  1229. - curve:
  1230. serializedVersion: 2
  1231. m_Curve:
  1232. - serializedVersion: 3
  1233. time: 0
  1234. value: 0
  1235. inSlope: 0
  1236. outSlope: 0
  1237. tangentMode: 34
  1238. weightedMode: 0
  1239. inWeight: 0.33333334
  1240. outWeight: 0.33333334
  1241. - serializedVersion: 3
  1242. time: 0.25
  1243. value: 0
  1244. inSlope: 0
  1245. outSlope: 0
  1246. tangentMode: 34
  1247. weightedMode: 0
  1248. inWeight: 0.33333334
  1249. outWeight: 0.33333334
  1250. - serializedVersion: 3
  1251. time: 0.38333333
  1252. value: 0
  1253. inSlope: 0
  1254. outSlope: 0
  1255. tangentMode: 34
  1256. weightedMode: 0
  1257. inWeight: 0.33333334
  1258. outWeight: 0.33333334
  1259. - serializedVersion: 3
  1260. time: 0.5
  1261. value: 0
  1262. inSlope: 0
  1263. outSlope: 0
  1264. tangentMode: 34
  1265. weightedMode: 0
  1266. inWeight: 0.33333334
  1267. outWeight: 0.33333334
  1268. m_PreInfinity: 2
  1269. m_PostInfinity: 2
  1270. m_RotationOrder: 4
  1271. attribute: m_LocalPosition.z
  1272. path: Left/LowerBody/LegL
  1273. classID: 4
  1274. script: {fileID: 0}
  1275. - curve:
  1276. serializedVersion: 2
  1277. m_Curve:
  1278. - serializedVersion: 3
  1279. time: 0
  1280. value: -0.15
  1281. inSlope: 0
  1282. outSlope: 0
  1283. tangentMode: 34
  1284. weightedMode: 0
  1285. inWeight: 0.33333334
  1286. outWeight: 0.33333334
  1287. - serializedVersion: 3
  1288. time: 0.25
  1289. value: -0.15
  1290. inSlope: 0
  1291. outSlope: 0
  1292. tangentMode: 34
  1293. weightedMode: 0
  1294. inWeight: 0.33333334
  1295. outWeight: 0.33333334
  1296. - serializedVersion: 3
  1297. time: 0.5
  1298. value: -0.15
  1299. inSlope: 0
  1300. outSlope: 0
  1301. tangentMode: 34
  1302. weightedMode: 0
  1303. inWeight: 0.33333334
  1304. outWeight: 0.33333334
  1305. m_PreInfinity: 2
  1306. m_PostInfinity: 2
  1307. m_RotationOrder: 4
  1308. attribute: m_LocalPosition.x
  1309. path: Left/LowerBody/LegR
  1310. classID: 4
  1311. script: {fileID: 0}
  1312. - curve:
  1313. serializedVersion: 2
  1314. m_Curve:
  1315. - serializedVersion: 3
  1316. time: 0
  1317. value: 0
  1318. inSlope: 0.8
  1319. outSlope: 0.8
  1320. tangentMode: 34
  1321. weightedMode: 0
  1322. inWeight: 0.33333334
  1323. outWeight: 0.33333334
  1324. - serializedVersion: 3
  1325. time: 0.25
  1326. value: 0.2
  1327. inSlope: 0
  1328. outSlope: 0
  1329. tangentMode: 34
  1330. weightedMode: 0
  1331. inWeight: 0.33333334
  1332. outWeight: 0.33333334
  1333. - serializedVersion: 3
  1334. time: 0.5
  1335. value: 0
  1336. inSlope: -0.8
  1337. outSlope: -0.8
  1338. tangentMode: 34
  1339. weightedMode: 0
  1340. inWeight: 0.33333334
  1341. outWeight: 0.33333334
  1342. m_PreInfinity: 2
  1343. m_PostInfinity: 2
  1344. m_RotationOrder: 4
  1345. attribute: m_LocalPosition.y
  1346. path: Left/LowerBody/LegR
  1347. classID: 4
  1348. script: {fileID: 0}
  1349. - curve:
  1350. serializedVersion: 2
  1351. m_Curve:
  1352. - serializedVersion: 3
  1353. time: 0
  1354. value: 0
  1355. inSlope: 0
  1356. outSlope: 0
  1357. tangentMode: 34
  1358. weightedMode: 0
  1359. inWeight: 0.33333334
  1360. outWeight: 0.33333334
  1361. - serializedVersion: 3
  1362. time: 0.25
  1363. value: 0
  1364. inSlope: 0
  1365. outSlope: 0
  1366. tangentMode: 34
  1367. weightedMode: 0
  1368. inWeight: 0.33333334
  1369. outWeight: 0.33333334
  1370. - serializedVersion: 3
  1371. time: 0.5
  1372. value: 0
  1373. inSlope: 0
  1374. outSlope: 0
  1375. tangentMode: 34
  1376. weightedMode: 0
  1377. inWeight: 0.33333334
  1378. outWeight: 0.33333334
  1379. m_PreInfinity: 2
  1380. m_PostInfinity: 2
  1381. m_RotationOrder: 4
  1382. attribute: m_LocalPosition.z
  1383. path: Left/LowerBody/LegR
  1384. classID: 4
  1385. script: {fileID: 0}
  1386. - curve:
  1387. serializedVersion: 2
  1388. m_Curve:
  1389. - serializedVersion: 3
  1390. time: 0
  1391. value: 0
  1392. inSlope: 0
  1393. outSlope: 0
  1394. tangentMode: 34
  1395. weightedMode: 0
  1396. inWeight: 0.33333334
  1397. outWeight: 0.33333334
  1398. - serializedVersion: 3
  1399. time: 0.5
  1400. value: 0
  1401. inSlope: 0
  1402. outSlope: 0
  1403. tangentMode: 34
  1404. weightedMode: 0
  1405. inWeight: 0.33333334
  1406. outWeight: 0.33333334
  1407. m_PreInfinity: 2
  1408. m_PostInfinity: 2
  1409. m_RotationOrder: 4
  1410. attribute: localEulerAnglesRaw.x
  1411. path: Left/LowerBody
  1412. classID: 4
  1413. script: {fileID: 0}
  1414. - curve:
  1415. serializedVersion: 2
  1416. m_Curve:
  1417. - serializedVersion: 3
  1418. time: 0
  1419. value: 0
  1420. inSlope: 0
  1421. outSlope: 0
  1422. tangentMode: 34
  1423. weightedMode: 0
  1424. inWeight: 0.33333334
  1425. outWeight: 0.33333334
  1426. - serializedVersion: 3
  1427. time: 0.5
  1428. value: 0
  1429. inSlope: 0
  1430. outSlope: 0
  1431. tangentMode: 34
  1432. weightedMode: 0
  1433. inWeight: 0.33333334
  1434. outWeight: 0.33333334
  1435. m_PreInfinity: 2
  1436. m_PostInfinity: 2
  1437. m_RotationOrder: 4
  1438. attribute: localEulerAnglesRaw.y
  1439. path: Left/LowerBody
  1440. classID: 4
  1441. script: {fileID: 0}
  1442. - curve:
  1443. serializedVersion: 2
  1444. m_Curve:
  1445. - serializedVersion: 3
  1446. time: 0
  1447. value: -10
  1448. inSlope: 0
  1449. outSlope: 0
  1450. tangentMode: 34
  1451. weightedMode: 0
  1452. inWeight: 0.33333334
  1453. outWeight: 0.33333334
  1454. - serializedVersion: 3
  1455. time: 0.5
  1456. value: -10
  1457. inSlope: 0
  1458. outSlope: 0
  1459. tangentMode: 34
  1460. weightedMode: 0
  1461. inWeight: 0.33333334
  1462. outWeight: 0.33333334
  1463. m_PreInfinity: 2
  1464. m_PostInfinity: 2
  1465. m_RotationOrder: 4
  1466. attribute: localEulerAnglesRaw.z
  1467. path: Left/LowerBody
  1468. classID: 4
  1469. script: {fileID: 0}
  1470. - curve:
  1471. serializedVersion: 2
  1472. m_Curve:
  1473. - serializedVersion: 3
  1474. time: 0
  1475. value: 0
  1476. inSlope: 0
  1477. outSlope: 0
  1478. tangentMode: 34
  1479. weightedMode: 0
  1480. inWeight: 0.33333334
  1481. outWeight: 0.33333334
  1482. - serializedVersion: 3
  1483. time: 0.5
  1484. value: 0
  1485. inSlope: 0
  1486. outSlope: 0
  1487. tangentMode: 34
  1488. weightedMode: 0
  1489. inWeight: 0.33333334
  1490. outWeight: 0.33333334
  1491. m_PreInfinity: 2
  1492. m_PostInfinity: 2
  1493. m_RotationOrder: 4
  1494. attribute: localEulerAnglesRaw.x
  1495. path: Right/LowerBody
  1496. classID: 4
  1497. script: {fileID: 0}
  1498. - curve:
  1499. serializedVersion: 2
  1500. m_Curve:
  1501. - serializedVersion: 3
  1502. time: 0
  1503. value: 0
  1504. inSlope: 0
  1505. outSlope: 0
  1506. tangentMode: 34
  1507. weightedMode: 0
  1508. inWeight: 0.33333334
  1509. outWeight: 0.33333334
  1510. - serializedVersion: 3
  1511. time: 0.5
  1512. value: 0
  1513. inSlope: 0
  1514. outSlope: 0
  1515. tangentMode: 34
  1516. weightedMode: 0
  1517. inWeight: 0.33333334
  1518. outWeight: 0.33333334
  1519. m_PreInfinity: 2
  1520. m_PostInfinity: 2
  1521. m_RotationOrder: 4
  1522. attribute: localEulerAnglesRaw.y
  1523. path: Right/LowerBody
  1524. classID: 4
  1525. script: {fileID: 0}
  1526. - curve:
  1527. serializedVersion: 2
  1528. m_Curve:
  1529. - serializedVersion: 3
  1530. time: 0
  1531. value: 10
  1532. inSlope: 0
  1533. outSlope: 0
  1534. tangentMode: 34
  1535. weightedMode: 0
  1536. inWeight: 0.33333334
  1537. outWeight: 0.33333334
  1538. - serializedVersion: 3
  1539. time: 0.5
  1540. value: 10
  1541. inSlope: 0
  1542. outSlope: 0
  1543. tangentMode: 34
  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: Right/LowerBody
  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: 34
  1563. weightedMode: 0
  1564. inWeight: 0.33333334
  1565. outWeight: 0.33333334
  1566. - serializedVersion: 3
  1567. time: 0.25
  1568. value: 0
  1569. inSlope: 0
  1570. outSlope: 0
  1571. tangentMode: 34
  1572. weightedMode: 0
  1573. inWeight: 0.33333334
  1574. outWeight: 0.33333334
  1575. - serializedVersion: 3
  1576. time: 0.5
  1577. value: 0
  1578. inSlope: 0
  1579. outSlope: 0
  1580. tangentMode: 34
  1581. weightedMode: 0
  1582. inWeight: 0.33333334
  1583. outWeight: 0.33333334
  1584. m_PreInfinity: 2
  1585. m_PostInfinity: 2
  1586. m_RotationOrder: 4
  1587. attribute: localEulerAnglesRaw.x
  1588. path: Right/LowerBody/LegL
  1589. classID: 4
  1590. script: {fileID: 0}
  1591. - curve:
  1592. serializedVersion: 2
  1593. m_Curve:
  1594. - serializedVersion: 3
  1595. time: 0
  1596. value: 0
  1597. inSlope: 0
  1598. outSlope: 0
  1599. tangentMode: 34
  1600. weightedMode: 0
  1601. inWeight: 0.33333334
  1602. outWeight: 0.33333334
  1603. - serializedVersion: 3
  1604. time: 0.25
  1605. value: 0
  1606. inSlope: 0
  1607. outSlope: 0
  1608. tangentMode: 34
  1609. weightedMode: 0
  1610. inWeight: 0.33333334
  1611. outWeight: 0.33333334
  1612. - serializedVersion: 3
  1613. time: 0.5
  1614. value: 0
  1615. inSlope: 0
  1616. outSlope: 0
  1617. tangentMode: 34
  1618. weightedMode: 0
  1619. inWeight: 0.33333334
  1620. outWeight: 0.33333334
  1621. m_PreInfinity: 2
  1622. m_PostInfinity: 2
  1623. m_RotationOrder: 4
  1624. attribute: localEulerAnglesRaw.y
  1625. path: Right/LowerBody/LegL
  1626. classID: 4
  1627. script: {fileID: 0}
  1628. - curve:
  1629. serializedVersion: 2
  1630. m_Curve:
  1631. - serializedVersion: 3
  1632. time: 0
  1633. value: 30
  1634. inSlope: -120
  1635. outSlope: -120
  1636. tangentMode: 34
  1637. weightedMode: 0
  1638. inWeight: 0.33333334
  1639. outWeight: 0.33333334
  1640. - serializedVersion: 3
  1641. time: 0.25
  1642. value: 0
  1643. inSlope: 0
  1644. outSlope: 0
  1645. tangentMode: 34
  1646. weightedMode: 0
  1647. inWeight: 0.33333334
  1648. outWeight: 0.33333334
  1649. - serializedVersion: 3
  1650. time: 0.5
  1651. value: 30
  1652. inSlope: 120
  1653. outSlope: 120
  1654. tangentMode: 34
  1655. weightedMode: 0
  1656. inWeight: 0.33333334
  1657. outWeight: 0.33333334
  1658. m_PreInfinity: 2
  1659. m_PostInfinity: 2
  1660. m_RotationOrder: 4
  1661. attribute: localEulerAnglesRaw.z
  1662. path: Right/LowerBody/LegL
  1663. classID: 4
  1664. script: {fileID: 0}
  1665. - curve:
  1666. serializedVersion: 2
  1667. m_Curve:
  1668. - serializedVersion: 3
  1669. time: 0
  1670. value: 0
  1671. inSlope: 0
  1672. outSlope: 0
  1673. tangentMode: 34
  1674. weightedMode: 0
  1675. inWeight: 0.33333334
  1676. outWeight: 0.33333334
  1677. - serializedVersion: 3
  1678. time: 0.25
  1679. value: 0
  1680. inSlope: 0
  1681. outSlope: 0
  1682. tangentMode: 34
  1683. weightedMode: 0
  1684. inWeight: 0.33333334
  1685. outWeight: 0.33333334
  1686. - serializedVersion: 3
  1687. time: 0.5
  1688. value: 0
  1689. inSlope: 0
  1690. outSlope: 0
  1691. tangentMode: 34
  1692. weightedMode: 0
  1693. inWeight: 0.33333334
  1694. outWeight: 0.33333334
  1695. m_PreInfinity: 2
  1696. m_PostInfinity: 2
  1697. m_RotationOrder: 4
  1698. attribute: localEulerAnglesRaw.x
  1699. path: Right/LowerBody/LegR
  1700. classID: 4
  1701. script: {fileID: 0}
  1702. - curve:
  1703. serializedVersion: 2
  1704. m_Curve:
  1705. - serializedVersion: 3
  1706. time: 0
  1707. value: 0
  1708. inSlope: 0
  1709. outSlope: 0
  1710. tangentMode: 34
  1711. weightedMode: 0
  1712. inWeight: 0.33333334
  1713. outWeight: 0.33333334
  1714. - serializedVersion: 3
  1715. time: 0.25
  1716. value: 0
  1717. inSlope: 0
  1718. outSlope: 0
  1719. tangentMode: 34
  1720. weightedMode: 0
  1721. inWeight: 0.33333334
  1722. outWeight: 0.33333334
  1723. - serializedVersion: 3
  1724. time: 0.5
  1725. value: 0
  1726. inSlope: 0
  1727. outSlope: 0
  1728. tangentMode: 34
  1729. weightedMode: 0
  1730. inWeight: 0.33333334
  1731. outWeight: 0.33333334
  1732. m_PreInfinity: 2
  1733. m_PostInfinity: 2
  1734. m_RotationOrder: 4
  1735. attribute: localEulerAnglesRaw.y
  1736. path: Right/LowerBody/LegR
  1737. classID: 4
  1738. script: {fileID: 0}
  1739. - curve:
  1740. serializedVersion: 2
  1741. m_Curve:
  1742. - serializedVersion: 3
  1743. time: 0
  1744. value: 0
  1745. inSlope: 120
  1746. outSlope: 120
  1747. tangentMode: 34
  1748. weightedMode: 0
  1749. inWeight: 0.33333334
  1750. outWeight: 0.33333334
  1751. - serializedVersion: 3
  1752. time: 0.25
  1753. value: 30
  1754. inSlope: 0
  1755. outSlope: 0
  1756. tangentMode: 34
  1757. weightedMode: 0
  1758. inWeight: 0.33333334
  1759. outWeight: 0.33333334
  1760. - serializedVersion: 3
  1761. time: 0.5
  1762. value: 0
  1763. inSlope: -120
  1764. outSlope: -120
  1765. tangentMode: 34
  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: Right/LowerBody/LegR
  1774. classID: 4
  1775. script: {fileID: 0}
  1776. - curve:
  1777. serializedVersion: 2
  1778. m_Curve:
  1779. - serializedVersion: 3
  1780. time: 0
  1781. value: 0
  1782. inSlope: 0
  1783. outSlope: 0
  1784. tangentMode: 34
  1785. weightedMode: 0
  1786. inWeight: 0.33333334
  1787. outWeight: 0.33333334
  1788. - serializedVersion: 3
  1789. time: 0.25
  1790. value: 0
  1791. inSlope: 0
  1792. outSlope: 0
  1793. tangentMode: 34
  1794. weightedMode: 0
  1795. inWeight: 0.33333334
  1796. outWeight: 0.33333334
  1797. - serializedVersion: 3
  1798. time: 0.5
  1799. value: 0
  1800. inSlope: 0
  1801. outSlope: 0
  1802. tangentMode: 34
  1803. weightedMode: 0
  1804. inWeight: 0.33333334
  1805. outWeight: 0.33333334
  1806. m_PreInfinity: 2
  1807. m_PostInfinity: 2
  1808. m_RotationOrder: 4
  1809. attribute: localEulerAnglesRaw.x
  1810. path: Left/LowerBody/LegL
  1811. classID: 4
  1812. script: {fileID: 0}
  1813. - curve:
  1814. serializedVersion: 2
  1815. m_Curve:
  1816. - serializedVersion: 3
  1817. time: 0
  1818. value: 0
  1819. inSlope: 0
  1820. outSlope: 0
  1821. tangentMode: 34
  1822. weightedMode: 0
  1823. inWeight: 0.33333334
  1824. outWeight: 0.33333334
  1825. - serializedVersion: 3
  1826. time: 0.25
  1827. value: 0
  1828. inSlope: 0
  1829. outSlope: 0
  1830. tangentMode: 34
  1831. weightedMode: 0
  1832. inWeight: 0.33333334
  1833. outWeight: 0.33333334
  1834. - serializedVersion: 3
  1835. time: 0.5
  1836. value: 0
  1837. inSlope: 0
  1838. outSlope: 0
  1839. tangentMode: 34
  1840. weightedMode: 0
  1841. inWeight: 0.33333334
  1842. outWeight: 0.33333334
  1843. m_PreInfinity: 2
  1844. m_PostInfinity: 2
  1845. m_RotationOrder: 4
  1846. attribute: localEulerAnglesRaw.y
  1847. path: Left/LowerBody/LegL
  1848. classID: 4
  1849. script: {fileID: 0}
  1850. - curve:
  1851. serializedVersion: 2
  1852. m_Curve:
  1853. - serializedVersion: 3
  1854. time: 0
  1855. value: -30
  1856. inSlope: 120
  1857. outSlope: 120
  1858. tangentMode: 34
  1859. weightedMode: 0
  1860. inWeight: 0.33333334
  1861. outWeight: 0.33333334
  1862. - serializedVersion: 3
  1863. time: 0.25
  1864. value: 0
  1865. inSlope: 0
  1866. outSlope: 0
  1867. tangentMode: 34
  1868. weightedMode: 0
  1869. inWeight: 0.33333334
  1870. outWeight: 0.33333334
  1871. - serializedVersion: 3
  1872. time: 0.5
  1873. value: -30
  1874. inSlope: -120
  1875. outSlope: -120
  1876. tangentMode: 34
  1877. weightedMode: 0
  1878. inWeight: 0.33333334
  1879. outWeight: 0.33333334
  1880. m_PreInfinity: 2
  1881. m_PostInfinity: 2
  1882. m_RotationOrder: 4
  1883. attribute: localEulerAnglesRaw.z
  1884. path: Left/LowerBody/LegL
  1885. classID: 4
  1886. script: {fileID: 0}
  1887. - curve:
  1888. serializedVersion: 2
  1889. m_Curve:
  1890. - serializedVersion: 3
  1891. time: 0
  1892. value: 0
  1893. inSlope: 0
  1894. outSlope: 0
  1895. tangentMode: 34
  1896. weightedMode: 0
  1897. inWeight: 0.33333334
  1898. outWeight: 0.33333334
  1899. - serializedVersion: 3
  1900. time: 0.25
  1901. value: 0
  1902. inSlope: 0
  1903. outSlope: 0
  1904. tangentMode: 34
  1905. weightedMode: 0
  1906. inWeight: 0.33333334
  1907. outWeight: 0.33333334
  1908. - serializedVersion: 3
  1909. time: 0.5
  1910. value: 0
  1911. inSlope: 0
  1912. outSlope: 0
  1913. tangentMode: 34
  1914. weightedMode: 0
  1915. inWeight: 0.33333334
  1916. outWeight: 0.33333334
  1917. m_PreInfinity: 2
  1918. m_PostInfinity: 2
  1919. m_RotationOrder: 4
  1920. attribute: localEulerAnglesRaw.x
  1921. path: Left/LowerBody/LegR
  1922. classID: 4
  1923. script: {fileID: 0}
  1924. - curve:
  1925. serializedVersion: 2
  1926. m_Curve:
  1927. - serializedVersion: 3
  1928. time: 0
  1929. value: 0
  1930. inSlope: 0
  1931. outSlope: 0
  1932. tangentMode: 34
  1933. weightedMode: 0
  1934. inWeight: 0.33333334
  1935. outWeight: 0.33333334
  1936. - serializedVersion: 3
  1937. time: 0.25
  1938. value: 0
  1939. inSlope: 0
  1940. outSlope: 0
  1941. tangentMode: 34
  1942. weightedMode: 0
  1943. inWeight: 0.33333334
  1944. outWeight: 0.33333334
  1945. - serializedVersion: 3
  1946. time: 0.5
  1947. value: 0
  1948. inSlope: 0
  1949. outSlope: 0
  1950. tangentMode: 34
  1951. weightedMode: 0
  1952. inWeight: 0.33333334
  1953. outWeight: 0.33333334
  1954. m_PreInfinity: 2
  1955. m_PostInfinity: 2
  1956. m_RotationOrder: 4
  1957. attribute: localEulerAnglesRaw.y
  1958. path: Left/LowerBody/LegR
  1959. classID: 4
  1960. script: {fileID: 0}
  1961. - curve:
  1962. serializedVersion: 2
  1963. m_Curve:
  1964. - serializedVersion: 3
  1965. time: 0
  1966. value: 0
  1967. inSlope: -120
  1968. outSlope: -120
  1969. tangentMode: 34
  1970. weightedMode: 0
  1971. inWeight: 0.33333334
  1972. outWeight: 0.33333334
  1973. - serializedVersion: 3
  1974. time: 0.25
  1975. value: -30
  1976. inSlope: 0
  1977. outSlope: 0
  1978. tangentMode: 34
  1979. weightedMode: 0
  1980. inWeight: 0.33333334
  1981. outWeight: 0.33333334
  1982. - serializedVersion: 3
  1983. time: 0.5
  1984. value: 0
  1985. inSlope: 120
  1986. outSlope: 120
  1987. tangentMode: 34
  1988. weightedMode: 0
  1989. inWeight: 0.33333334
  1990. outWeight: 0.33333334
  1991. m_PreInfinity: 2
  1992. m_PostInfinity: 2
  1993. m_RotationOrder: 4
  1994. attribute: localEulerAnglesRaw.z
  1995. path: Left/LowerBody/LegR
  1996. classID: 4
  1997. script: {fileID: 0}
  1998. m_EulerEditorCurves:
  1999. - curve:
  2000. serializedVersion: 2
  2001. m_Curve: []
  2002. m_PreInfinity: 2
  2003. m_PostInfinity: 2
  2004. m_RotationOrder: 4
  2005. attribute: m_LocalEulerAngles.z
  2006. path: Left/LowerBody/LegL
  2007. classID: 4
  2008. script: {fileID: 0}
  2009. - curve:
  2010. serializedVersion: 2
  2011. m_Curve: []
  2012. m_PreInfinity: 2
  2013. m_PostInfinity: 2
  2014. m_RotationOrder: 4
  2015. attribute: m_LocalEulerAngles.y
  2016. path: Left/LowerBody/LegL
  2017. classID: 4
  2018. script: {fileID: 0}
  2019. - curve:
  2020. serializedVersion: 2
  2021. m_Curve: []
  2022. m_PreInfinity: 2
  2023. m_PostInfinity: 2
  2024. m_RotationOrder: 4
  2025. attribute: m_LocalEulerAngles.x
  2026. path: Left/LowerBody/LegL
  2027. classID: 4
  2028. script: {fileID: 0}
  2029. - curve:
  2030. serializedVersion: 2
  2031. m_Curve: []
  2032. m_PreInfinity: 2
  2033. m_PostInfinity: 2
  2034. m_RotationOrder: 4
  2035. attribute: m_LocalEulerAngles.z
  2036. path: Back/LowerBody/LegL
  2037. classID: 4
  2038. script: {fileID: 0}
  2039. - curve:
  2040. serializedVersion: 2
  2041. m_Curve: []
  2042. m_PreInfinity: 2
  2043. m_PostInfinity: 2
  2044. m_RotationOrder: 4
  2045. attribute: m_LocalEulerAngles.y
  2046. path: Back/LowerBody/LegL
  2047. classID: 4
  2048. script: {fileID: 0}
  2049. - curve:
  2050. serializedVersion: 2
  2051. m_Curve: []
  2052. m_PreInfinity: 2
  2053. m_PostInfinity: 2
  2054. m_RotationOrder: 4
  2055. attribute: m_LocalEulerAngles.x
  2056. path: Back/LowerBody/LegL
  2057. classID: 4
  2058. script: {fileID: 0}
  2059. - curve:
  2060. serializedVersion: 2
  2061. m_Curve: []
  2062. m_PreInfinity: 2
  2063. m_PostInfinity: 2
  2064. m_RotationOrder: 4
  2065. attribute: m_LocalEulerAngles.z
  2066. path: Left/LowerBody/LegR
  2067. classID: 4
  2068. script: {fileID: 0}
  2069. - curve:
  2070. serializedVersion: 2
  2071. m_Curve: []
  2072. m_PreInfinity: 2
  2073. m_PostInfinity: 2
  2074. m_RotationOrder: 4
  2075. attribute: m_LocalEulerAngles.y
  2076. path: Left/LowerBody/LegR
  2077. classID: 4
  2078. script: {fileID: 0}
  2079. - curve:
  2080. serializedVersion: 2
  2081. m_Curve: []
  2082. m_PreInfinity: 2
  2083. m_PostInfinity: 2
  2084. m_RotationOrder: 4
  2085. attribute: m_LocalEulerAngles.x
  2086. path: Left/LowerBody/LegR
  2087. classID: 4
  2088. script: {fileID: 0}
  2089. - curve:
  2090. serializedVersion: 2
  2091. m_Curve: []
  2092. m_PreInfinity: 2
  2093. m_PostInfinity: 2
  2094. m_RotationOrder: 4
  2095. attribute: m_LocalEulerAngles.z
  2096. path: Back/LowerBody/LegR
  2097. classID: 4
  2098. script: {fileID: 0}
  2099. - curve:
  2100. serializedVersion: 2
  2101. m_Curve: []
  2102. m_PreInfinity: 2
  2103. m_PostInfinity: 2
  2104. m_RotationOrder: 4
  2105. attribute: m_LocalEulerAngles.y
  2106. path: Back/LowerBody/LegR
  2107. classID: 4
  2108. script: {fileID: 0}
  2109. - curve:
  2110. serializedVersion: 2
  2111. m_Curve: []
  2112. m_PreInfinity: 2
  2113. m_PostInfinity: 2
  2114. m_RotationOrder: 4
  2115. attribute: m_LocalEulerAngles.x
  2116. path: Back/LowerBody/LegR
  2117. classID: 4
  2118. script: {fileID: 0}
  2119. - curve:
  2120. serializedVersion: 2
  2121. m_Curve: []
  2122. m_PreInfinity: 2
  2123. m_PostInfinity: 2
  2124. m_RotationOrder: 4
  2125. attribute: m_LocalEulerAngles.z
  2126. path: Right/LowerBody
  2127. classID: 4
  2128. script: {fileID: 0}
  2129. - curve:
  2130. serializedVersion: 2
  2131. m_Curve: []
  2132. m_PreInfinity: 2
  2133. m_PostInfinity: 2
  2134. m_RotationOrder: 4
  2135. attribute: m_LocalEulerAngles.y
  2136. path: Right/LowerBody
  2137. classID: 4
  2138. script: {fileID: 0}
  2139. - curve:
  2140. serializedVersion: 2
  2141. m_Curve: []
  2142. m_PreInfinity: 2
  2143. m_PostInfinity: 2
  2144. m_RotationOrder: 4
  2145. attribute: m_LocalEulerAngles.x
  2146. path: Right/LowerBody
  2147. classID: 4
  2148. script: {fileID: 0}
  2149. - curve:
  2150. serializedVersion: 2
  2151. m_Curve: []
  2152. m_PreInfinity: 2
  2153. m_PostInfinity: 2
  2154. m_RotationOrder: 4
  2155. attribute: m_LocalEulerAngles.z
  2156. path: Right/LowerBody/LegL
  2157. classID: 4
  2158. script: {fileID: 0}
  2159. - curve:
  2160. serializedVersion: 2
  2161. m_Curve: []
  2162. m_PreInfinity: 2
  2163. m_PostInfinity: 2
  2164. m_RotationOrder: 4
  2165. attribute: m_LocalEulerAngles.y
  2166. path: Right/LowerBody/LegL
  2167. classID: 4
  2168. script: {fileID: 0}
  2169. - curve:
  2170. serializedVersion: 2
  2171. m_Curve: []
  2172. m_PreInfinity: 2
  2173. m_PostInfinity: 2
  2174. m_RotationOrder: 4
  2175. attribute: m_LocalEulerAngles.x
  2176. path: Right/LowerBody/LegL
  2177. classID: 4
  2178. script: {fileID: 0}
  2179. - curve:
  2180. serializedVersion: 2
  2181. m_Curve: []
  2182. m_PreInfinity: 2
  2183. m_PostInfinity: 2
  2184. m_RotationOrder: 4
  2185. attribute: m_LocalEulerAngles.z
  2186. path: Left/LowerBody
  2187. classID: 4
  2188. script: {fileID: 0}
  2189. - curve:
  2190. serializedVersion: 2
  2191. m_Curve: []
  2192. m_PreInfinity: 2
  2193. m_PostInfinity: 2
  2194. m_RotationOrder: 4
  2195. attribute: m_LocalEulerAngles.y
  2196. path: Left/LowerBody
  2197. classID: 4
  2198. script: {fileID: 0}
  2199. - curve:
  2200. serializedVersion: 2
  2201. m_Curve: []
  2202. m_PreInfinity: 2
  2203. m_PostInfinity: 2
  2204. m_RotationOrder: 4
  2205. attribute: m_LocalEulerAngles.x
  2206. path: Left/LowerBody
  2207. classID: 4
  2208. script: {fileID: 0}
  2209. - curve:
  2210. serializedVersion: 2
  2211. m_Curve: []
  2212. m_PreInfinity: 2
  2213. m_PostInfinity: 2
  2214. m_RotationOrder: 4
  2215. attribute: m_LocalEulerAngles.x
  2216. path: Right/LowerBody/LegR
  2217. classID: 4
  2218. script: {fileID: 0}
  2219. - curve:
  2220. serializedVersion: 2
  2221. m_Curve: []
  2222. m_PreInfinity: 2
  2223. m_PostInfinity: 2
  2224. m_RotationOrder: 4
  2225. attribute: m_LocalEulerAngles.y
  2226. path: Right/LowerBody/LegR
  2227. classID: 4
  2228. script: {fileID: 0}
  2229. - curve:
  2230. serializedVersion: 2
  2231. m_Curve: []
  2232. m_PreInfinity: 2
  2233. m_PostInfinity: 2
  2234. m_RotationOrder: 4
  2235. attribute: m_LocalEulerAngles.z
  2236. path: Right/LowerBody/LegR
  2237. classID: 4
  2238. script: {fileID: 0}
  2239. m_HasGenericRootTransform: 0
  2240. m_HasMotionFloatCurves: 0
  2241. m_Events: []