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