HumanoidIdleJumpUp.fbx.meta 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385
  1. fileFormatVersion: 2
  2. guid: 0d9d26e2162aa4d11ab075b34c029673
  3. ModelImporter:
  4. serializedVersion: 18
  5. fileIDToRecycleName:
  6. 100000: //RootNode
  7. 100002: l_hipProxy_geo
  8. 100004: l_kneeProxy_geo
  9. 100006: l_ankleProxy_geo
  10. 100008: l_ballProxy_geo
  11. 100010: LToeBase_End2
  12. 100012: LeftToes
  13. 100014: LeftFoot
  14. 100016: LeftLeg
  15. 100018: LeftUpLeg
  16. 100020: pelvisProxy_geo
  17. 100022: r_hipProxy_geo
  18. 100024: r_kneeProxy_geo
  19. 100026: r_ankleProxy_geo
  20. 100028: r_ballProxy_geo
  21. 100030: LToeBase_End3
  22. 100032: RightToes
  23. 100034: RightFoot
  24. 100036: RightLeg
  25. 100038: RightUpLeg
  26. 100040: spineProxy_geo
  27. 100042: l_clavicleProxy_geo
  28. 100044: l_shourderProxy_geo
  29. 100046: l_erbowProxy_geo
  30. 100048: l_wristProxy_geo
  31. 100050: l_thumbProxy_01_geo
  32. 100052: l_thumbProxy_02_geo
  33. 100054: l_thumbProxy_03_geo
  34. 100056: LeftHandThumb13
  35. 100058: LeftHandThumb3
  36. 100060: LeftHandThumb2
  37. 100062: LeftHandThumb1
  38. 100064: l_indexProxy_01_geo
  39. 100066: l_indexProxy_02_geo
  40. 100068: l_indexProxy_03_geo
  41. 100070: LeftHandIndex13
  42. 100072: LeftHandIndex3
  43. 100074: LeftHandIndex2
  44. 100076: LeftHandIndex1
  45. 100078: l_middleProxy_01_geo
  46. 100080: l_middleProxy_02_geo
  47. 100082: l_middleProxy_03_geo
  48. 100084: LeftHandMiddle13
  49. 100086: LeftHandMiddle3
  50. 100088: LeftHandMiddle2
  51. 100090: LeftHandMiddle1
  52. 100092: l_ringProxy_01_geo
  53. 100094: l_ringProxy_02_geo
  54. 100096: l_ringProxy_03_geo
  55. 100098: LeftHandRing13
  56. 100100: LeftHandRing3
  57. 100102: LeftHandRing2
  58. 100104: LeftHandRing1
  59. 100106: l_pinkyProxy_01_geo
  60. 100108: l_pinkyProxy_02_geo
  61. 100110: l_pinkyProxy_03_geo
  62. 100112: LeftHandPinky13
  63. 100114: LeftHandPinky3
  64. 100116: LeftHandPinky2
  65. 100118: LeftHandPinky1
  66. 100120: LeftHand
  67. 100122: LeftForeArm
  68. 100124: LeftArm
  69. 100126: LeftShoulder
  70. 100128: chestProxy_geo
  71. 100130: r_clavicleProxy_geo
  72. 100132: r_shourderProxy_geo
  73. 100134: r_erbowProxy_geo
  74. 100136: r_wristProxy_geo
  75. 100138: r_thumbProxy_01_geo
  76. 100140: r_thumbProxy_02_geo
  77. 100142: r_thumbProxy_03_geo
  78. 100144: LeftHandThumb17
  79. 100146: RightHandThumb3
  80. 100148: RightHandThumb2
  81. 100150: RightHandThumb1
  82. 100152: r_indexProxy_01_geo
  83. 100154: r_indexProxy_02_geo
  84. 100156: r_indexProxy_03_geo
  85. 100158: LeftHandIndex17
  86. 100160: RightHandIndex3
  87. 100162: RightHandIndex2
  88. 100164: RightHandIndex1
  89. 100166: r_middleProxy_01_geo
  90. 100168: r_middleProxy_02_geo
  91. 100170: r_middleProxy_03_geo
  92. 100172: LeftHandMiddle17
  93. 100174: RightHandMiddle3
  94. 100176: RightHandMiddle2
  95. 100178: RightHandMiddle1
  96. 100180: r_ringProxy_01_geo
  97. 100182: r_ringProxy_02_geo
  98. 100184: r_ringProxy_03_geo
  99. 100186: LeftHandRing17
  100. 100188: RightHandRing3
  101. 100190: RightHandRing2
  102. 100192: RightHandRing1
  103. 100194: r_pinkyProxy_01_geo
  104. 100196: r_pinkyProxy_02_geo
  105. 100198: r_pinkyProxy_03_geo
  106. 100200: LeftHandPinky17
  107. 100202: RightHandPinky3
  108. 100204: RightHandPinky2
  109. 100206: RightHandPinky1
  110. 100208: RightHand
  111. 100210: RightForeArm
  112. 100212: RightArm
  113. 100214: RightShoulder
  114. 100216: neckProxy_geo
  115. 100218: UNI_01_Upper_teethProxy
  116. 100220: headProxy_geo
  117. 100222: RightLipUpper
  118. 100224: RightNostril
  119. 100226: RightCheek
  120. 100228: RightEyelidLower
  121. 100230: RightEyelidUpper
  122. 100232: RightIOuterBrow
  123. 100234: RightInnerBrow
  124. 100236: LeftIOuterBrow
  125. 100238: LeftInnerBrow
  126. 100240: LeftEyelidUpper
  127. 100242: LeftEyelidLower
  128. 100244: LeftCheek
  129. 100246: LeftNostril
  130. 100248: LeftLipUpper
  131. 100250: jawProxy_geo
  132. 100252: UNI_01_Lower_teethProxy
  133. 100254: LeftLipCorner
  134. 100256: RightLipCorner
  135. 100258: RightLipLower
  136. 100260: JawEND
  137. 100262: LeftLipLower
  138. 100264: UNI_01_TongueTipProxy
  139. 100266: TongueTip
  140. 100268: UNI_01_TongueBaseProxy
  141. 100270: TongueBack
  142. 100272: Jaw
  143. 100274: r_UNI_eye
  144. 100276: RightEye
  145. 100278: l_UNI_eye
  146. 100280: LeftEye
  147. 100282: HeadTop_End
  148. 100284: Head
  149. 100286: Neck
  150. 100288: Chest
  151. 100290: Spine
  152. 100292: Hips
  153. 100294: Reference
  154. 400000: //RootNode
  155. 400002: l_hipProxy_geo
  156. 400004: l_kneeProxy_geo
  157. 400006: l_ankleProxy_geo
  158. 400008: l_ballProxy_geo
  159. 400010: LToeBase_End2
  160. 400012: LeftToes
  161. 400014: LeftFoot
  162. 400016: LeftLeg
  163. 400018: LeftUpLeg
  164. 400020: pelvisProxy_geo
  165. 400022: r_hipProxy_geo
  166. 400024: r_kneeProxy_geo
  167. 400026: r_ankleProxy_geo
  168. 400028: r_ballProxy_geo
  169. 400030: LToeBase_End3
  170. 400032: RightToes
  171. 400034: RightFoot
  172. 400036: RightLeg
  173. 400038: RightUpLeg
  174. 400040: spineProxy_geo
  175. 400042: l_clavicleProxy_geo
  176. 400044: l_shourderProxy_geo
  177. 400046: l_erbowProxy_geo
  178. 400048: l_wristProxy_geo
  179. 400050: l_thumbProxy_01_geo
  180. 400052: l_thumbProxy_02_geo
  181. 400054: l_thumbProxy_03_geo
  182. 400056: LeftHandThumb13
  183. 400058: LeftHandThumb3
  184. 400060: LeftHandThumb2
  185. 400062: LeftHandThumb1
  186. 400064: l_indexProxy_01_geo
  187. 400066: l_indexProxy_02_geo
  188. 400068: l_indexProxy_03_geo
  189. 400070: LeftHandIndex13
  190. 400072: LeftHandIndex3
  191. 400074: LeftHandIndex2
  192. 400076: LeftHandIndex1
  193. 400078: l_middleProxy_01_geo
  194. 400080: l_middleProxy_02_geo
  195. 400082: l_middleProxy_03_geo
  196. 400084: LeftHandMiddle13
  197. 400086: LeftHandMiddle3
  198. 400088: LeftHandMiddle2
  199. 400090: LeftHandMiddle1
  200. 400092: l_ringProxy_01_geo
  201. 400094: l_ringProxy_02_geo
  202. 400096: l_ringProxy_03_geo
  203. 400098: LeftHandRing13
  204. 400100: LeftHandRing3
  205. 400102: LeftHandRing2
  206. 400104: LeftHandRing1
  207. 400106: l_pinkyProxy_01_geo
  208. 400108: l_pinkyProxy_02_geo
  209. 400110: l_pinkyProxy_03_geo
  210. 400112: LeftHandPinky13
  211. 400114: LeftHandPinky3
  212. 400116: LeftHandPinky2
  213. 400118: LeftHandPinky1
  214. 400120: LeftHand
  215. 400122: LeftForeArm
  216. 400124: LeftArm
  217. 400126: LeftShoulder
  218. 400128: chestProxy_geo
  219. 400130: r_clavicleProxy_geo
  220. 400132: r_shourderProxy_geo
  221. 400134: r_erbowProxy_geo
  222. 400136: r_wristProxy_geo
  223. 400138: r_thumbProxy_01_geo
  224. 400140: r_thumbProxy_02_geo
  225. 400142: r_thumbProxy_03_geo
  226. 400144: LeftHandThumb17
  227. 400146: RightHandThumb3
  228. 400148: RightHandThumb2
  229. 400150: RightHandThumb1
  230. 400152: r_indexProxy_01_geo
  231. 400154: r_indexProxy_02_geo
  232. 400156: r_indexProxy_03_geo
  233. 400158: LeftHandIndex17
  234. 400160: RightHandIndex3
  235. 400162: RightHandIndex2
  236. 400164: RightHandIndex1
  237. 400166: r_middleProxy_01_geo
  238. 400168: r_middleProxy_02_geo
  239. 400170: r_middleProxy_03_geo
  240. 400172: LeftHandMiddle17
  241. 400174: RightHandMiddle3
  242. 400176: RightHandMiddle2
  243. 400178: RightHandMiddle1
  244. 400180: r_ringProxy_01_geo
  245. 400182: r_ringProxy_02_geo
  246. 400184: r_ringProxy_03_geo
  247. 400186: LeftHandRing17
  248. 400188: RightHandRing3
  249. 400190: RightHandRing2
  250. 400192: RightHandRing1
  251. 400194: r_pinkyProxy_01_geo
  252. 400196: r_pinkyProxy_02_geo
  253. 400198: r_pinkyProxy_03_geo
  254. 400200: LeftHandPinky17
  255. 400202: RightHandPinky3
  256. 400204: RightHandPinky2
  257. 400206: RightHandPinky1
  258. 400208: RightHand
  259. 400210: RightForeArm
  260. 400212: RightArm
  261. 400214: RightShoulder
  262. 400216: neckProxy_geo
  263. 400218: UNI_01_Upper_teethProxy
  264. 400220: headProxy_geo
  265. 400222: RightLipUpper
  266. 400224: RightNostril
  267. 400226: RightCheek
  268. 400228: RightEyelidLower
  269. 400230: RightEyelidUpper
  270. 400232: RightIOuterBrow
  271. 400234: RightInnerBrow
  272. 400236: LeftIOuterBrow
  273. 400238: LeftInnerBrow
  274. 400240: LeftEyelidUpper
  275. 400242: LeftEyelidLower
  276. 400244: LeftCheek
  277. 400246: LeftNostril
  278. 400248: LeftLipUpper
  279. 400250: jawProxy_geo
  280. 400252: UNI_01_Lower_teethProxy
  281. 400254: LeftLipCorner
  282. 400256: RightLipCorner
  283. 400258: RightLipLower
  284. 400260: JawEND
  285. 400262: LeftLipLower
  286. 400264: UNI_01_TongueTipProxy
  287. 400266: TongueTip
  288. 400268: UNI_01_TongueBaseProxy
  289. 400270: TongueBack
  290. 400272: Jaw
  291. 400274: r_UNI_eye
  292. 400276: RightEye
  293. 400278: l_UNI_eye
  294. 400280: LeftEye
  295. 400282: HeadTop_End
  296. 400284: Head
  297. 400286: Neck
  298. 400288: Chest
  299. 400290: Spine
  300. 400292: Hips
  301. 400294: Reference
  302. 2300000: l_hipProxy_geo
  303. 2300002: l_kneeProxy_geo
  304. 2300004: l_ankleProxy_geo
  305. 2300006: l_ballProxy_geo
  306. 2300008: pelvisProxy_geo
  307. 2300010: r_hipProxy_geo
  308. 2300012: r_kneeProxy_geo
  309. 2300014: r_ankleProxy_geo
  310. 2300016: r_ballProxy_geo
  311. 2300018: spineProxy_geo
  312. 2300020: l_clavicleProxy_geo
  313. 2300022: l_shourderProxy_geo
  314. 2300024: l_erbowProxy_geo
  315. 2300026: l_wristProxy_geo
  316. 2300028: l_thumbProxy_01_geo
  317. 2300030: l_thumbProxy_02_geo
  318. 2300032: l_thumbProxy_03_geo
  319. 2300034: l_indexProxy_01_geo
  320. 2300036: l_indexProxy_02_geo
  321. 2300038: l_indexProxy_03_geo
  322. 2300040: l_middleProxy_01_geo
  323. 2300042: l_middleProxy_02_geo
  324. 2300044: l_middleProxy_03_geo
  325. 2300046: l_ringProxy_01_geo
  326. 2300048: l_ringProxy_02_geo
  327. 2300050: l_ringProxy_03_geo
  328. 2300052: l_pinkyProxy_01_geo
  329. 2300054: l_pinkyProxy_02_geo
  330. 2300056: l_pinkyProxy_03_geo
  331. 2300058: chestProxy_geo
  332. 2300060: r_clavicleProxy_geo
  333. 2300062: r_shourderProxy_geo
  334. 2300064: r_erbowProxy_geo
  335. 2300066: r_wristProxy_geo
  336. 2300068: r_thumbProxy_01_geo
  337. 2300070: r_thumbProxy_02_geo
  338. 2300072: r_thumbProxy_03_geo
  339. 2300074: r_indexProxy_01_geo
  340. 2300076: r_indexProxy_02_geo
  341. 2300078: r_indexProxy_03_geo
  342. 2300080: r_middleProxy_01_geo
  343. 2300082: r_middleProxy_02_geo
  344. 2300084: r_middleProxy_03_geo
  345. 2300086: r_ringProxy_01_geo
  346. 2300088: r_ringProxy_02_geo
  347. 2300090: r_ringProxy_03_geo
  348. 2300092: r_pinkyProxy_01_geo
  349. 2300094: r_pinkyProxy_02_geo
  350. 2300096: r_pinkyProxy_03_geo
  351. 2300098: neckProxy_geo
  352. 2300100: UNI_01_Upper_teethProxy
  353. 2300102: headProxy_geo
  354. 2300104: jawProxy_geo
  355. 2300106: UNI_01_Lower_teethProxy
  356. 2300108: UNI_01_TongueTipProxy
  357. 2300110: UNI_01_TongueBaseProxy
  358. 2300112: r_UNI_eye
  359. 2300114: l_UNI_eye
  360. 3300000: l_hipProxy_geo
  361. 3300002: l_kneeProxy_geo
  362. 3300004: l_ankleProxy_geo
  363. 3300006: l_ballProxy_geo
  364. 3300008: pelvisProxy_geo
  365. 3300010: r_hipProxy_geo
  366. 3300012: r_kneeProxy_geo
  367. 3300014: r_ankleProxy_geo
  368. 3300016: r_ballProxy_geo
  369. 3300018: spineProxy_geo
  370. 3300020: l_clavicleProxy_geo
  371. 3300022: l_shourderProxy_geo
  372. 3300024: l_erbowProxy_geo
  373. 3300026: l_wristProxy_geo
  374. 3300028: l_thumbProxy_01_geo
  375. 3300030: l_thumbProxy_02_geo
  376. 3300032: l_thumbProxy_03_geo
  377. 3300034: l_indexProxy_01_geo
  378. 3300036: l_indexProxy_02_geo
  379. 3300038: l_indexProxy_03_geo
  380. 3300040: l_middleProxy_01_geo
  381. 3300042: l_middleProxy_02_geo
  382. 3300044: l_middleProxy_03_geo
  383. 3300046: l_ringProxy_01_geo
  384. 3300048: l_ringProxy_02_geo
  385. 3300050: l_ringProxy_03_geo
  386. 3300052: l_pinkyProxy_01_geo
  387. 3300054: l_pinkyProxy_02_geo
  388. 3300056: l_pinkyProxy_03_geo
  389. 3300058: chestProxy_geo
  390. 3300060: r_clavicleProxy_geo
  391. 3300062: r_shourderProxy_geo
  392. 3300064: r_erbowProxy_geo
  393. 3300066: r_wristProxy_geo
  394. 3300068: r_thumbProxy_01_geo
  395. 3300070: r_thumbProxy_02_geo
  396. 3300072: r_thumbProxy_03_geo
  397. 3300074: r_indexProxy_01_geo
  398. 3300076: r_indexProxy_02_geo
  399. 3300078: r_indexProxy_03_geo
  400. 3300080: r_middleProxy_01_geo
  401. 3300082: r_middleProxy_02_geo
  402. 3300084: r_middleProxy_03_geo
  403. 3300086: r_ringProxy_01_geo
  404. 3300088: r_ringProxy_02_geo
  405. 3300090: r_ringProxy_03_geo
  406. 3300092: r_pinkyProxy_01_geo
  407. 3300094: r_pinkyProxy_02_geo
  408. 3300096: r_pinkyProxy_03_geo
  409. 3300098: neckProxy_geo
  410. 3300100: UNI_01_Upper_teethProxy
  411. 3300102: headProxy_geo
  412. 3300104: jawProxy_geo
  413. 3300106: UNI_01_Lower_teethProxy
  414. 3300108: UNI_01_TongueTipProxy
  415. 3300110: UNI_01_TongueBaseProxy
  416. 3300112: r_UNI_eye
  417. 3300114: l_UNI_eye
  418. 4300000: l_UNI_eye
  419. 4300002: r_UNI_eye
  420. 4300004: UNI_01_TongueBaseProxy
  421. 4300006: UNI_01_TongueTipProxy
  422. 4300008: UNI_01_Lower_teethProxy
  423. 4300010: jawProxy_geo
  424. 4300012: headProxy_geo
  425. 4300014: UNI_01_Upper_teethProxy
  426. 4300016: neckProxy_geo
  427. 4300018: r_pinkyProxy_03_geo
  428. 4300020: r_pinkyProxy_02_geo
  429. 4300022: r_pinkyProxy_01_geo
  430. 4300024: r_ringProxy_03_geo
  431. 4300026: r_ringProxy_02_geo
  432. 4300028: r_ringProxy_01_geo
  433. 4300030: r_middleProxy_03_geo
  434. 4300032: r_middleProxy_02_geo
  435. 4300034: r_middleProxy_01_geo
  436. 4300036: r_indexProxy_03_geo
  437. 4300038: r_indexProxy_02_geo
  438. 4300040: r_indexProxy_01_geo
  439. 4300042: r_thumbProxy_03_geo
  440. 4300044: r_thumbProxy_02_geo
  441. 4300046: r_thumbProxy_01_geo
  442. 4300048: r_wristProxy_geo
  443. 4300050: r_erbowProxy_geo
  444. 4300052: r_shourderProxy_geo
  445. 4300054: r_clavicleProxy_geo
  446. 4300056: chestProxy_geo
  447. 4300058: l_pinkyProxy_03_geo
  448. 4300060: l_pinkyProxy_02_geo
  449. 4300062: l_pinkyProxy_01_geo
  450. 4300064: l_ringProxy_03_geo
  451. 4300066: l_ringProxy_02_geo
  452. 4300068: l_ringProxy_01_geo
  453. 4300070: l_middleProxy_03_geo
  454. 4300072: l_middleProxy_02_geo
  455. 4300074: l_middleProxy_01_geo
  456. 4300076: l_indexProxy_03_geo
  457. 4300078: l_indexProxy_02_geo
  458. 4300080: l_indexProxy_01_geo
  459. 4300082: l_thumbProxy_03_geo
  460. 4300084: l_thumbProxy_02_geo
  461. 4300086: l_thumbProxy_01_geo
  462. 4300088: l_wristProxy_geo
  463. 4300090: l_erbowProxy_geo
  464. 4300092: l_shourderProxy_geo
  465. 4300094: l_clavicleProxy_geo
  466. 4300096: spineProxy_geo
  467. 4300098: r_ballProxy_geo
  468. 4300100: r_ankleProxy_geo
  469. 4300102: r_kneeProxy_geo
  470. 4300104: r_hipProxy_geo
  471. 4300106: pelvisProxy_geo
  472. 4300108: l_ballProxy_geo
  473. 4300110: l_ankleProxy_geo
  474. 4300112: l_kneeProxy_geo
  475. 4300114: l_hipProxy_geo
  476. 7400000: __preview___207_Idle_JumpUpMedium_NoHands1Step_Idle
  477. 7400002: HumanoidIdleJumpUp
  478. 7400004: HumanoidFall
  479. 7400006: HumanoidJumpUp
  480. 7400008: HumanoidMidAir
  481. 9500000: //RootNode
  482. 11100000: //RootNode
  483. materials:
  484. importMaterials: 0
  485. materialName: 1
  486. materialSearch: 2
  487. animations:
  488. legacyGenerateAnimations: 3
  489. bakeSimulation: 0
  490. optimizeGameObjects: 0
  491. motionNodeName:
  492. pivotNodeName:
  493. animationCompression: 1
  494. animationRotationError: .5
  495. animationPositionError: .5
  496. animationScaleError: .5
  497. animationWrapMode: 0
  498. extraExposedTransformPaths: []
  499. clipAnimations:
  500. - serializedVersion: 16
  501. name: HumanoidIdleJumpUp
  502. takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle
  503. firstFrame: 56
  504. lastFrame: 233
  505. wrapMode: 0
  506. orientationOffsetY: 0
  507. level: 0
  508. cycleOffset: 0
  509. loop: 0
  510. loopTime: 0
  511. loopBlend: 0
  512. loopBlendOrientation: 0
  513. loopBlendPositionY: 0
  514. loopBlendPositionXZ: 0
  515. keepOriginalOrientation: 0
  516. keepOriginalPositionY: 1
  517. keepOriginalPositionXZ: 0
  518. heightFromFeet: 0
  519. mirror: 0
  520. bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
  521. curves: []
  522. events: []
  523. transformMask:
  524. - path:
  525. weight: 0
  526. maskType: 0
  527. maskSource: {instanceID: 0}
  528. - serializedVersion: 16
  529. name: HumanoidFall
  530. takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle
  531. firstFrame: 127
  532. lastFrame: 129
  533. wrapMode: 0
  534. orientationOffsetY: 0
  535. level: 0
  536. cycleOffset: 0
  537. loop: 0
  538. loopTime: 1
  539. loopBlend: 1
  540. loopBlendOrientation: 0
  541. loopBlendPositionY: 1
  542. loopBlendPositionXZ: 0
  543. keepOriginalOrientation: 0
  544. keepOriginalPositionY: 0
  545. keepOriginalPositionXZ: 0
  546. heightFromFeet: 1
  547. mirror: 0
  548. bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
  549. curves: []
  550. events: []
  551. transformMask:
  552. - path:
  553. weight: 1
  554. - path: Reference
  555. weight: 1
  556. - path: Reference/Hips
  557. weight: 1
  558. - path: Reference/Hips/LeftUpLeg
  559. weight: 1
  560. - path: Reference/Hips/LeftUpLeg/l_hipProxy_geo
  561. weight: 0
  562. - path: Reference/Hips/LeftUpLeg/LeftLeg
  563. weight: 1
  564. - path: Reference/Hips/LeftUpLeg/LeftLeg/l_kneeProxy_geo
  565. weight: 0
  566. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
  567. weight: 1
  568. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/l_ankleProxy_geo
  569. weight: 0
  570. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
  571. weight: 1
  572. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/l_ballProxy_geo
  573. weight: 0
  574. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2
  575. weight: 0
  576. - path: Reference/Hips/pelvisProxy_geo
  577. weight: 0
  578. - path: Reference/Hips/RightUpLeg
  579. weight: 1
  580. - path: Reference/Hips/RightUpLeg/r_hipProxy_geo
  581. weight: 0
  582. - path: Reference/Hips/RightUpLeg/RightLeg
  583. weight: 1
  584. - path: Reference/Hips/RightUpLeg/RightLeg/r_kneeProxy_geo
  585. weight: 0
  586. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
  587. weight: 1
  588. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/r_ankleProxy_geo
  589. weight: 0
  590. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
  591. weight: 1
  592. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3
  593. weight: 0
  594. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/r_ballProxy_geo
  595. weight: 0
  596. - path: Reference/Hips/Spine
  597. weight: 1
  598. - path: Reference/Hips/Spine/Chest
  599. weight: 1
  600. - path: Reference/Hips/Spine/Chest/chestProxy_geo
  601. weight: 0
  602. - path: Reference/Hips/Spine/Chest/LeftShoulder
  603. weight: 1
  604. - path: Reference/Hips/Spine/Chest/LeftShoulder/l_clavicleProxy_geo
  605. weight: 0
  606. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
  607. weight: 1
  608. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/l_shourderProxy_geo
  609. weight: 0
  610. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
  611. weight: 1
  612. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/l_erbowProxy_geo
  613. weight: 0
  614. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
  615. weight: 1
  616. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/l_wristProxy_geo
  617. weight: 0
  618. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
  619. weight: 1
  620. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/l_indexProxy_01_geo
  621. weight: 0
  622. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
  623. weight: 1
  624. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/l_indexProxy_02_geo
  625. weight: 0
  626. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
  627. weight: 1
  628. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/l_indexProxy_03_geo
  629. weight: 0
  630. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13
  631. weight: 0
  632. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
  633. weight: 1
  634. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/l_middleProxy_01_geo
  635. weight: 0
  636. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
  637. weight: 1
  638. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/l_middleProxy_02_geo
  639. weight: 0
  640. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
  641. weight: 1
  642. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/l_middleProxy_03_geo
  643. weight: 0
  644. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13
  645. weight: 0
  646. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
  647. weight: 1
  648. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/l_pinkyProxy_01_geo
  649. weight: 0
  650. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
  651. weight: 1
  652. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/l_pinkyProxy_02_geo
  653. weight: 0
  654. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
  655. weight: 1
  656. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/l_pinkyProxy_03_geo
  657. weight: 0
  658. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13
  659. weight: 0
  660. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
  661. weight: 1
  662. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/l_ringProxy_01_geo
  663. weight: 0
  664. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
  665. weight: 1
  666. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/l_ringProxy_02_geo
  667. weight: 0
  668. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
  669. weight: 1
  670. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/l_ringProxy_03_geo
  671. weight: 0
  672. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13
  673. weight: 0
  674. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
  675. weight: 1
  676. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/l_thumbProxy_01_geo
  677. weight: 0
  678. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
  679. weight: 1
  680. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/l_thumbProxy_02_geo
  681. weight: 0
  682. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
  683. weight: 1
  684. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/l_thumbProxy_03_geo
  685. weight: 0
  686. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13
  687. weight: 0
  688. - path: Reference/Hips/Spine/Chest/Neck
  689. weight: 1
  690. - path: Reference/Hips/Spine/Chest/Neck/Head
  691. weight: 1
  692. - path: Reference/Hips/Spine/Chest/Neck/Head/headProxy_geo
  693. weight: 0
  694. - path: Reference/Hips/Spine/Chest/Neck/Head/HeadTop_End
  695. weight: 0
  696. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
  697. weight: 1
  698. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
  699. weight: 0
  700. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/jawProxy_geo
  701. weight: 0
  702. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
  703. weight: 0
  704. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
  705. weight: 0
  706. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
  707. weight: 0
  708. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
  709. weight: 0
  710. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
  711. weight: 0
  712. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/UNI_01_TongueBaseProxy
  713. weight: 0
  714. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
  715. weight: 0
  716. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip/UNI_01_TongueTipProxy
  717. weight: 0
  718. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/UNI_01_Lower_teethProxy
  719. weight: 0
  720. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
  721. weight: 0
  722. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
  723. weight: 1
  724. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/l_UNI_eye
  725. weight: 0
  726. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
  727. weight: 0
  728. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
  729. weight: 0
  730. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
  731. weight: 0
  732. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
  733. weight: 0
  734. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
  735. weight: 0
  736. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
  737. weight: 0
  738. - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
  739. weight: 0
  740. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
  741. weight: 1
  742. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/r_UNI_eye
  743. weight: 0
  744. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
  745. weight: 0
  746. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
  747. weight: 0
  748. - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
  749. weight: 0
  750. - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
  751. weight: 0
  752. - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
  753. weight: 0
  754. - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
  755. weight: 0
  756. - path: Reference/Hips/Spine/Chest/Neck/Head/UNI_01_Upper_teethProxy
  757. weight: 0
  758. - path: Reference/Hips/Spine/Chest/Neck/neckProxy_geo
  759. weight: 0
  760. - path: Reference/Hips/Spine/Chest/RightShoulder
  761. weight: 1
  762. - path: Reference/Hips/Spine/Chest/RightShoulder/r_clavicleProxy_geo
  763. weight: 0
  764. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
  765. weight: 1
  766. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/r_shourderProxy_geo
  767. weight: 0
  768. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
  769. weight: 1
  770. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/r_erbowProxy_geo
  771. weight: 0
  772. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
  773. weight: 1
  774. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/r_wristProxy_geo
  775. weight: 0
  776. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
  777. weight: 1
  778. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/r_indexProxy_01_geo
  779. weight: 0
  780. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
  781. weight: 1
  782. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/r_indexProxy_02_geo
  783. weight: 0
  784. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
  785. weight: 1
  786. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17
  787. weight: 0
  788. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/r_indexProxy_03_geo
  789. weight: 0
  790. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
  791. weight: 1
  792. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/r_middleProxy_01_geo
  793. weight: 0
  794. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
  795. weight: 1
  796. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/r_middleProxy_02_geo
  797. weight: 0
  798. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
  799. weight: 1
  800. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17
  801. weight: 0
  802. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/r_middleProxy_03_geo
  803. weight: 0
  804. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
  805. weight: 1
  806. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/r_pinkyProxy_01_geo
  807. weight: 0
  808. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
  809. weight: 1
  810. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/r_pinkyProxy_02_geo
  811. weight: 0
  812. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
  813. weight: 1
  814. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17
  815. weight: 0
  816. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/r_pinkyProxy_03_geo
  817. weight: 0
  818. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
  819. weight: 1
  820. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/r_ringProxy_01_geo
  821. weight: 0
  822. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
  823. weight: 1
  824. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/r_ringProxy_02_geo
  825. weight: 0
  826. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
  827. weight: 1
  828. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17
  829. weight: 0
  830. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/r_ringProxy_03_geo
  831. weight: 0
  832. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
  833. weight: 1
  834. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/r_thumbProxy_01_geo
  835. weight: 0
  836. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
  837. weight: 1
  838. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/r_thumbProxy_02_geo
  839. weight: 0
  840. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
  841. weight: 1
  842. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17
  843. weight: 0
  844. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/r_thumbProxy_03_geo
  845. weight: 0
  846. - path: Reference/Hips/Spine/spineProxy_geo
  847. weight: 0
  848. maskType: 0
  849. maskSource: {instanceID: 0}
  850. - serializedVersion: 16
  851. name: HumanoidJumpUp
  852. takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle
  853. firstFrame: 125
  854. lastFrame: 127
  855. wrapMode: 0
  856. orientationOffsetY: 0
  857. level: 0
  858. cycleOffset: 0
  859. loop: 0
  860. loopTime: 1
  861. loopBlend: 1
  862. loopBlendOrientation: 0
  863. loopBlendPositionY: 0
  864. loopBlendPositionXZ: 0
  865. keepOriginalOrientation: 0
  866. keepOriginalPositionY: 1
  867. keepOriginalPositionXZ: 0
  868. heightFromFeet: 0
  869. mirror: 0
  870. bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
  871. curves: []
  872. events: []
  873. transformMask:
  874. - path:
  875. weight: 1
  876. - path: Reference
  877. weight: 1
  878. - path: Reference/Hips
  879. weight: 1
  880. - path: Reference/Hips/LeftUpLeg
  881. weight: 1
  882. - path: Reference/Hips/LeftUpLeg/l_hipProxy_geo
  883. weight: 0
  884. - path: Reference/Hips/LeftUpLeg/LeftLeg
  885. weight: 1
  886. - path: Reference/Hips/LeftUpLeg/LeftLeg/l_kneeProxy_geo
  887. weight: 0
  888. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
  889. weight: 1
  890. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/l_ankleProxy_geo
  891. weight: 0
  892. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
  893. weight: 1
  894. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/l_ballProxy_geo
  895. weight: 0
  896. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2
  897. weight: 0
  898. - path: Reference/Hips/pelvisProxy_geo
  899. weight: 0
  900. - path: Reference/Hips/RightUpLeg
  901. weight: 1
  902. - path: Reference/Hips/RightUpLeg/r_hipProxy_geo
  903. weight: 0
  904. - path: Reference/Hips/RightUpLeg/RightLeg
  905. weight: 1
  906. - path: Reference/Hips/RightUpLeg/RightLeg/r_kneeProxy_geo
  907. weight: 0
  908. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
  909. weight: 1
  910. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/r_ankleProxy_geo
  911. weight: 0
  912. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
  913. weight: 1
  914. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3
  915. weight: 0
  916. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/r_ballProxy_geo
  917. weight: 0
  918. - path: Reference/Hips/Spine
  919. weight: 1
  920. - path: Reference/Hips/Spine/Chest
  921. weight: 1
  922. - path: Reference/Hips/Spine/Chest/chestProxy_geo
  923. weight: 0
  924. - path: Reference/Hips/Spine/Chest/LeftShoulder
  925. weight: 1
  926. - path: Reference/Hips/Spine/Chest/LeftShoulder/l_clavicleProxy_geo
  927. weight: 0
  928. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
  929. weight: 1
  930. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/l_shourderProxy_geo
  931. weight: 0
  932. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
  933. weight: 1
  934. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/l_erbowProxy_geo
  935. weight: 0
  936. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
  937. weight: 1
  938. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/l_wristProxy_geo
  939. weight: 0
  940. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
  941. weight: 1
  942. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/l_indexProxy_01_geo
  943. weight: 0
  944. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
  945. weight: 1
  946. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/l_indexProxy_02_geo
  947. weight: 0
  948. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
  949. weight: 1
  950. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/l_indexProxy_03_geo
  951. weight: 0
  952. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13
  953. weight: 0
  954. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
  955. weight: 1
  956. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/l_middleProxy_01_geo
  957. weight: 0
  958. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
  959. weight: 1
  960. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/l_middleProxy_02_geo
  961. weight: 0
  962. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
  963. weight: 1
  964. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/l_middleProxy_03_geo
  965. weight: 0
  966. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13
  967. weight: 0
  968. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
  969. weight: 1
  970. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/l_pinkyProxy_01_geo
  971. weight: 0
  972. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
  973. weight: 1
  974. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/l_pinkyProxy_02_geo
  975. weight: 0
  976. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
  977. weight: 1
  978. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/l_pinkyProxy_03_geo
  979. weight: 0
  980. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13
  981. weight: 0
  982. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
  983. weight: 1
  984. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/l_ringProxy_01_geo
  985. weight: 0
  986. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
  987. weight: 1
  988. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/l_ringProxy_02_geo
  989. weight: 0
  990. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
  991. weight: 1
  992. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/l_ringProxy_03_geo
  993. weight: 0
  994. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13
  995. weight: 0
  996. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
  997. weight: 1
  998. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/l_thumbProxy_01_geo
  999. weight: 0
  1000. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
  1001. weight: 1
  1002. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/l_thumbProxy_02_geo
  1003. weight: 0
  1004. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
  1005. weight: 1
  1006. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/l_thumbProxy_03_geo
  1007. weight: 0
  1008. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13
  1009. weight: 0
  1010. - path: Reference/Hips/Spine/Chest/Neck
  1011. weight: 1
  1012. - path: Reference/Hips/Spine/Chest/Neck/Head
  1013. weight: 1
  1014. - path: Reference/Hips/Spine/Chest/Neck/Head/headProxy_geo
  1015. weight: 0
  1016. - path: Reference/Hips/Spine/Chest/Neck/Head/HeadTop_End
  1017. weight: 0
  1018. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
  1019. weight: 1
  1020. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
  1021. weight: 0
  1022. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/jawProxy_geo
  1023. weight: 0
  1024. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
  1025. weight: 0
  1026. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
  1027. weight: 0
  1028. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
  1029. weight: 0
  1030. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
  1031. weight: 0
  1032. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
  1033. weight: 0
  1034. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/UNI_01_TongueBaseProxy
  1035. weight: 0
  1036. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
  1037. weight: 0
  1038. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip/UNI_01_TongueTipProxy
  1039. weight: 0
  1040. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/UNI_01_Lower_teethProxy
  1041. weight: 0
  1042. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
  1043. weight: 0
  1044. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
  1045. weight: 1
  1046. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/l_UNI_eye
  1047. weight: 0
  1048. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
  1049. weight: 0
  1050. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
  1051. weight: 0
  1052. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
  1053. weight: 0
  1054. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
  1055. weight: 0
  1056. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
  1057. weight: 0
  1058. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
  1059. weight: 0
  1060. - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
  1061. weight: 0
  1062. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
  1063. weight: 1
  1064. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/r_UNI_eye
  1065. weight: 0
  1066. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
  1067. weight: 0
  1068. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
  1069. weight: 0
  1070. - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
  1071. weight: 0
  1072. - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
  1073. weight: 0
  1074. - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
  1075. weight: 0
  1076. - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
  1077. weight: 0
  1078. - path: Reference/Hips/Spine/Chest/Neck/Head/UNI_01_Upper_teethProxy
  1079. weight: 0
  1080. - path: Reference/Hips/Spine/Chest/Neck/neckProxy_geo
  1081. weight: 0
  1082. - path: Reference/Hips/Spine/Chest/RightShoulder
  1083. weight: 1
  1084. - path: Reference/Hips/Spine/Chest/RightShoulder/r_clavicleProxy_geo
  1085. weight: 0
  1086. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
  1087. weight: 1
  1088. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/r_shourderProxy_geo
  1089. weight: 0
  1090. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
  1091. weight: 1
  1092. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/r_erbowProxy_geo
  1093. weight: 0
  1094. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
  1095. weight: 1
  1096. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/r_wristProxy_geo
  1097. weight: 0
  1098. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
  1099. weight: 1
  1100. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/r_indexProxy_01_geo
  1101. weight: 0
  1102. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
  1103. weight: 1
  1104. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/r_indexProxy_02_geo
  1105. weight: 0
  1106. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
  1107. weight: 1
  1108. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17
  1109. weight: 0
  1110. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/r_indexProxy_03_geo
  1111. weight: 0
  1112. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
  1113. weight: 1
  1114. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/r_middleProxy_01_geo
  1115. weight: 0
  1116. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
  1117. weight: 1
  1118. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/r_middleProxy_02_geo
  1119. weight: 0
  1120. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
  1121. weight: 1
  1122. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17
  1123. weight: 0
  1124. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/r_middleProxy_03_geo
  1125. weight: 0
  1126. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
  1127. weight: 1
  1128. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/r_pinkyProxy_01_geo
  1129. weight: 0
  1130. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
  1131. weight: 1
  1132. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/r_pinkyProxy_02_geo
  1133. weight: 0
  1134. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
  1135. weight: 1
  1136. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17
  1137. weight: 0
  1138. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/r_pinkyProxy_03_geo
  1139. weight: 0
  1140. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
  1141. weight: 1
  1142. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/r_ringProxy_01_geo
  1143. weight: 0
  1144. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
  1145. weight: 1
  1146. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/r_ringProxy_02_geo
  1147. weight: 0
  1148. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
  1149. weight: 1
  1150. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17
  1151. weight: 0
  1152. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/r_ringProxy_03_geo
  1153. weight: 0
  1154. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
  1155. weight: 1
  1156. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/r_thumbProxy_01_geo
  1157. weight: 0
  1158. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
  1159. weight: 1
  1160. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/r_thumbProxy_02_geo
  1161. weight: 0
  1162. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
  1163. weight: 1
  1164. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17
  1165. weight: 0
  1166. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/r_thumbProxy_03_geo
  1167. weight: 0
  1168. - path: Reference/Hips/Spine/spineProxy_geo
  1169. weight: 0
  1170. maskType: 0
  1171. maskSource: {instanceID: 0}
  1172. - serializedVersion: 16
  1173. name: HumanoidMidAir
  1174. takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle
  1175. firstFrame: 131
  1176. lastFrame: 133
  1177. wrapMode: 0
  1178. orientationOffsetY: 0
  1179. level: 0
  1180. cycleOffset: 0
  1181. loop: 0
  1182. loopTime: 1
  1183. loopBlend: 1
  1184. loopBlendOrientation: 0
  1185. loopBlendPositionY: 0
  1186. loopBlendPositionXZ: 0
  1187. keepOriginalOrientation: 0
  1188. keepOriginalPositionY: 1
  1189. keepOriginalPositionXZ: 0
  1190. heightFromFeet: 0
  1191. mirror: 0
  1192. bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
  1193. curves: []
  1194. events: []
  1195. transformMask:
  1196. - path:
  1197. weight: 1
  1198. - path: Reference
  1199. weight: 1
  1200. - path: Reference/Hips
  1201. weight: 1
  1202. - path: Reference/Hips/LeftUpLeg
  1203. weight: 1
  1204. - path: Reference/Hips/LeftUpLeg/l_hipProxy_geo
  1205. weight: 0
  1206. - path: Reference/Hips/LeftUpLeg/LeftLeg
  1207. weight: 1
  1208. - path: Reference/Hips/LeftUpLeg/LeftLeg/l_kneeProxy_geo
  1209. weight: 0
  1210. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
  1211. weight: 1
  1212. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/l_ankleProxy_geo
  1213. weight: 0
  1214. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
  1215. weight: 1
  1216. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/l_ballProxy_geo
  1217. weight: 0
  1218. - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2
  1219. weight: 0
  1220. - path: Reference/Hips/pelvisProxy_geo
  1221. weight: 0
  1222. - path: Reference/Hips/RightUpLeg
  1223. weight: 1
  1224. - path: Reference/Hips/RightUpLeg/r_hipProxy_geo
  1225. weight: 0
  1226. - path: Reference/Hips/RightUpLeg/RightLeg
  1227. weight: 1
  1228. - path: Reference/Hips/RightUpLeg/RightLeg/r_kneeProxy_geo
  1229. weight: 0
  1230. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
  1231. weight: 1
  1232. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/r_ankleProxy_geo
  1233. weight: 0
  1234. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
  1235. weight: 1
  1236. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3
  1237. weight: 0
  1238. - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/r_ballProxy_geo
  1239. weight: 0
  1240. - path: Reference/Hips/Spine
  1241. weight: 1
  1242. - path: Reference/Hips/Spine/Chest
  1243. weight: 1
  1244. - path: Reference/Hips/Spine/Chest/chestProxy_geo
  1245. weight: 0
  1246. - path: Reference/Hips/Spine/Chest/LeftShoulder
  1247. weight: 1
  1248. - path: Reference/Hips/Spine/Chest/LeftShoulder/l_clavicleProxy_geo
  1249. weight: 0
  1250. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
  1251. weight: 1
  1252. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/l_shourderProxy_geo
  1253. weight: 0
  1254. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
  1255. weight: 1
  1256. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/l_erbowProxy_geo
  1257. weight: 0
  1258. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
  1259. weight: 1
  1260. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/l_wristProxy_geo
  1261. weight: 0
  1262. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
  1263. weight: 1
  1264. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/l_indexProxy_01_geo
  1265. weight: 0
  1266. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
  1267. weight: 1
  1268. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/l_indexProxy_02_geo
  1269. weight: 0
  1270. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
  1271. weight: 1
  1272. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/l_indexProxy_03_geo
  1273. weight: 0
  1274. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13
  1275. weight: 0
  1276. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
  1277. weight: 1
  1278. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/l_middleProxy_01_geo
  1279. weight: 0
  1280. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
  1281. weight: 1
  1282. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/l_middleProxy_02_geo
  1283. weight: 0
  1284. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
  1285. weight: 1
  1286. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/l_middleProxy_03_geo
  1287. weight: 0
  1288. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13
  1289. weight: 0
  1290. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
  1291. weight: 1
  1292. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/l_pinkyProxy_01_geo
  1293. weight: 0
  1294. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
  1295. weight: 1
  1296. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/l_pinkyProxy_02_geo
  1297. weight: 0
  1298. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
  1299. weight: 1
  1300. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/l_pinkyProxy_03_geo
  1301. weight: 0
  1302. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13
  1303. weight: 0
  1304. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
  1305. weight: 1
  1306. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/l_ringProxy_01_geo
  1307. weight: 0
  1308. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
  1309. weight: 1
  1310. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/l_ringProxy_02_geo
  1311. weight: 0
  1312. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
  1313. weight: 1
  1314. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/l_ringProxy_03_geo
  1315. weight: 0
  1316. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13
  1317. weight: 0
  1318. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
  1319. weight: 1
  1320. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/l_thumbProxy_01_geo
  1321. weight: 0
  1322. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
  1323. weight: 1
  1324. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/l_thumbProxy_02_geo
  1325. weight: 0
  1326. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
  1327. weight: 1
  1328. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/l_thumbProxy_03_geo
  1329. weight: 0
  1330. - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13
  1331. weight: 0
  1332. - path: Reference/Hips/Spine/Chest/Neck
  1333. weight: 1
  1334. - path: Reference/Hips/Spine/Chest/Neck/Head
  1335. weight: 1
  1336. - path: Reference/Hips/Spine/Chest/Neck/Head/headProxy_geo
  1337. weight: 0
  1338. - path: Reference/Hips/Spine/Chest/Neck/Head/HeadTop_End
  1339. weight: 0
  1340. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
  1341. weight: 1
  1342. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
  1343. weight: 0
  1344. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/jawProxy_geo
  1345. weight: 0
  1346. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
  1347. weight: 0
  1348. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
  1349. weight: 0
  1350. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
  1351. weight: 0
  1352. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
  1353. weight: 0
  1354. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
  1355. weight: 0
  1356. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/UNI_01_TongueBaseProxy
  1357. weight: 0
  1358. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
  1359. weight: 0
  1360. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip/UNI_01_TongueTipProxy
  1361. weight: 0
  1362. - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/UNI_01_Lower_teethProxy
  1363. weight: 0
  1364. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
  1365. weight: 0
  1366. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
  1367. weight: 1
  1368. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/l_UNI_eye
  1369. weight: 0
  1370. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
  1371. weight: 0
  1372. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
  1373. weight: 0
  1374. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
  1375. weight: 0
  1376. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
  1377. weight: 0
  1378. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
  1379. weight: 0
  1380. - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
  1381. weight: 0
  1382. - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
  1383. weight: 0
  1384. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
  1385. weight: 1
  1386. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/r_UNI_eye
  1387. weight: 0
  1388. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
  1389. weight: 0
  1390. - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
  1391. weight: 0
  1392. - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
  1393. weight: 0
  1394. - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
  1395. weight: 0
  1396. - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
  1397. weight: 0
  1398. - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
  1399. weight: 0
  1400. - path: Reference/Hips/Spine/Chest/Neck/Head/UNI_01_Upper_teethProxy
  1401. weight: 0
  1402. - path: Reference/Hips/Spine/Chest/Neck/neckProxy_geo
  1403. weight: 0
  1404. - path: Reference/Hips/Spine/Chest/RightShoulder
  1405. weight: 1
  1406. - path: Reference/Hips/Spine/Chest/RightShoulder/r_clavicleProxy_geo
  1407. weight: 0
  1408. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
  1409. weight: 1
  1410. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/r_shourderProxy_geo
  1411. weight: 0
  1412. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
  1413. weight: 1
  1414. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/r_erbowProxy_geo
  1415. weight: 0
  1416. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
  1417. weight: 1
  1418. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/r_wristProxy_geo
  1419. weight: 0
  1420. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
  1421. weight: 1
  1422. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/r_indexProxy_01_geo
  1423. weight: 0
  1424. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
  1425. weight: 1
  1426. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/r_indexProxy_02_geo
  1427. weight: 0
  1428. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
  1429. weight: 1
  1430. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17
  1431. weight: 0
  1432. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/r_indexProxy_03_geo
  1433. weight: 0
  1434. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
  1435. weight: 1
  1436. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/r_middleProxy_01_geo
  1437. weight: 0
  1438. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
  1439. weight: 1
  1440. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/r_middleProxy_02_geo
  1441. weight: 0
  1442. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
  1443. weight: 1
  1444. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17
  1445. weight: 0
  1446. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/r_middleProxy_03_geo
  1447. weight: 0
  1448. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
  1449. weight: 1
  1450. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/r_pinkyProxy_01_geo
  1451. weight: 0
  1452. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
  1453. weight: 1
  1454. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/r_pinkyProxy_02_geo
  1455. weight: 0
  1456. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
  1457. weight: 1
  1458. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17
  1459. weight: 0
  1460. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/r_pinkyProxy_03_geo
  1461. weight: 0
  1462. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
  1463. weight: 1
  1464. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/r_ringProxy_01_geo
  1465. weight: 0
  1466. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
  1467. weight: 1
  1468. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/r_ringProxy_02_geo
  1469. weight: 0
  1470. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
  1471. weight: 1
  1472. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17
  1473. weight: 0
  1474. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/r_ringProxy_03_geo
  1475. weight: 0
  1476. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
  1477. weight: 1
  1478. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/r_thumbProxy_01_geo
  1479. weight: 0
  1480. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
  1481. weight: 1
  1482. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/r_thumbProxy_02_geo
  1483. weight: 0
  1484. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
  1485. weight: 1
  1486. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17
  1487. weight: 0
  1488. - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/r_thumbProxy_03_geo
  1489. weight: 0
  1490. - path: Reference/Hips/Spine/spineProxy_geo
  1491. weight: 0
  1492. maskType: 0
  1493. maskSource: {instanceID: 0}
  1494. isReadable: 1
  1495. meshes:
  1496. lODScreenPercentages: []
  1497. globalScale: .00999999978
  1498. meshCompression: 0
  1499. addColliders: 0
  1500. importBlendShapes: 0
  1501. swapUVChannels: 0
  1502. generateSecondaryUV: 0
  1503. useFileUnits: 1
  1504. optimizeMeshForGPU: 1
  1505. weldVertices: 1
  1506. secondaryUVAngleDistortion: 8
  1507. secondaryUVAreaDistortion: 15.000001
  1508. secondaryUVHardAngle: 88
  1509. secondaryUVPackMargin: 4
  1510. useFileScale: 0
  1511. tangentSpace:
  1512. normalSmoothAngle: 60
  1513. splitTangentsAcrossUV: 1
  1514. normalImportMode: 0
  1515. tangentImportMode: 1
  1516. importAnimation: 1
  1517. copyAvatar: 0
  1518. humanDescription:
  1519. human:
  1520. - boneName: Hips
  1521. humanName: Hips
  1522. limit:
  1523. min: {x: 0, y: 0, z: 0}
  1524. max: {x: 0, y: 0, z: 0}
  1525. value: {x: 0, y: 0, z: 0}
  1526. length: 0
  1527. modified: 0
  1528. - boneName: LeftUpLeg
  1529. humanName: LeftUpperLeg
  1530. limit:
  1531. min: {x: 0, y: 0, z: 0}
  1532. max: {x: 0, y: 0, z: 0}
  1533. value: {x: 0, y: 0, z: 0}
  1534. length: 0
  1535. modified: 0
  1536. - boneName: RightUpLeg
  1537. humanName: RightUpperLeg
  1538. limit:
  1539. min: {x: 0, y: 0, z: 0}
  1540. max: {x: 0, y: 0, z: 0}
  1541. value: {x: 0, y: 0, z: 0}
  1542. length: 0
  1543. modified: 0
  1544. - boneName: LeftLeg
  1545. humanName: LeftLowerLeg
  1546. limit:
  1547. min: {x: 0, y: 0, z: 0}
  1548. max: {x: 0, y: 0, z: 0}
  1549. value: {x: 0, y: 0, z: 0}
  1550. length: 0
  1551. modified: 0
  1552. - boneName: RightLeg
  1553. humanName: RightLowerLeg
  1554. limit:
  1555. min: {x: 0, y: 0, z: 0}
  1556. max: {x: 0, y: 0, z: 0}
  1557. value: {x: 0, y: 0, z: 0}
  1558. length: 0
  1559. modified: 0
  1560. - boneName: LeftFoot
  1561. humanName: LeftFoot
  1562. limit:
  1563. min: {x: 0, y: 0, z: 0}
  1564. max: {x: 0, y: 0, z: 0}
  1565. value: {x: 0, y: 0, z: 0}
  1566. length: 0
  1567. modified: 0
  1568. - boneName: RightFoot
  1569. humanName: RightFoot
  1570. limit:
  1571. min: {x: 0, y: 0, z: 0}
  1572. max: {x: 0, y: 0, z: 0}
  1573. value: {x: 0, y: 0, z: 0}
  1574. length: 0
  1575. modified: 0
  1576. - boneName: Spine
  1577. humanName: Spine
  1578. limit:
  1579. min: {x: 0, y: 0, z: 0}
  1580. max: {x: 0, y: 0, z: 0}
  1581. value: {x: 0, y: 0, z: 0}
  1582. length: 0
  1583. modified: 0
  1584. - boneName: Chest
  1585. humanName: Chest
  1586. limit:
  1587. min: {x: 0, y: 0, z: 0}
  1588. max: {x: 0, y: 0, z: 0}
  1589. value: {x: 0, y: 0, z: 0}
  1590. length: 0
  1591. modified: 0
  1592. - boneName: Neck
  1593. humanName: Neck
  1594. limit:
  1595. min: {x: 0, y: 0, z: 0}
  1596. max: {x: 0, y: 0, z: 0}
  1597. value: {x: 0, y: 0, z: 0}
  1598. length: 0
  1599. modified: 0
  1600. - boneName: Head
  1601. humanName: Head
  1602. limit:
  1603. min: {x: 0, y: 0, z: 0}
  1604. max: {x: 0, y: 0, z: 0}
  1605. value: {x: 0, y: 0, z: 0}
  1606. length: 0
  1607. modified: 0
  1608. - boneName: LeftShoulder
  1609. humanName: LeftShoulder
  1610. limit:
  1611. min: {x: 0, y: 0, z: 0}
  1612. max: {x: 0, y: 0, z: 0}
  1613. value: {x: 0, y: 0, z: 0}
  1614. length: 0
  1615. modified: 0
  1616. - boneName: RightShoulder
  1617. humanName: RightShoulder
  1618. limit:
  1619. min: {x: 0, y: 0, z: 0}
  1620. max: {x: 0, y: 0, z: 0}
  1621. value: {x: 0, y: 0, z: 0}
  1622. length: 0
  1623. modified: 0
  1624. - boneName: LeftArm
  1625. humanName: LeftUpperArm
  1626. limit:
  1627. min: {x: 0, y: 0, z: 0}
  1628. max: {x: 0, y: 0, z: 0}
  1629. value: {x: 0, y: 0, z: 0}
  1630. length: 0
  1631. modified: 0
  1632. - boneName: RightArm
  1633. humanName: RightUpperArm
  1634. limit:
  1635. min: {x: 0, y: 0, z: 0}
  1636. max: {x: 0, y: 0, z: 0}
  1637. value: {x: 0, y: 0, z: 0}
  1638. length: 0
  1639. modified: 0
  1640. - boneName: LeftForeArm
  1641. humanName: LeftLowerArm
  1642. limit:
  1643. min: {x: 0, y: 0, z: 0}
  1644. max: {x: 0, y: 0, z: 0}
  1645. value: {x: 0, y: 0, z: 0}
  1646. length: 0
  1647. modified: 0
  1648. - boneName: RightForeArm
  1649. humanName: RightLowerArm
  1650. limit:
  1651. min: {x: 0, y: 0, z: 0}
  1652. max: {x: 0, y: 0, z: 0}
  1653. value: {x: 0, y: 0, z: 0}
  1654. length: 0
  1655. modified: 0
  1656. - boneName: LeftHand
  1657. humanName: LeftHand
  1658. limit:
  1659. min: {x: 0, y: 0, z: 0}
  1660. max: {x: 0, y: 0, z: 0}
  1661. value: {x: 0, y: 0, z: 0}
  1662. length: 0
  1663. modified: 0
  1664. - boneName: RightHand
  1665. humanName: RightHand
  1666. limit:
  1667. min: {x: 0, y: 0, z: 0}
  1668. max: {x: 0, y: 0, z: 0}
  1669. value: {x: 0, y: 0, z: 0}
  1670. length: 0
  1671. modified: 0
  1672. - boneName: LeftToes
  1673. humanName: LeftToes
  1674. limit:
  1675. min: {x: 0, y: 0, z: 0}
  1676. max: {x: 0, y: 0, z: 0}
  1677. value: {x: 0, y: 0, z: 0}
  1678. length: 0
  1679. modified: 0
  1680. - boneName: RightToes
  1681. humanName: RightToes
  1682. limit:
  1683. min: {x: 0, y: 0, z: 0}
  1684. max: {x: 0, y: 0, z: 0}
  1685. value: {x: 0, y: 0, z: 0}
  1686. length: 0
  1687. modified: 0
  1688. - boneName: Jaw
  1689. humanName: Jaw
  1690. limit:
  1691. min: {x: 0, y: 0, z: 0}
  1692. max: {x: 0, y: 0, z: 0}
  1693. value: {x: 0, y: 0, z: 0}
  1694. length: 0
  1695. modified: 0
  1696. - boneName: LeftHandThumb1
  1697. humanName: Left Thumb Proximal
  1698. limit:
  1699. min: {x: 0, y: 0, z: 0}
  1700. max: {x: 0, y: 0, z: 0}
  1701. value: {x: 0, y: 0, z: 0}
  1702. length: 0
  1703. modified: 0
  1704. - boneName: LeftHandThumb2
  1705. humanName: Left Thumb Intermediate
  1706. limit:
  1707. min: {x: 0, y: 0, z: 0}
  1708. max: {x: 0, y: 0, z: 0}
  1709. value: {x: 0, y: 0, z: 0}
  1710. length: 0
  1711. modified: 0
  1712. - boneName: LeftHandThumb3
  1713. humanName: Left Thumb Distal
  1714. limit:
  1715. min: {x: 0, y: 0, z: 0}
  1716. max: {x: 0, y: 0, z: 0}
  1717. value: {x: 0, y: 0, z: 0}
  1718. length: 0
  1719. modified: 0
  1720. - boneName: LeftHandIndex1
  1721. humanName: Left Index Proximal
  1722. limit:
  1723. min: {x: 0, y: 0, z: 0}
  1724. max: {x: 0, y: 0, z: 0}
  1725. value: {x: 0, y: 0, z: 0}
  1726. length: 0
  1727. modified: 0
  1728. - boneName: LeftHandIndex2
  1729. humanName: Left Index Intermediate
  1730. limit:
  1731. min: {x: 0, y: 0, z: 0}
  1732. max: {x: 0, y: 0, z: 0}
  1733. value: {x: 0, y: 0, z: 0}
  1734. length: 0
  1735. modified: 0
  1736. - boneName: LeftHandIndex3
  1737. humanName: Left Index Distal
  1738. limit:
  1739. min: {x: 0, y: 0, z: 0}
  1740. max: {x: 0, y: 0, z: 0}
  1741. value: {x: 0, y: 0, z: 0}
  1742. length: 0
  1743. modified: 0
  1744. - boneName: LeftHandMiddle1
  1745. humanName: Left Middle Proximal
  1746. limit:
  1747. min: {x: 0, y: 0, z: 0}
  1748. max: {x: 0, y: 0, z: 0}
  1749. value: {x: 0, y: 0, z: 0}
  1750. length: 0
  1751. modified: 0
  1752. - boneName: LeftHandMiddle2
  1753. humanName: Left Middle Intermediate
  1754. limit:
  1755. min: {x: 0, y: 0, z: 0}
  1756. max: {x: 0, y: 0, z: 0}
  1757. value: {x: 0, y: 0, z: 0}
  1758. length: 0
  1759. modified: 0
  1760. - boneName: LeftHandMiddle3
  1761. humanName: Left Middle Distal
  1762. limit:
  1763. min: {x: 0, y: 0, z: 0}
  1764. max: {x: 0, y: 0, z: 0}
  1765. value: {x: 0, y: 0, z: 0}
  1766. length: 0
  1767. modified: 0
  1768. - boneName: LeftHandRing1
  1769. humanName: Left Ring Proximal
  1770. limit:
  1771. min: {x: 0, y: 0, z: 0}
  1772. max: {x: 0, y: 0, z: 0}
  1773. value: {x: 0, y: 0, z: 0}
  1774. length: 0
  1775. modified: 0
  1776. - boneName: LeftHandRing2
  1777. humanName: Left Ring Intermediate
  1778. limit:
  1779. min: {x: 0, y: 0, z: 0}
  1780. max: {x: 0, y: 0, z: 0}
  1781. value: {x: 0, y: 0, z: 0}
  1782. length: 0
  1783. modified: 0
  1784. - boneName: LeftHandRing3
  1785. humanName: Left Ring Distal
  1786. limit:
  1787. min: {x: 0, y: 0, z: 0}
  1788. max: {x: 0, y: 0, z: 0}
  1789. value: {x: 0, y: 0, z: 0}
  1790. length: 0
  1791. modified: 0
  1792. - boneName: LeftHandPinky1
  1793. humanName: Left Little Proximal
  1794. limit:
  1795. min: {x: 0, y: 0, z: 0}
  1796. max: {x: 0, y: 0, z: 0}
  1797. value: {x: 0, y: 0, z: 0}
  1798. length: 0
  1799. modified: 0
  1800. - boneName: LeftHandPinky2
  1801. humanName: Left Little Intermediate
  1802. limit:
  1803. min: {x: 0, y: 0, z: 0}
  1804. max: {x: 0, y: 0, z: 0}
  1805. value: {x: 0, y: 0, z: 0}
  1806. length: 0
  1807. modified: 0
  1808. - boneName: LeftHandPinky3
  1809. humanName: Left Little Distal
  1810. limit:
  1811. min: {x: 0, y: 0, z: 0}
  1812. max: {x: 0, y: 0, z: 0}
  1813. value: {x: 0, y: 0, z: 0}
  1814. length: 0
  1815. modified: 0
  1816. - boneName: RightHandThumb1
  1817. humanName: Right Thumb Proximal
  1818. limit:
  1819. min: {x: 0, y: 0, z: 0}
  1820. max: {x: 0, y: 0, z: 0}
  1821. value: {x: 0, y: 0, z: 0}
  1822. length: 0
  1823. modified: 0
  1824. - boneName: RightHandThumb2
  1825. humanName: Right Thumb Intermediate
  1826. limit:
  1827. min: {x: 0, y: 0, z: 0}
  1828. max: {x: 0, y: 0, z: 0}
  1829. value: {x: 0, y: 0, z: 0}
  1830. length: 0
  1831. modified: 0
  1832. - boneName: RightHandThumb3
  1833. humanName: Right Thumb Distal
  1834. limit:
  1835. min: {x: 0, y: 0, z: 0}
  1836. max: {x: 0, y: 0, z: 0}
  1837. value: {x: 0, y: 0, z: 0}
  1838. length: 0
  1839. modified: 0
  1840. - boneName: RightHandIndex1
  1841. humanName: Right Index Proximal
  1842. limit:
  1843. min: {x: 0, y: 0, z: 0}
  1844. max: {x: 0, y: 0, z: 0}
  1845. value: {x: 0, y: 0, z: 0}
  1846. length: 0
  1847. modified: 0
  1848. - boneName: RightHandIndex2
  1849. humanName: Right Index Intermediate
  1850. limit:
  1851. min: {x: 0, y: 0, z: 0}
  1852. max: {x: 0, y: 0, z: 0}
  1853. value: {x: 0, y: 0, z: 0}
  1854. length: 0
  1855. modified: 0
  1856. - boneName: RightHandIndex3
  1857. humanName: Right Index Distal
  1858. limit:
  1859. min: {x: 0, y: 0, z: 0}
  1860. max: {x: 0, y: 0, z: 0}
  1861. value: {x: 0, y: 0, z: 0}
  1862. length: 0
  1863. modified: 0
  1864. - boneName: RightHandMiddle1
  1865. humanName: Right Middle Proximal
  1866. limit:
  1867. min: {x: 0, y: 0, z: 0}
  1868. max: {x: 0, y: 0, z: 0}
  1869. value: {x: 0, y: 0, z: 0}
  1870. length: 0
  1871. modified: 0
  1872. - boneName: RightHandMiddle2
  1873. humanName: Right Middle Intermediate
  1874. limit:
  1875. min: {x: 0, y: 0, z: 0}
  1876. max: {x: 0, y: 0, z: 0}
  1877. value: {x: 0, y: 0, z: 0}
  1878. length: 0
  1879. modified: 0
  1880. - boneName: RightHandMiddle3
  1881. humanName: Right Middle Distal
  1882. limit:
  1883. min: {x: 0, y: 0, z: 0}
  1884. max: {x: 0, y: 0, z: 0}
  1885. value: {x: 0, y: 0, z: 0}
  1886. length: 0
  1887. modified: 0
  1888. - boneName: RightHandRing1
  1889. humanName: Right Ring Proximal
  1890. limit:
  1891. min: {x: 0, y: 0, z: 0}
  1892. max: {x: 0, y: 0, z: 0}
  1893. value: {x: 0, y: 0, z: 0}
  1894. length: 0
  1895. modified: 0
  1896. - boneName: RightHandRing2
  1897. humanName: Right Ring Intermediate
  1898. limit:
  1899. min: {x: 0, y: 0, z: 0}
  1900. max: {x: 0, y: 0, z: 0}
  1901. value: {x: 0, y: 0, z: 0}
  1902. length: 0
  1903. modified: 0
  1904. - boneName: RightHandRing3
  1905. humanName: Right Ring Distal
  1906. limit:
  1907. min: {x: 0, y: 0, z: 0}
  1908. max: {x: 0, y: 0, z: 0}
  1909. value: {x: 0, y: 0, z: 0}
  1910. length: 0
  1911. modified: 0
  1912. - boneName: RightHandPinky1
  1913. humanName: Right Little Proximal
  1914. limit:
  1915. min: {x: 0, y: 0, z: 0}
  1916. max: {x: 0, y: 0, z: 0}
  1917. value: {x: 0, y: 0, z: 0}
  1918. length: 0
  1919. modified: 0
  1920. - boneName: RightHandPinky2
  1921. humanName: Right Little Intermediate
  1922. limit:
  1923. min: {x: 0, y: 0, z: 0}
  1924. max: {x: 0, y: 0, z: 0}
  1925. value: {x: 0, y: 0, z: 0}
  1926. length: 0
  1927. modified: 0
  1928. - boneName: RightHandPinky3
  1929. humanName: Right Little Distal
  1930. limit:
  1931. min: {x: 0, y: 0, z: 0}
  1932. max: {x: 0, y: 0, z: 0}
  1933. value: {x: 0, y: 0, z: 0}
  1934. length: 0
  1935. modified: 0
  1936. skeleton:
  1937. - name: IdleJumpAndFall(Clone)
  1938. position: {x: 0, y: 0, z: 0}
  1939. rotation: {x: 0, y: 0, z: 0, w: 1}
  1940. scale: {x: 1, y: 1, z: 1}
  1941. transformModified: 1
  1942. - name: Hips
  1943. position: {x: 0, y: .968897998, z: 0}
  1944. rotation: {x: 0, y: 0, z: 0, w: 1}
  1945. scale: {x: 1, y: 1, z: 1}
  1946. transformModified: 1
  1947. - name: LeftUpLeg
  1948. position: {x: -.0754494965, y: -.0456640199, z: 3.5527136e-17}
  1949. rotation: {x: 0, y: 0, z: 0, w: 1}
  1950. scale: {x: 1, y: 1, z: 1}
  1951. transformModified: 1
  1952. - name: LeftLeg
  1953. position: {x: -.0205504987, y: -.409129977, z: -.000718647963}
  1954. rotation: {x: 0, y: 0, z: 0, w: 1}
  1955. scale: {x: 1, y: 1, z: 1}
  1956. transformModified: 1
  1957. - name: LeftFoot
  1958. position: {x: -.00515299942, y: -.423155904, z: -.0276488513}
  1959. rotation: {x: 0, y: 0, z: 0, w: 1}
  1960. scale: {x: 1, y: 1, z: 1}
  1961. transformModified: 1
  1962. - name: LeftToes
  1963. position: {x: -.00748699997, y: -.0731673017, z: .145427123}
  1964. rotation: {x: 0, y: 0, z: 0, w: 1}
  1965. scale: {x: 1, y: 1, z: 1}
  1966. transformModified: 1
  1967. - name: LToeBase_End2
  1968. position: {x: .0126400003, y: -.0131357787, z: .0358933695}
  1969. rotation: {x: 0, y: 0, z: 0, w: 1}
  1970. scale: {x: 1, y: 1, z: 1}
  1971. transformModified: 1
  1972. - name: RightUpLeg
  1973. position: {x: .0754495338, y: -.0456639901, z: -7.1054272e-17}
  1974. rotation: {x: 0, y: 0, z: 0, w: 1}
  1975. scale: {x: 1, y: 1, z: 1}
  1976. transformModified: 1
  1977. - name: RightLeg
  1978. position: {x: .0205504671, y: -.409130007, z: -.000718647963}
  1979. rotation: {x: 0, y: 0, z: 0, w: 1}
  1980. scale: {x: 1, y: 1, z: 1}
  1981. transformModified: 1
  1982. - name: RightFoot
  1983. position: {x: .00515299942, y: -.423155904, z: -.0276488513}
  1984. rotation: {x: 0, y: 0, z: 0, w: 1}
  1985. scale: {x: 1, y: 1, z: 1}
  1986. transformModified: 1
  1987. - name: RightToes
  1988. position: {x: .00748699997, y: -.0731673017, z: .145427495}
  1989. rotation: {x: 0, y: 0, z: 0, w: 1}
  1990. scale: {x: 1, y: 1, z: 1}
  1991. transformModified: 1
  1992. - name: LToeBase_End3
  1993. position: {x: -.0126400003, y: -.0131357787, z: .0358929969}
  1994. rotation: {x: 0, y: 0, z: 0, w: 1}
  1995. scale: {x: 1, y: 1, z: 1}
  1996. transformModified: 1
  1997. - name: Spine
  1998. position: {x: -3.55271347e-16, y: .0922631845, z: .0157713313}
  1999. rotation: {x: 0, y: 0, z: 0, w: 1}
  2000. scale: {x: 1, y: 1, z: 1}
  2001. transformModified: 1
  2002. - name: Chest
  2003. position: {x: -0, y: .162540287, z: -.00165605545}
  2004. rotation: {x: 0, y: 0, z: 0, w: 1}
  2005. scale: {x: 1, y: 1, z: 1}
  2006. transformModified: 1
  2007. - name: LeftShoulder
  2008. position: {x: -.0382859968, y: .221622497, z: -.017063085}
  2009. rotation: {x: .0136282137, y: -.00334516051, z: .160349578, w: .98696053}
  2010. scale: {x: 1, y: 1, z: 1}
  2011. transformModified: 1
  2012. - name: LeftArm
  2013. position: {x: -.100502051, y: 8.52651264e-16, z: -1.91846525e-15}
  2014. rotation: {x: .375911772, y: -.0545923635, z: -.131713077, w: .915620983}
  2015. scale: {x: 1, y: 1, z: 1}
  2016. transformModified: 1
  2017. - name: LeftForeArm
  2018. position: {x: -.254049301, y: -5.6772363e-14, z: -7.74633667e-13}
  2019. rotation: {x: -.0333359092, y: .0206441227, z: -.0173483491, w: .99908036}
  2020. scale: {x: 1, y: 1, z: 1}
  2021. transformModified: 1
  2022. - name: LeftHand
  2023. position: {x: -.24638927, y: -1.34519945e-12, z: -1.48500223e-11}
  2024. rotation: {x: 0, y: 0, z: 0, w: 1}
  2025. scale: {x: 1, y: 1, z: 1}
  2026. transformModified: 1
  2027. - name: LeftHandIndex1
  2028. position: {x: -.0751257986, y: -.00784140453, z: .0326526426}
  2029. rotation: {x: -.0308350436, y: .0179687776, z: .0871932581, w: .995551944}
  2030. scale: {x: 1, y: 1, z: 1}
  2031. transformModified: 1
  2032. - name: LeftHandIndex2
  2033. position: {x: -.03979728, y: 4.98084046e-05, z: .00118575036}
  2034. rotation: {x: -.0689338297, y: .0147136617, z: .0279492512, w: .997121096}
  2035. scale: {x: 1, y: 1, z: 1}
  2036. transformModified: 1
  2037. - name: LeftHandIndex3
  2038. position: {x: -.0279684775, y: -6.28308783e-09, z: -5.17217202e-08}
  2039. rotation: {x: -1.98371708e-07, y: .07579723, z: .08633665, w: .99337852}
  2040. scale: {x: 1, y: 1, z: 1}
  2041. transformModified: 1
  2042. - name: LeftHandIndex13
  2043. position: {x: -.0186619665, y: .00437385263, z: -.00384002505}
  2044. rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659}
  2045. scale: {x: 1, y: 1, z: 1}
  2046. transformModified: 1
  2047. - name: LeftHandMiddle1
  2048. position: {x: -.0760238245, y: -.00188513438, z: .0101412293}
  2049. rotation: {x: -.0157175697, y: .0537212379, z: .0864731297, w: .994680524}
  2050. scale: {x: 1, y: 1, z: 1}
  2051. transformModified: 1
  2052. - name: LeftHandMiddle2
  2053. position: {x: -.0442804359, y: 4.79887376e-06, z: -.000425400125}
  2054. rotation: {x: -.0084464848, y: -.00629218388, z: .0269988962, w: .999579966}
  2055. scale: {x: 1, y: 1, z: 1}
  2056. transformModified: 1
  2057. - name: LeftHandMiddle3
  2058. position: {x: -.0339648277, y: -1.2198452e-08, z: 3.7516088e-09}
  2059. rotation: {x: 0, y: .0085622156, z: .0601554625, w: .998152316}
  2060. scale: {x: 1, y: 1, z: 1}
  2061. transformModified: 1
  2062. - name: LeftHandMiddle13
  2063. position: {x: -.0196715724, y: .00392557262, z: -.000558814383}
  2064. rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918}
  2065. scale: {x: 1, y: 1, z: 1}
  2066. transformModified: 1
  2067. - name: LeftHandPinky1
  2068. position: {x: -.0656599477, y: -.00782510638, z: -.0322512463}
  2069. rotation: {x: -.0464278534, y: .075739637, z: .0861574858, w: .992312968}
  2070. scale: {x: 1, y: 1, z: 1}
  2071. transformModified: 1
  2072. - name: LeftHandPinky2
  2073. position: {x: -.0308054481, y: -3.0874573e-05, z: -.0014480775}
  2074. rotation: {x: .0492938273, y: -.0217208154, z: .0329489894, w: .998004377}
  2075. scale: {x: 1, y: 1, z: 1}
  2076. transformModified: 1
  2077. - name: LeftHandPinky3
  2078. position: {x: -.0230640266, y: -6.40258258e-06, z: 1.8330093e-08}
  2079. rotation: {x: 1.6131904e-05, y: -.0589529239, z: .0381713584, w: .997530699}
  2080. scale: {x: 1, y: 1, z: 1}
  2081. transformModified: 1
  2082. - name: LeftHandPinky13
  2083. position: {x: -.0169719923, y: .00202882662, z: .00314032286}
  2084. rotation: {x: .000580511638, y: .0944183916, z: -.00612070598, w: .995513618}
  2085. scale: {x: 1, y: 1, z: 1}
  2086. transformModified: 1
  2087. - name: LeftHandRing1
  2088. position: {x: -.0703021064, y: -.00374530931, z: -.0114117917}
  2089. rotation: {x: -.0137463454, y: .0746484697, z: .0850590393, w: .993480563}
  2090. scale: {x: 1, y: 1, z: 1}
  2091. transformModified: 1
  2092. - name: LeftHandRing2
  2093. position: {x: -.0431354567, y: -2.08823076e-05, z: -.00223517837}
  2094. rotation: {x: .0193215031, y: -.0256576315, z: .0290472321, w: .999061942}
  2095. scale: {x: 1, y: 1, z: 1}
  2096. transformModified: 1
  2097. - name: LeftHandRing3
  2098. position: {x: -.0308355652, y: 7.67334946e-11, z: -1.64974168e-08}
  2099. rotation: {x: 2.46800482e-08, y: -.0178757682, z: .0421800427, w: .998950183}
  2100. scale: {x: 1, y: 1, z: 1}
  2101. transformModified: 1
  2102. - name: LeftHandRing13
  2103. position: {x: -.0205416381, y: .00325422082, z: .00137918338}
  2104. rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789}
  2105. scale: {x: 1, y: 1, z: 1}
  2106. transformModified: 1
  2107. - name: LeftHandThumb1
  2108. position: {x: -.0142312413, y: -.0123778246, z: .0255316682}
  2109. rotation: {x: -.18747139, y: -.0952679813, z: -.186436191, w: .959697902}
  2110. scale: {x: 1, y: 1, z: 1}
  2111. transformModified: 1
  2112. - name: LeftHandThumb2
  2113. position: {x: -.0163739994, y: -.00528999977, z: .0234914087}
  2114. rotation: {x: -.0260623731, y: .0966885313, z: .00360709149, w: .994966924}
  2115. scale: {x: 1, y: 1, z: 1}
  2116. transformModified: 1
  2117. - name: LeftHandThumb3
  2118. position: {x: -.0254599992, y: -.00763999997, z: .0208330005}
  2119. rotation: {x: .00545273209, y: .000443113851, z: .00682628015, w: .999961734}
  2120. scale: {x: 1, y: 1, z: 1}
  2121. transformModified: 1
  2122. - name: LeftHandThumb13
  2123. position: {x: -.031868957, y: -.0052999449, z: .0258005001}
  2124. rotation: {x: 0, y: 0, z: 0, w: 1}
  2125. scale: {x: 1, y: 1, z: 1}
  2126. transformModified: 1
  2127. - name: Neck
  2128. position: {x: 4.26325632e-16, y: .259009302, z: -.0324132554}
  2129. rotation: {x: 0, y: 0, z: 0, w: 1}
  2130. scale: {x: 1, y: 1, z: 1}
  2131. transformModified: 1
  2132. - name: Head
  2133. position: {x: 1.27897687e-15, y: .0830703825, z: .0113267815}
  2134. rotation: {x: 0, y: 0, z: 0, w: 1}
  2135. scale: {x: 1, y: 1, z: 1}
  2136. transformModified: 1
  2137. - name: HeadTop_End
  2138. position: {x: -5.17045827e-18, y: .188178778, z: .0121086892}
  2139. rotation: {x: 0, y: 0, z: 0, w: 1}
  2140. scale: {x: 1, y: 1, z: 1}
  2141. transformModified: 1
  2142. - name: Jaw
  2143. position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431}
  2144. rotation: {x: .219240054, y: -0, z: -0, w: .975670993}
  2145. scale: {x: 1, y: 1, z: 1}
  2146. transformModified: 1
  2147. - name: JawEND
  2148. position: {x: -1.73472344e-20, y: -.0482887588, z: .071851708}
  2149. rotation: {x: 0, y: 0, z: 0, w: 1}
  2150. scale: {x: 1, y: 1, z: 1}
  2151. transformModified: 1
  2152. - name: LeftLipCorner
  2153. position: {x: -.032843262, y: -.01657876, z: .0661217645}
  2154. rotation: {x: 0, y: 0, z: 0, w: 1}
  2155. scale: {x: 1, y: 1, z: 1}
  2156. transformModified: 1
  2157. - name: LeftLipLower
  2158. position: {x: -.0142508168, y: -.0216887593, z: .0822406337}
  2159. rotation: {x: 0, y: 0, z: 0, w: 1}
  2160. scale: {x: 1, y: 1, z: 1}
  2161. transformModified: 1
  2162. - name: RightLipCorner
  2163. position: {x: .0328399986, y: -.01657876, z: .0661187842}
  2164. rotation: {x: 0, y: 0, z: 0, w: 1}
  2165. scale: {x: 1, y: 1, z: 1}
  2166. transformModified: 1
  2167. - name: RightLipLower
  2168. position: {x: .0142508168, y: -.0216887593, z: .0822387859}
  2169. rotation: {x: 0, y: 0, z: 0, w: 1}
  2170. scale: {x: 1, y: 1, z: 1}
  2171. transformModified: 1
  2172. - name: LeftCheek
  2173. position: {x: -.0542440265, y: .0337019488, z: .0594304018}
  2174. rotation: {x: 0, y: 0, z: 0, w: 1}
  2175. scale: {x: 1, y: 1, z: 1}
  2176. transformModified: 1
  2177. - name: LeftEye
  2178. position: {x: -.0208482333, y: .0825027004, z: .0554274321}
  2179. rotation: {x: 0, y: 0, z: 0, w: 1}
  2180. scale: {x: 1, y: 1, z: 1}
  2181. transformModified: 1
  2182. - name: LeftEyelidLower
  2183. position: {x: -.0356189571, y: .0650736615, z: .076234743}
  2184. rotation: {x: 0, y: 0, z: 0, w: 1}
  2185. scale: {x: 1, y: 1, z: 1}
  2186. transformModified: 1
  2187. - name: LeftEyelidUpper
  2188. position: {x: -.0344068967, y: .10060814, z: .0802053064}
  2189. rotation: {x: 0, y: 0, z: 0, w: 1}
  2190. scale: {x: 1, y: 1, z: 1}
  2191. transformModified: 1
  2192. - name: LeftInnerBrow
  2193. position: {x: -.0120626912, y: .118765265, z: .0934668258}
  2194. rotation: {x: 0, y: 0, z: 0, w: 1}
  2195. scale: {x: 1, y: 1, z: 1}
  2196. transformModified: 1
  2197. - name: LeftIOuterBrow
  2198. position: {x: -.0550398715, y: .114825293, z: .061777398}
  2199. rotation: {x: 0, y: 0, z: 0, w: 1}
  2200. scale: {x: 1, y: 1, z: 1}
  2201. transformModified: 1
  2202. - name: LeftLipUpper
  2203. position: {x: -.0145013221, y: -.00511181122, z: .094618842}
  2204. rotation: {x: 0, y: 0, z: 0, w: 1}
  2205. scale: {x: 1, y: 1, z: 1}
  2206. transformModified: 1
  2207. - name: LeftNostril
  2208. position: {x: -.0178999994, y: .0263128281, z: .0908674002}
  2209. rotation: {x: 0, y: 0, z: 0, w: 1}
  2210. scale: {x: 1, y: 1, z: 1}
  2211. transformModified: 1
  2212. - name: RightCheek
  2213. position: {x: .0542399958, y: .033702828, z: .0594273992}
  2214. rotation: {x: 0, y: 0, z: 0, w: 1}
  2215. scale: {x: 1, y: 1, z: 1}
  2216. transformModified: 1
  2217. - name: RightEye
  2218. position: {x: .020849999, y: .082502827, z: .0554273985}
  2219. rotation: {x: 0, y: 0, z: 0, w: 1}
  2220. scale: {x: 1, y: 1, z: 1}
  2221. transformModified: 1
  2222. - name: RightEyelidLower
  2223. position: {x: .0356200002, y: .065072827, z: .0762374029}
  2224. rotation: {x: 0, y: 0, z: 0, w: 1}
  2225. scale: {x: 1, y: 1, z: 1}
  2226. transformModified: 1
  2227. - name: RightEyelidUpper
  2228. position: {x: .0344099998, y: .100612827, z: .0802073926}
  2229. rotation: {x: 0, y: 0, z: 0, w: 1}
  2230. scale: {x: 1, y: 1, z: 1}
  2231. transformModified: 1
  2232. - name: RightInnerBrow
  2233. position: {x: .0120626874, y: .118765265, z: .0934668258}
  2234. rotation: {x: 0, y: 0, z: 0, w: 1}
  2235. scale: {x: 1, y: 1, z: 1}
  2236. transformModified: 1
  2237. - name: RightIOuterBrow
  2238. position: {x: .0550400019, y: .114822827, z: .061777398}
  2239. rotation: {x: 0, y: 0, z: 0, w: 1}
  2240. scale: {x: 1, y: 1, z: 1}
  2241. transformModified: 1
  2242. - name: RightLipUpper
  2243. position: {x: .0145013221, y: -.00510717137, z: .094617404}
  2244. rotation: {x: 0, y: 0, z: 0, w: 1}
  2245. scale: {x: 1, y: 1, z: 1}
  2246. transformModified: 1
  2247. - name: RightNostril
  2248. position: {x: .0178999994, y: .0263089053, z: .0908706188}
  2249. rotation: {x: 0, y: 0, z: 0, w: 1}
  2250. scale: {x: 1, y: 1, z: 1}
  2251. transformModified: 1
  2252. - name: RightShoulder
  2253. position: {x: .0382860154, y: .221621141, z: -.017063085}
  2254. rotation: {x: .156456366, y: .987114966, z: .0289233401, w: .0169999544}
  2255. scale: {x: 1, y: 1, z: 1}
  2256. transformModified: 1
  2257. - name: RightArm
  2258. position: {x: -.100501455, y: -2.49955224e-06, z: -5.15574072e-08}
  2259. rotation: {x: .105774529, y: .952139974, z: -.285703897, w: -.0247889012}
  2260. scale: {x: 1, y: 1, z: 1}
  2261. transformModified: 1
  2262. - name: RightForeArm
  2263. position: {x: .253428251, y: .00601135287, z: -.0167045239}
  2264. rotation: {x: .00553037226, y: .0252947882, z: -.014007926, w: .999566615}
  2265. scale: {x: 1, y: 1, z: 1}
  2266. transformModified: 1
  2267. - name: RightHand
  2268. position: {x: .245373696, y: .0216417722, z: .00555046508}
  2269. rotation: {x: 0, y: 0, z: 0, w: 1}
  2270. scale: {x: 1, y: 1, z: 1}
  2271. transformModified: 1
  2272. - name: RightHandIndex1
  2273. position: {x: .0747694969, y: -.00124305359, z: .0343444981}
  2274. rotation: {x: -.0270000603, y: .134704068, z: -.0601686388, w: .988688886}
  2275. scale: {x: 1, y: 1, z: 1}
  2276. transformModified: 1
  2277. - name: RightHandIndex2
  2278. position: {x: .0370584019, y: .00072612107, z: .0145388944}
  2279. rotation: {x: -.0803579837, y: .0230234303, z: .0437483452, w: .995539427}
  2280. scale: {x: 1, y: 1, z: 1}
  2281. transformModified: 1
  2282. - name: RightHandIndex3
  2283. position: {x: .0252250377, y: -.00496646529, z: .0110121462}
  2284. rotation: {x: .0205338672, y: -.0777156726, z: -.0820851624, w: .99337846}
  2285. scale: {x: 1, y: 1, z: 1}
  2286. transformModified: 1
  2287. - name: LeftHandIndex17
  2288. position: {x: .019119978, y: .000846308249, z: .00398164755}
  2289. rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659}
  2290. scale: {x: 1, y: 1, z: 1}
  2291. transformModified: 1
  2292. - name: RightHandMiddle1
  2293. position: {x: .0756476447, y: .00479140272, z: .0118531818}
  2294. rotation: {x: -.0139238043, y: .00904238503, z: -.0464301668, w: .998783588}
  2295. scale: {x: 1, y: 1, z: 1}
  2296. transformModified: 1
  2297. - name: RightHandMiddle2
  2298. position: {x: .0438090637, y: .000194188149, z: .00645493623}
  2299. rotation: {x: -.0214388501, y: -.0445624664, z: .0864190832, w: .99503082}
  2300. scale: {x: 1, y: 1, z: 1}
  2301. transformModified: 1
  2302. - name: RightHandMiddle3
  2303. position: {x: .0330724716, y: -.00754753686, z: .00168984616}
  2304. rotation: {x: .00108970981, y: -.00868779328, z: -.0601257607, w: .998152435}
  2305. scale: {x: 1, y: 1, z: 1}
  2306. transformModified: 1
  2307. - name: LeftHandMiddle17
  2308. position: {x: .0200548954, y: -.000547108881, z: .000442590448}
  2309. rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918}
  2310. scale: {x: 1, y: 1, z: 1}
  2311. transformModified: 1
  2312. - name: RightHandPinky1
  2313. position: {x: .0668033436, y: -.00199410878, z: -.0307561457}
  2314. rotation: {x: -.0533693507, y: -.255000859, z: -.0125746699, w: .96538502}
  2315. scale: {x: 1, y: 1, z: 1}
  2316. transformModified: 1
  2317. - name: RightHandPinky2
  2318. position: {x: .0285308417, y: -.001397143, z: -.0116237961}
  2319. rotation: {x: .0333432369, y: .00105855579, z: -.0586744659, w: .997719646}
  2320. scale: {x: 1, y: 1, z: 1}
  2321. transformModified: 1
  2322. - name: RightHandPinky3
  2323. position: {x: .0214268602, y: -.000553508929, z: -.00851660781}
  2324. rotation: {x: -.0126836589, y: .0591125637, z: -.0357522406, w: .997530282}
  2325. scale: {x: 1, y: 1, z: 1}
  2326. transformModified: 1
  2327. - name: LeftHandPinky17
  2328. position: {x: .016975116, y: .00161137758, z: -.00335797085}
  2329. rotation: {x: .000580511638, y: .0944183916, z: -.00612070598, w: .995513618}
  2330. scale: {x: 1, y: 1, z: 1}
  2331. transformModified: 1
  2332. - name: RightHandRing1
  2333. position: {x: .0705984756, y: .00245709647, z: -.00982145779}
  2334. rotation: {x: -.014535781, y: -.117996089, z: -.0257448405, w: .992573857}
  2335. scale: {x: 1, y: 1, z: 1}
  2336. transformModified: 1
  2337. - name: RightHandRing2
  2338. position: {x: .0428871848, y: -.00137538207, z: -.00494585792}
  2339. rotation: {x: .0220796783, y: -.0216961354, z: .0796110034, w: .996345222}
  2340. scale: {x: 1, y: 1, z: 1}
  2341. transformModified: 1
  2342. - name: RightHandRing3
  2343. position: {x: .0295006037, y: -.00769293541, z: -.00462225592}
  2344. rotation: {x: -.00186281116, y: .0181142092, z: -.0420369543, w: .998950124}
  2345. scale: {x: 1, y: 1, z: 1}
  2346. transformModified: 1
  2347. - name: LeftHandRing17
  2348. position: {x: .0206709336, y: -.00200043293, z: -.00177803368}
  2349. rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789}
  2350. scale: {x: 1, y: 1, z: 1}
  2351. transformModified: 1
  2352. - name: RightHandThumb1
  2353. position: {x: .0146849155, y: -.0111049423, z: .0258580949}
  2354. rotation: {x: -.184676751, y: .0523882434, z: .193273544, w: .962182641}
  2355. scale: {x: 1, y: 1, z: 1}
  2356. transformModified: 1
  2357. - name: RightHandThumb2
  2358. position: {x: .0163739994, y: -.00528999977, z: .0234913602}
  2359. rotation: {x: -.0260629468, y: -.0966878831, z: -.00360650336, w: .994966984}
  2360. scale: {x: 1, y: 1, z: 1}
  2361. transformModified: 1
  2362. - name: RightHandThumb3
  2363. position: {x: .0254599992, y: -.00763999997, z: .0208330005}
  2364. rotation: {x: .00545433257, y: -.000443138037, z: -.00682824804, w: .999961793}
  2365. scale: {x: 1, y: 1, z: 1}
  2366. transformModified: 1
  2367. - name: LeftHandThumb17
  2368. position: {x: .0318690389, y: -.00529994583, z: .0258005001}
  2369. rotation: {x: 0, y: 0, z: 0, w: 1}
  2370. scale: {x: 1, y: 1, z: 1}
  2371. transformModified: 1
  2372. armTwist: .5
  2373. foreArmTwist: .5
  2374. upperLegTwist: .5
  2375. legTwist: .5
  2376. armStretch: .0500000007
  2377. legStretch: .0500000007
  2378. feetSpacing: 0
  2379. rootMotionBoneName:
  2380. lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: d89ea37480b6d75458aa38843e9688dc,
  2381. type: 3}
  2382. animationType: 3
  2383. additionalBone: 0
  2384. userData:
  2385. assetBundleName: