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
|
fileFormatVersion: 2
guid: 62f894a651c820a4da794f0f3b700ea6
ModelImporter:
serializedVersion: 23
fileIDToRecycleName:
100000: Bip001
100002: Bip001 Footsteps
100004: Bip001 Head
100006: Bip001 HeadNub
100008: Bip001 L Calf
100010: Bip001 L Clavicle
100012: Bip001 L Finger0
100014: Bip001 L Finger01
100016: Bip001 L Finger02
100018: Bip001 L Finger0Nub
100020: Bip001 L Finger1
100022: Bip001 L Finger11
100024: Bip001 L Finger12
100026: Bip001 L Finger1Nub
100028: Bip001 L Finger2
100030: Bip001 L Finger21
100032: Bip001 L Finger22
100034: Bip001 L Finger2Nub
100036: Bip001 L Finger3
100038: Bip001 L Finger31
100040: Bip001 L Finger32
100042: Bip001 L Finger3Nub
100044: Bip001 L Finger4
100046: Bip001 L Finger41
100048: Bip001 L Finger42
100050: Bip001 L Finger4Nub
100052: Bip001 L Foot
100054: Bip001 L Forearm
100056: Bip001 L Hand
100058: Bip001 L Thigh
100060: Bip001 L Toe0
100062: Bip001 L Toe0Nub
100064: Bip001 L UpperArm
100066: Bip001 Neck
100068: Bip001 Pelvis
100070: Bip001 R Calf
100072: Bip001 R Clavicle
100074: Bip001 R Finger0
100076: Bip001 R Finger01
100078: Bip001 R Finger02
100080: Bip001 R Finger0Nub
100082: Bip001 R Finger1
100084: Bip001 R Finger11
100086: Bip001 R Finger12
100088: Bip001 R Finger1Nub
100090: Bip001 R Finger2
100092: Bip001 R Finger21
100094: Bip001 R Finger22
100096: Bip001 R Finger2Nub
100098: Bip001 R Finger3
100100: Bip001 R Finger31
100102: Bip001 R Finger32
100104: Bip001 R Finger3Nub
100106: Bip001 R Finger4
100108: Bip001 R Finger41
100110: Bip001 R Finger42
100112: Bip001 R Finger4Nub
100114: Bip001 R Foot
100116: Bip001 R Forearm
100118: Bip001 R Hand
100120: Bip001 R Thigh
100122: Bip001 R Toe0
100124: Bip001 R Toe0Nub
100126: Bip001 R UpperArm
100128: Bip001 Spine
100130: Bip001 Spine1
100132: Bip001 Spine2
100134: Bip002
100136: Bip002 Footsteps
100138: Bip002 Head
100140: Bip002 HeadNub
100142: Bip002 L Calf
100144: Bip002 L Clavicle
100146: Bip002 L Finger0
100148: Bip002 L Finger0Nub
100150: Bip002 L Foot
100152: Bip002 L Forearm
100154: Bip002 L Hand
100156: Bip002 L Thigh
100158: Bip002 L Toe0
100160: Bip002 L Toe01
100162: Bip002 L Toe02
100164: Bip002 L Toe0Nub
100166: Bip002 L UpperArm
100168: Bip002 Neck
100170: Bip002 Pelvis
100172: Bip002 R Calf
100174: Bip002 R Clavicle
100176: Bip002 R Finger0
100178: Bip002 R Finger0Nub
100180: Bip002 R Foot
100182: Bip002 R Forearm
100184: Bip002 R Hand
100186: Bip002 R Thigh
100188: Bip002 R Toe0
100190: Bip002 R Toe01
100192: Bip002 R Toe02
100194: Bip002 R Toe0Nub
100196: Bip002 R UpperArm
100198: Bip002 Spine
100200: Bip002 Spine1
100202: Bip002 Spine2
100204: Bip002 Spine3
100206: Body001
100208: Bone001
100210: Bone002
100212: Bone003
100214: Bone003(mirrored)
100216: Bone004
100218: Bone004(mirrored)
100220: Bone005
100222: Bone005(mirrored)
100224: Bone006
100226: Bone006(mirrored)
100228: Bone007
100230: Bone007(mirrored)
100232: Bone008
100234: Bone008(mirrored)
100236: Camera001
100238: //RootNode
100240: Hair
100242: LeftPistol003
100244: LeftPistol2
100246: Plane001
400000: Bip001
400002: Bip001 Footsteps
400004: Bip001 Head
400006: Bip001 HeadNub
400008: Bip001 L Calf
400010: Bip001 L Clavicle
400012: Bip001 L Finger0
400014: Bip001 L Finger01
400016: Bip001 L Finger02
400018: Bip001 L Finger0Nub
400020: Bip001 L Finger1
400022: Bip001 L Finger11
400024: Bip001 L Finger12
400026: Bip001 L Finger1Nub
400028: Bip001 L Finger2
400030: Bip001 L Finger21
400032: Bip001 L Finger22
400034: Bip001 L Finger2Nub
400036: Bip001 L Finger3
400038: Bip001 L Finger31
400040: Bip001 L Finger32
400042: Bip001 L Finger3Nub
400044: Bip001 L Finger4
400046: Bip001 L Finger41
400048: Bip001 L Finger42
400050: Bip001 L Finger4Nub
400052: Bip001 L Foot
400054: Bip001 L Forearm
400056: Bip001 L Hand
400058: Bip001 L Thigh
400060: Bip001 L Toe0
400062: Bip001 L Toe0Nub
400064: Bip001 L UpperArm
400066: Bip001 Neck
400068: Bip001 Pelvis
400070: Bip001 R Calf
400072: Bip001 R Clavicle
400074: Bip001 R Finger0
400076: Bip001 R Finger01
400078: Bip001 R Finger02
400080: Bip001 R Finger0Nub
400082: Bip001 R Finger1
400084: Bip001 R Finger11
400086: Bip001 R Finger12
400088: Bip001 R Finger1Nub
400090: Bip001 R Finger2
400092: Bip001 R Finger21
400094: Bip001 R Finger22
400096: Bip001 R Finger2Nub
400098: Bip001 R Finger3
400100: Bip001 R Finger31
400102: Bip001 R Finger32
400104: Bip001 R Finger3Nub
400106: Bip001 R Finger4
400108: Bip001 R Finger41
400110: Bip001 R Finger42
400112: Bip001 R Finger4Nub
400114: Bip001 R Foot
400116: Bip001 R Forearm
400118: Bip001 R Hand
400120: Bip001 R Thigh
400122: Bip001 R Toe0
400124: Bip001 R Toe0Nub
400126: Bip001 R UpperArm
400128: Bip001 Spine
400130: Bip001 Spine1
400132: Bip001 Spine2
400134: Bip002
400136: Bip002 Footsteps
400138: Bip002 Head
400140: Bip002 HeadNub
400142: Bip002 L Calf
400144: Bip002 L Clavicle
400146: Bip002 L Finger0
400148: Bip002 L Finger0Nub
400150: Bip002 L Foot
400152: Bip002 L Forearm
400154: Bip002 L Hand
400156: Bip002 L Thigh
400158: Bip002 L Toe0
400160: Bip002 L Toe01
400162: Bip002 L Toe02
400164: Bip002 L Toe0Nub
400166: Bip002 L UpperArm
400168: Bip002 Neck
400170: Bip002 Pelvis
400172: Bip002 R Calf
400174: Bip002 R Clavicle
400176: Bip002 R Finger0
400178: Bip002 R Finger0Nub
400180: Bip002 R Foot
400182: Bip002 R Forearm
400184: Bip002 R Hand
400186: Bip002 R Thigh
400188: Bip002 R Toe0
400190: Bip002 R Toe01
400192: Bip002 R Toe02
400194: Bip002 R Toe0Nub
400196: Bip002 R UpperArm
400198: Bip002 Spine
400200: Bip002 Spine1
400202: Bip002 Spine2
400204: Bip002 Spine3
400206: Body001
400208: Bone001
400210: Bone002
400212: Bone003
400214: Bone003(mirrored)
400216: Bone004
400218: Bone004(mirrored)
400220: Bone005
400222: Bone005(mirrored)
400224: Bone006
400226: Bone006(mirrored)
400228: Bone007
400230: Bone007(mirrored)
400232: Bone008
400234: Bone008(mirrored)
400236: Camera001
400238: //RootNode
400240: Hair
400242: LeftPistol003
400244: LeftPistol2
400246: Plane001
2100000: 'Material #660'
2100002: 'Material #659'
2100004: 'Material #36'
2100006: Weapon_Pistol_K9_62_2_Material
2100008: No Name
2300000: Plane001
3300000: Plane001
4300000: Body001
4300002: LeftPistol2
4300004: LeftPistol003
4300006: Hair
4300008: Plane001
7400000: All
7400002: Gun01
7400004: Gun02
7400006: Gun04
7400008: Idle
7400010: Gun03
9500000: //RootNode
13700000: Body001
13700002: Hair
13700004: LeftPistol003
13700006: LeftPistol2
externalObjects: {}
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 3
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: All
takeName: Take 001
firstFrame: 0
lastFrame: 76
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 0
keepOriginalPositionXZ: 1
heightFromFeet: 1
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask: []
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
- serializedVersion: 16
name: Gun01
takeName: Take 001
firstFrame: 0
lastFrame: 13
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 0
keepOriginalPositionXZ: 0
heightFromFeet: 1
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask: []
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
- serializedVersion: 16
name: Gun02
takeName: Take 001
firstFrame: 13
lastFrame: 31
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 0
keepOriginalPositionXZ: 0
heightFromFeet: 1
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask: []
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
- serializedVersion: 16
name: Gun04
takeName: Take 001
firstFrame: 38
lastFrame: 89
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 0
keepOriginalPositionXZ: 0
heightFromFeet: 1
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask: []
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
- serializedVersion: 16
name: Idle
takeName: Take 001
firstFrame: 94
lastFrame: 110
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 0
keepOriginalPositionXZ: 0
heightFromFeet: 1
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask: []
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
- serializedVersion: 16
name: Gun03
takeName: Take 001
firstFrame: 31
lastFrame: 38
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 0
keepOriginalOrientation: 1
keepOriginalPositionY: 0
keepOriginalPositionXZ: 0
heightFromFeet: 1
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask: []
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
preserveHierarchy: 0
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
previousCalculatedGlobalScale: 0.01
hasPreviousCalculatedGlobalScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
importAnimation: 1
copyAvatar: 0
humanDescription:
serializedVersion: 2
human:
- boneName: Bip001 Pelvis
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: Bip001 L Thigh
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: Bip001 R Thigh
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: Bip001 L Calf
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: Bip001 R Calf
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: Bip001 L Foot
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: Bip001 R Foot
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: Bip001 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: Bip001 Spine1
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: Bip001 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: Bip001 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: Bip001 L Clavicle
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: Bip001 R Clavicle
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: Bip001 L UpperArm
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: Bip001 R UpperArm
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: Bip001 L Forearm
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: Bip001 R Forearm
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: Bip001 L Hand
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: Bip001 R Hand
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: Bip001 L Toe0
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: Bip001 R Toe0
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: Bip001 L Finger0
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: Bip001 L Finger01
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: Bip001 L Finger02
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: Bip001 L Finger1
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: Bip001 L Finger11
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: Bip001 L Finger12
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: Bip001 L Finger2
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: Bip001 L Finger21
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: Bip001 L Finger22
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: Bip001 L Finger3
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: Bip001 L Finger31
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: Bip001 L Finger32
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: Bip001 L Finger4
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: Bip001 L Finger41
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: Bip001 L Finger42
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: Bip001 R Finger0
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: Bip001 R Finger01
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: Bip001 R Finger02
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: Bip001 R Finger1
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: Bip001 R Finger11
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: Bip001 R Finger12
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: Bip001 R Finger2
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: Bip001 R Finger21
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: Bip001 R Finger22
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: Bip001 R Finger3
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: Bip001 R Finger31
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: Bip001 R Finger32
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: Bip001 R Finger4
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: Bip001 R Finger41
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: Bip001 R Finger42
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
- boneName: Bip001 Spine2
humanName: UpperChest
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: GunMotion(Clone)
parentName:
position: {x: 0, y: 0, z: 0}
rotation: {x: -0.034519702, y: -0.8069291, z: 0.14607495, w: 0.57125825}
scale: {x: 1, y: 1, z: 1}
- name: Bip001
parentName: GunMotion(Clone)
position: {x: -0.013424721, y: 0.101645164, z: 0.0032325028}
rotation: {x: 0.2121102, y: 0.7450594, z: 0.6319598, w: -0.022862447}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: Bip001 Footsteps
parentName: Bip001
position: {x: -0.028880093, y: -0.011190292, z: -0.09567867}
rotation: {x: 0.13381842, y: 0.079973474, z: 0.97369957, w: 0.16615084}
scale: {x: 0.9999998, y: 0.9999998, z: 0.9999999}
- name: Bip001 Pelvis
parentName: Bip001
position: {x: -0.04097032, y: -0.009681526, z: 0.018289797}
rotation: {x: 0.5, y: -0.5, z: -0.5, w: -0.5}
scale: {x: 1.0000005, y: 1.0000005, z: 1.0000004}
- name: Bip001 Spine
parentName: Bip001 Pelvis
position: {x: -0.008615036, y: 0.002306671, z: 0.00000034987926}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.9999996, y: 0.9999997, z: 1}
- name: Bip001 Spine1
parentName: Bip001 Spine
position: {x: -0.00801671, y: -0.000005745888, z: 0.0000011995435}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000006, y: 1.0000007, z: 1.0000002}
- name: Bip001 Spine2
parentName: Bip001 Spine1
position: {x: -0.0074449345, y: -0.00000954926, z: 0.0000020116568}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.9999999, y: 1, z: 0.9999999}
- name: Bip001 R Clavicle
parentName: Bip001 Spine2
position: {x: -0.013928938, y: -0.0027694511, z: -0.0037506984}
rotation: {x: 0.7071068, y: -0.000000030908623, z: 0.7071068, w: -0.000000030908623}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000004}
- name: Bip001 R UpperArm
parentName: Bip001 R Clavicle
position: {x: -0.008102383, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000006, y: 1.0000002, z: 1.0000001}
- name: Bip001 R Forearm
parentName: Bip001 R UpperArm
position: {x: -0.023922328, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000008, y: 1.0000007, z: 1.0000002}
- name: Bip001 R Hand
parentName: Bip001 R Forearm
position: {x: -0.023402108, y: 0, z: 0.0000000011920929}
rotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068}
scale: {x: 0.99999964, y: 1, z: 0.99999976}
- name: Bip001 R Finger0
parentName: Bip001 R Hand
position: {x: -0.0030214023, y: 0.0008606386, z: 0.002236216}
rotation: {x: 0, y: 0.38268346, z: 0, w: 0.9238795}
scale: {x: 1.0000011, y: 1.0000008, z: 1.0000008}
- name: Bip001 R Finger01
parentName: Bip001 R Finger0
position: {x: -0.0038436174, y: 0.000000009536743, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000001, y: 0.9999998, z: 1.0000005}
- name: Bip001 R Finger02
parentName: Bip001 R Finger01
position: {x: -0.0032733725, y: -0.0000000047683715, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.9999991, y: 0.9999997, z: 0.99999934}
- name: Bip001 R Finger0Nub
parentName: Bip001 R Finger02
position: {x: -0.0028372859, y: -0.0000000023841857, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: -1, y: -1, z: -1}
- name: Bip001 R Finger1
parentName: Bip001 R Hand
position: {x: -0.00916647, y: -0.000041475294, z: 0.0017203068}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000011, y: 1.0000007, z: 0.99999976}
- name: Bip001 R Finger11
parentName: Bip001 R Finger1
position: {x: -0.0033648205, y: 0.0000000047683715, z: -0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.9999998, y: 1.0000002, z: 0.99999994}
- name: Bip001 R Finger12
parentName: Bip001 R Finger11
position: {x: -0.0031246566, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.9999996, y: 0.99999994, z: 1.0000001}
- name: Bip001 R Finger1Nub
parentName: Bip001 R Finger12
position: {x: -0.0021533393, y: -0.000000009536743, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: -1, y: -1, z: -1}
- name: Bip001 R Finger2
parentName: Bip001 R Hand
position: {x: -0.008941612, y: 0.00030183076, z: -0.00014952898}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000008, y: 1.0000012, z: 0.99999964}
- name: Bip001 R Finger21
parentName: Bip001 R Finger2
position: {x: -0.003913102, y: 0, z: 0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000021, y: 1.0000017, z: 1}
- name: Bip001 R Finger22
parentName: Bip001 R Finger21
position: {x: -0.0028881263, y: -0.0000000047683715, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.9999995, y: 1.0000006, z: 1.0000002}
- name: Bip001 R Finger2Nub
parentName: Bip001 R Finger22
position: {x: -0.003231096, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: -1, y: -1, z: -1}
- name: Bip001 R Finger3
parentName: Bip001 R Hand
position: {x: -0.008765497, y: 0.00091946125, z: -0.00216079}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000004, y: 1.0000011, z: 0.99999994}
- name: Bip001 R Finger31
parentName: Bip001 R Finger3
position: {x: -0.0035649394, y: -0.000000009536743, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.000002, y: 1.0000011, z: 1.0000002}
- name: Bip001 R Finger32
parentName: Bip001 R Finger31
position: {x: -0.0029200076, y: 0, z: 0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.99999964, y: 1.0000005, z: 0.9999999}
- name: Bip001 R Finger3Nub
parentName: Bip001 R Finger32
position: {x: -0.002707386, y: 0, z: -0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: -1, y: -1, z: -1}
- name: Bip001 R Finger4
parentName: Bip001 R Hand
position: {x: -0.008154973, y: 0.0019810544, z: -0.0034674024}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000005, y: 1.0000006, z: 0.99999976}
- name: Bip001 R Finger41
parentName: Bip001 R Finger4
position: {x: -0.0024575233, y: 0, z: 0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.9999999, y: 1.0000002, z: 1}
- name: Bip001 R Finger42
parentName: Bip001 R Finger41
position: {x: -0.0017732906, y: -0.000000009536743, z: -0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.9999994, y: 0.9999994, z: 1}
- name: Bip001 R Finger4Nub
parentName: Bip001 R Finger42
position: {x: -0.0020156289, y: 0, z: 0.0000000011920929}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: -1, y: -1, z: -1}
- name: Bip001 L Clavicle
parentName: Bip001 Spine2
position: {x: -0.013928947, y: -0.0027694702, z: 0.0037506807}
rotation: {x: 0.7071068, y: -0.000000030908623, z: -0.7071068, w: 0.000000030908623}
scale: {x: 1.0000004, y: 1.0000001, z: 0.9999997}
- name: Bip001 L UpperArm
parentName: Bip001 L Clavicle
position: {x: -0.008102383, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000005, y: 1.0000006, z: 1.0000005}
- name: Bip001 L Forearm
parentName: Bip001 L UpperArm
position: {x: -0.023922328, y: 6.705522e-10, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000007, y: 1.0000006, z: 1.0000002}
- name: Bip001 L Hand
parentName: Bip001 L Forearm
position: {x: -0.023402104, y: -0.0000000023841857, z: 0}
rotation: {x: 0.7071068, y: 0, z: 0, w: -0.7071068}
scale: {x: 1.000001, y: 1.0000004, z: 1.0000017}
- name: Bip001 L Finger0
parentName: Bip001 L Hand
position: {x: -0.0030214118, y: 0.00086063624, z: -0.0022362184}
rotation: {x: 0, y: 0.3826835, z: 0, w: -0.9238795}
scale: {x: 1.0000012, y: 1.0000004, z: 1.0000004}
- name: Bip001 L Finger01
parentName: Bip001 L Finger0
position: {x: -0.0038436174, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000012, y: 1.000001, z: 1.0000002}
- name: Bip001 L Finger02
parentName: Bip001 L Finger01
position: {x: -0.0032733774, y: 0.0000000047683715, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.99999976, y: 0.9999997, z: 0.9999997}
- name: Bip001 L Finger0Nub
parentName: Bip001 L Finger02
position: {x: -0.0028372763, y: 0, z: -0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip001 L Finger1
parentName: Bip001 L Hand
position: {x: -0.009166479, y: -0.000041475294, z: -0.0017203093}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000006, y: 1.0000007, z: 1.0000005}
- name: Bip001 L Finger11
parentName: Bip001 L Finger1
position: {x: -0.0033648205, y: -0.0000000011920929, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.99999976, y: 0.9999999, z: 0.99999994}
- name: Bip001 L Finger12
parentName: Bip001 L Finger11
position: {x: -0.0031246708, y: 0.0000000023841857, z: 0.0000000047683715}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.99999994, y: 1.000001, z: 1.0000006}
- name: Bip001 L Finger1Nub
parentName: Bip001 L Finger12
position: {x: -0.0021533393, y: 0, z: 0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip001 L Finger2
parentName: Bip001 L Hand
position: {x: -0.008941612, y: 0.00030183076, z: 0.00014952659}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.9999994, y: 1.0000008, z: 0.9999999}
- name: Bip001 L Finger21
parentName: Bip001 L Finger2
position: {x: -0.003913097, y: 0, z: -0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000011, y: 1.0000005, z: 1.0000011}
- name: Bip001 L Finger22
parentName: Bip001 L Finger21
position: {x: -0.0028881358, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.9999996, y: 1.0000006, z: 1.0000004}
- name: Bip001 L Finger2Nub
parentName: Bip001 L Finger22
position: {x: -0.003231096, y: 0.0000000035762786, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip001 L Finger3
parentName: Bip001 L Hand
position: {x: -0.008765502, y: 0.00091946125, z: 0.00216079}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.9999989, y: 1.0000012, z: 1.0000001}
- name: Bip001 L Finger31
parentName: Bip001 L Finger3
position: {x: -0.0035649394, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000011, y: 0.99999976, z: 1.0000015}
- name: Bip001 L Finger32
parentName: Bip001 L Finger31
position: {x: -0.0029200052, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.99999917, y: 1.0000012, z: 1.0000001}
- name: Bip001 L Finger3Nub
parentName: Bip001 L Finger32
position: {x: -0.002707386, y: 0.0000000047683715, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip001 L Finger4
parentName: Bip001 L Hand
position: {x: -0.008154964, y: 0.0019810533, z: 0.0034674}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1.0000011, z: 1.000001}
- name: Bip001 L Finger41
parentName: Bip001 L Finger4
position: {x: -0.0024575042, y: 0.0000000035762786, z: 0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.99999976, y: 1.0000006, z: 0.99999994}
- name: Bip001 L Finger42
parentName: Bip001 L Finger41
position: {x: -0.0017732917, y: -0.0000000047683715, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.9999995, y: 0.9999994, z: 0.9999993}
- name: Bip001 L Finger4Nub
parentName: Bip001 L Finger42
position: {x: -0.0020156335, y: -0.0000000023841857, z: -0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bone002
parentName: Bip001 L Hand
position: {x: -0.015632821, y: 0.002779586, z: -0.0013417816}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000013, y: 1.0000019, z: 1.0000019}
- name: Bip001 Neck
parentName: Bip001 Spine2
position: {x: -0.018553562, y: -0.0024621938, z: 5.9604643e-10}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000005, y: 1.0000001, z: 1.0000005}
- name: Bip001 Head
parentName: Bip001 Neck
position: {x: -0.005849123, y: -0.00026542664, z: 0.0000000011920929}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000026, y: 1.0000026, z: 1.0000031}
- name: Bip001 HeadNub
parentName: Bip001 Head
position: {x: -0.025905646, y: 0.0000000047683715, z: 0.0000000011920929}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bone003
parentName: Bip001 Head
position: {x: -0.0068261796, y: -0.0075685047, z: -0.0069999695}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.2361283, y: 1.0000006, z: 0.99999964}
- name: Bone004
parentName: Bone003
position: {x: -0.014923573, y: 0, z: 0.0000000030937388}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.98491144, y: 1.0004972, z: 0.97547364}
- name: Bone005
parentName: Bone004
position: {x: -0.013611517, y: 0, z: 0.0000000025563371}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.99366045, y: 1.0006665, z: 1.0136341}
- name: Bone006
parentName: Bone005
position: {x: -0.01055171, y: 0, z: 0.000000001770868}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.970136, y: 0.9949323, z: 1.0320815}
- name: Bone007
parentName: Bone006
position: {x: -0.006363611, y: 0, z: 0.0000000010656163}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0061525, y: 0.9912188, z: 1.004019}
- name: Bone008
parentName: Bone007
position: {x: -0.008917231, y: 0, z: 0.0000000014798979}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 0.16105339, y: 1, z: 1}
- name: Bone003(mirrored)
parentName: Bip001 Head
position: {x: -0.006826183, y: -0.0075685247, z: 0.0069999886}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000002, y: 1, z: 1.0000001}
- name: Bone004(mirrored)
parentName: Bone003(mirrored)
position: {x: -0.018447436, y: -0.00000000834465, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000001, y: 1.0000005, z: 1}
- name: Bone005(mirrored)
parentName: Bone004(mirrored)
position: {x: -0.015569615, y: 0.000000007152557, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000005, y: 1.0000005, z: 1.0000004}
- name: Bone006(mirrored)
parentName: Bone005(mirrored)
position: {x: -0.0120678255, y: 0.0000000047683715, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000006, y: 1.0000001, z: 1}
- name: Bone007(mirrored)
parentName: Bone006(mirrored)
position: {x: -0.007522254, y: 0.0000000047683715, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000006, y: 1.0000011, z: 0.99999994}
- name: Bone008(mirrored)
parentName: Bone007(mirrored)
position: {x: -0.010466609, y: -0.000000007152557, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000004, y: 0.99999994, z: 1.0000001}
- name: Bip001 L Thigh
parentName: Bip001 Pelvis
position: {x: 0.000000009536743, y: 0.0000000047683715, z: 0.008165839}
rotation: {x: 0, y: 1, z: 0, w: -0.00000004371139}
scale: {x: 1.0000005, y: 1.0000007, z: 1.0000008}
- name: Bip001 L Calf
parentName: Bip001 L Thigh
position: {x: -0.0470637, y: -0.0000000023841857, z: 0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1.0000005, z: 1.0000002}
- name: Bip001 L Foot
parentName: Bip001 L Calf
position: {x: -0.050045747, y: -0.0000000023841857, z: -0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 0.9999997, z: 0.99999976}
- name: Bip001 L Toe0
parentName: Bip001 L Foot
position: {x: -0.010711891, y: 0.012888817, z: -0.00020400523}
rotation: {x: 0, y: 0, z: 0.7071068, w: -0.7071068}
scale: {x: 1.0000006, y: 1, z: 1.0000006}
- name: Bip001 L Toe0Nub
parentName: Bip001 L Toe0
position: {x: -0.006511018, y: 0, z: -0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: -1, y: -1, z: -1}
- name: Bip001 R Thigh
parentName: Bip001 Pelvis
position: {x: -0.000000009536743, y: -0.000000014305114, z: -0.008165832}
rotation: {x: 0, y: 1, z: 0, w: -0.00000004371139}
scale: {x: 1.0000007, y: 1.0000002, z: 1.000001}
- name: Bip001 R Calf
parentName: Bip001 R Thigh
position: {x: -0.04706368, y: -0.0000000011920929, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1.0000005, y: 1.0000008, z: 1.0000011}
- name: Bip001 R Foot
parentName: Bip001 R Calf
position: {x: -0.050045747, y: 0, z: 0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 0.9999994, z: 0.9999996}
- name: Bip001 R Toe0
parentName: Bip001 R Foot
position: {x: -0.010711891, y: 0.012888824, z: 0.00020400285}
rotation: {x: 0, y: 0, z: 0.7071068, w: -0.7071068}
scale: {x: 1.0000013, y: 1.0000002, z: 1.0000012}
- name: Bip001 R Toe0Nub
parentName: Bip001 R Toe0
position: {x: -0.0065110205, y: 0, z: 0.0000000023841857}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Body001
parentName: GunMotion(Clone)
position: {x: -0.0000007890473, y: -0.00012334823, z: -0.00012802602}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
scale: {x: 2.634374, y: 2.634374, z: 2.634374}
- name: LeftPistol2
parentName: GunMotion(Clone)
position: {x: -0, y: 0, z: -2.9802322e-10}
rotation: {x: -0.7071068, y: -1.7319123e-16, z: 0, w: 0.7071068}
scale: {x: 1, y: 1, z: 1}
- name: LeftPistol003
parentName: GunMotion(Clone)
position: {x: -0.01325592, y: 0, z: -2.9802322e-10}
rotation: {x: -0.7071068, y: -1.7319123e-16, z: 0, w: 0.7071068}
scale: {x: 1, y: 1, z: 1}
- name: Hair
parentName: GunMotion(Clone)
position: {x: -0.0000007890473, y: -0.00012334823, z: -0.00012802602}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
scale: {x: 2.634374, y: 2.634374, z: 2.634374}
- name: Plane001
parentName: GunMotion(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
scale: {x: 200, y: 200, z: 200}
- name: Camera001
parentName: GunMotion(Clone)
position: {x: 0.9333911, y: 0.06108789, z: 0.057136707}
rotation: {x: 0.034780253, y: 0.7062509, z: -0.034780253, w: 0.7062509}
scale: {x: 1, y: 1, z: 1}
- name: Bip002
parentName: GunMotion(Clone)
position: {x: -0.16276635, y: 0.027325511, z: 0.6943353}
rotation: {x: -0.50000036, y: 0.49999967, z: 0.49999967, w: 0.50000036}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: Bip002 Footsteps
parentName: Bip002
position: {x: -0, y: 0, z: -0.027325511}
rotation: {x: 0, y: -0, z: -0.7071063, w: 0.70710725}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 Pelvis
parentName: Bip002
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.5, y: -0.5, z: -0.5, w: -0.5}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 Spine
parentName: Bip002 Pelvis
position: {x: -0.0028309822, y: -0.0000025177, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 Spine1
parentName: Bip002 Spine
position: {x: -0.0032002735, y: -0.0000025177, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 Spine2
parentName: Bip002 Spine1
position: {x: -0.0032002686, y: -0.0000025939942, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 Spine3
parentName: Bip002 Spine2
position: {x: -0.0032002712, y: -0.0000025177, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 Neck
parentName: Bip002 Spine3
position: {x: -0.0032002782, y: -0.0000014495849, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 L Clavicle
parentName: Bip002 Neck
position: {x: 0.0000000047683715, y: 0.0000014495849, z: 0.00086160656}
rotation: {x: 0.7071068, y: -0.000000030908623, z: -0.7071068, w: 0.000000030908623}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 L UpperArm
parentName: Bip002 L Clavicle
position: {x: -0.003200283, y: 0, z: 0.0000000047683715}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 L Forearm
parentName: Bip002 L UpperArm
position: {x: -0.007385254, y: 0, z: -0.000000038146972}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 L Hand
parentName: Bip002 L Forearm
position: {x: -0.007385254, y: 0, z: 0}
rotation: {x: 0.7071068, y: 0, z: 0, w: -0.7071068}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 L Finger0
parentName: Bip002 L Hand
position: {x: -0.0030771827, y: 0, z: -0.000000076293944}
rotation: {x: 0, y: 0.3826835, z: 0, w: -0.9238795}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 L Finger0Nub
parentName: Bip002 L Finger0
position: {x: -0.0007692909, y: 0.000000019073486, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 R Clavicle
parentName: Bip002 Neck
position: {x: 0.0000000047683715, y: 0.0000014495849, z: -0.00086160656}
rotation: {x: 0.7071068, y: -0.000000030908623, z: 0.7071068, w: -0.000000030908623}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 R UpperArm
parentName: Bip002 R Clavicle
position: {x: -0.0032002735, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 R Forearm
parentName: Bip002 R UpperArm
position: {x: -0.007385254, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 R Hand
parentName: Bip002 R Forearm
position: {x: -0.0073852586, y: 0, z: 0}
rotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 R Finger0
parentName: Bip002 R Hand
position: {x: -0.0030771804, y: 0, z: 0.000000076293944}
rotation: {x: 0, y: 0.38268346, z: 0, w: 0.9238795}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 R Finger0Nub
parentName: Bip002 R Finger0
position: {x: -0.00076929806, y: 0.000000009536743, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: -1, y: -1, z: -1}
- name: Bip002 Head
parentName: Bip002 Neck
position: {x: -0.0018463087, y: -0.000000076293944, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 HeadNub
parentName: Bip002 Head
position: {x: -0.0057851076, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 L Thigh
parentName: Bip002 Spine
position: {x: 0.0028310083, y: 0.0000048065185, z: 0.0024617575}
rotation: {x: 0, y: 1, z: 0, w: -0.00000004371139}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 L Calf
parentName: Bip002 L Thigh
position: {x: -0.012308745, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 L Foot
parentName: Bip002 L Calf
position: {x: -0.01230874, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 L Toe0
parentName: Bip002 L Foot
position: {x: -0.0028310108, y: 0.0036434173, z: 0}
rotation: {x: 0, y: 0, z: 0.7071068, w: -0.7071068}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 L Toe01
parentName: Bip002 L Toe0
position: {x: -0.00036926268, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 L Toe02
parentName: Bip002 L Toe01
position: {x: -0.00036926268, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 L Toe0Nub
parentName: Bip002 L Toe02
position: {x: -0.00036926268, y: 2.2737367e-15, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: -1, y: -1, z: -1}
- name: Bip002 R Thigh
parentName: Bip002 Spine
position: {x: 0.0028310083, y: 0.0000048065185, z: -0.0024617575}
rotation: {x: 0, y: 1, z: 0, w: -0.00000004371139}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 R Calf
parentName: Bip002 R Thigh
position: {x: -0.012308745, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 R Foot
parentName: Bip002 R Calf
position: {x: -0.01230874, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 R Toe0
parentName: Bip002 R Foot
position: {x: -0.0028310108, y: 0.0036434173, z: 0}
rotation: {x: 0, y: 0, z: 0.7071068, w: -0.7071068}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 R Toe01
parentName: Bip002 R Toe0
position: {x: -0.00036926268, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 R Toe02
parentName: Bip002 R Toe01
position: {x: -0.00036926268, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bip002 R Toe0Nub
parentName: Bip002 R Toe02
position: {x: -0.00036926268, y: 2.2737367e-15, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bone001
parentName: GunMotion(Clone)
position: {x: -0.014780092, y: 0.0014010238, z: -0.003385095}
rotation: {x: -0.7071068, y: -0.00000012305908, z: 0.0000000014470073, w: 0.7071068}
scale: {x: 1.0000001, y: 1.0000006, z: 1.0000002}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
rootMotionBoneName:
hasTranslationDoF: 1
hasExtraRoot: 1
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 3
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
|