Anim_walkLegs.anim 57 KB

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