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
|
fileFormatVersion: 2
guid: 432a21636c1a0494297bb302b689301e
ModelImporter:
serializedVersion: 23
fileIDToRecycleName:
100000: Bip001 Footsteps
100002: Bip001 HeadNub
100004: Bip001 L Finger0Nub
100006: Bip001 L Finger1Nub
100008: Bip001 L Finger2Nub
100010: Bip001 L Finger3Nub
100012: Bip001 L Finger4Nub
100014: Bip001 L Toe0Nub
100016: Bip001 R Finger0Nub
100018: Bip001 R Finger1Nub
100020: Bip001 R Finger2Nub
100022: Bip001 R Finger3Nub
100024: Bip001 R Finger4Nub
100026: Bip001 R Toe0Nub
100028: BladeL
100030: BladeL_Bone
100032: BladeR
100034: BladeR_Bone
100036: //RootNode
100038: Body
100040: Chest
100042: Fingers
100044: Head
100046: Hips
100048: Joint
100050: LeftArm
100052: LeftFoot
100054: LeftForeArm
100056: LeftHand
100058: LeftIndex1
100060: LeftIndex2
100062: LeftIndex3
100064: LeftLeg
100066: LeftMiddle1
100068: LeftMiddle2
100070: LeftMiddle3
100072: LeftPink1
100074: LeftPink2
100076: LeftPink3
100078: LeftRing1
100080: LeftRing2
100082: LeftRing3
100084: LeftShoulder
100086: LeftThumb1
100088: LeftThumb2
100090: LeftThumb3
100092: LeftToe
100094: LeftUpLeg
100096: Neck
100098: Pelvis
100100: RightArm
100102: RightFoot
100104: RightForeArm
100106: RightHand
100108: RightIndex1
100110: RightIndex2
100112: RightIndex3
100114: RightLeg
100116: RightMiddle1
100118: RightMiddle2
100120: RightMiddle3
100122: RightPinky1
100124: RightPinky2
100126: RightPinky3
100128: RightRing1
100130: RightRing2
100132: RightRing3
100134: RightShoulder
100136: RightThumb1
100138: RightThumb2
100140: RightThumb3
100142: RightToe
100144: RightUpLeg
100146: Spine
100148: Sword_Hold
100150: Sword_Hold_Bone
400000: Bip001 Footsteps
400002: Bip001 HeadNub
400004: Bip001 L Finger0Nub
400006: Bip001 L Finger1Nub
400008: Bip001 L Finger2Nub
400010: Bip001 L Finger3Nub
400012: Bip001 L Finger4Nub
400014: Bip001 L Toe0Nub
400016: Bip001 R Finger0Nub
400018: Bip001 R Finger1Nub
400020: Bip001 R Finger2Nub
400022: Bip001 R Finger3Nub
400024: Bip001 R Finger4Nub
400026: Bip001 R Toe0Nub
400028: BladeL
400030: BladeL_Bone
400032: BladeR
400034: BladeR_Bone
400036: //RootNode
400038: Body
400040: Chest
400042: Fingers
400044: Head
400046: Hips
400048: Joint
400050: LeftArm
400052: LeftFoot
400054: LeftForeArm
400056: LeftHand
400058: LeftIndex1
400060: LeftIndex2
400062: LeftIndex3
400064: LeftLeg
400066: LeftMiddle1
400068: LeftMiddle2
400070: LeftMiddle3
400072: LeftPink1
400074: LeftPink2
400076: LeftPink3
400078: LeftRing1
400080: LeftRing2
400082: LeftRing3
400084: LeftShoulder
400086: LeftThumb1
400088: LeftThumb2
400090: LeftThumb3
400092: LeftToe
400094: LeftUpLeg
400096: Neck
400098: Pelvis
400100: RightArm
400102: RightFoot
400104: RightForeArm
400106: RightHand
400108: RightIndex1
400110: RightIndex2
400112: RightIndex3
400114: RightLeg
400116: RightMiddle1
400118: RightMiddle2
400120: RightMiddle3
400122: RightPinky1
400124: RightPinky2
400126: RightPinky3
400128: RightRing1
400130: RightRing2
400132: RightRing3
400134: RightShoulder
400136: RightThumb1
400138: RightThumb2
400140: RightThumb3
400142: RightToe
400144: RightUpLeg
400146: Spine
400148: Sword_Hold
400150: Sword_Hold_Bone
4300000: Body
4300002: Fingers
4300004: Joint
4300006: Sword_Hold
4300008: BladeL
4300010: BladeR
7400000: Block_GetHit_Left
9500000: //RootNode
13700000: BladeL
13700002: BladeR
13700004: Body
13700006: Fingers
13700008: Joint
13700010: Sword_Hold
2186277476908879412: ImportLogs
externalObjects:
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Texture_Blue
second: {fileID: 2100000, guid: 2605b7323a1d0bd4ba7c22961b9981f6, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Texture_Gray
second: {fileID: 2100000, guid: 0fcf455445b71b440a0bf6b79a00da9a, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Texture_White
second: {fileID: 2100000, guid: 819ebf6d5d84c8c45a05177306393d82, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Texture_Yellow
second: {fileID: 2100000, guid: d84cb157c3a664d4cbf5ca7e994ad639, type: 2}
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
materialLocation: 0
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings: "\nClip 'Take 001' has import animation warnings that
might lower retargeting quality:\nNote: Activate translation DOF on avatar to
improve retargeting quality.\n\t'Chest' has translation animation that will
be discarded.\n"
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: Block_GetHit_Left
takeName: Take 001
firstFrame: 0
lastFrame: 22
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: 1
keepOriginalPositionXZ: 0
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: BladeL
weight: 0
- path: BladeR
weight: 0
- path: Body
weight: 0
- path: Fingers
weight: 0
- path: Hips
weight: 1
- path: Hips/Bip001 Footsteps
weight: 0
- path: Hips/Pelvis
weight: 1
- path: Hips/Pelvis/BladeL_Bone
weight: 0
- path: Hips/Pelvis/LeftUpLeg
weight: 1
- path: Hips/Pelvis/LeftUpLeg/LeftLeg
weight: 1
- path: Hips/Pelvis/LeftUpLeg/LeftLeg/LeftFoot
weight: 1
- path: Hips/Pelvis/LeftUpLeg/LeftLeg/LeftFoot/LeftToe
weight: 0
- path: Hips/Pelvis/LeftUpLeg/LeftLeg/LeftFoot/LeftToe/Bip001 L Toe0Nub
weight: 0
- path: Hips/Pelvis/RightUpLeg
weight: 1
- path: Hips/Pelvis/RightUpLeg/RightLeg
weight: 1
- path: Hips/Pelvis/RightUpLeg/RightLeg/RightFoot
weight: 1
- path: Hips/Pelvis/RightUpLeg/RightLeg/RightFoot/RightToe
weight: 0
- path: Hips/Pelvis/RightUpLeg/RightLeg/RightFoot/RightToe/Bip001 R Toe0Nub
weight: 0
- path: Hips/Pelvis/Sword_Hold_Bone
weight: 0
- path: Hips/Spine
weight: 1
- path: Hips/Spine/Chest
weight: 1
- path: Hips/Spine/Chest/LeftShoulder
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftIndex1
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftIndex1/LeftIndex2
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3/Bip001
L Finger1Nub
weight: 0
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftMiddle1
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftMiddle1/LeftMiddle2
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3/Bip001
L Finger2Nub
weight: 0
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftPink1
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftPink1/LeftPink2
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftPink1/LeftPink2/LeftPink3
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftPink1/LeftPink2/LeftPink3/Bip001
L Finger4Nub
weight: 0
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftRing1
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftRing1/LeftRing2
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftRing1/LeftRing2/LeftRing3
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftRing1/LeftRing2/LeftRing3/Bip001
L Finger3Nub
weight: 0
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftThumb1
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftThumb1/LeftThumb2
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3
weight: 1
- path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/Bip001
L Finger0Nub
weight: 0
- path: Hips/Spine/Chest/Neck
weight: 1
- path: Hips/Spine/Chest/Neck/Head
weight: 1
- path: Hips/Spine/Chest/Neck/Head/Bip001 HeadNub
weight: 0
- path: Hips/Spine/Chest/RightShoulder
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/BladeR_Bone
weight: 0
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightIndex1
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightIndex1/RightIndex2
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightIndex1/RightIndex2/RightIndex3
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightIndex1/RightIndex2/RightIndex3/Bip001
R Finger1Nub
weight: 0
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightMiddle1
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightMiddle1/RightMiddle2
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3/Bip001
R Finger2Nub
weight: 0
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightPinky1
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightPinky1/RightPinky2
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightPinky1/RightPinky2/RightPinky3
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightPinky1/RightPinky2/RightPinky3/Bip001
R Finger4Nub
weight: 0
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightRing1
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightRing1/RightRing2
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightRing1/RightRing2/RightRing3
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightRing1/RightRing2/RightRing3/Bip001
R Finger3Nub
weight: 0
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightThumb1
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightThumb1/RightThumb2
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightThumb1/RightThumb2/RightThumb3
weight: 1
- path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightThumb1/RightThumb2/RightThumb3/Bip001
R Finger0Nub
weight: 0
- path: Joint
weight: 0
- path: Sword_Hold
weight: 0
maskType: 0
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
importVisibility: 0
importBlendShapes: 1
importCameras: 0
importLights: 0
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
preserveHierarchy: 0
indexFormat: 1
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
previousCalculatedGlobalScale: 0.01
hasPreviousCalculatedGlobalScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 0
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
importAnimation: 1
copyAvatar: 0
humanDescription:
serializedVersion: 2
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: LeftThumb1
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: LeftThumb2
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: LeftThumb3
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: LeftIndex1
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: LeftIndex2
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: LeftIndex3
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: LeftMiddle1
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: LeftMiddle2
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: LeftMiddle3
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: LeftRing1
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: LeftRing2
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: LeftRing3
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: LeftPink1
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: LeftPink2
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: LeftPink3
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: RightThumb1
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: RightThumb2
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: RightThumb3
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: RightIndex1
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: RightIndex2
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: RightIndex3
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: RightMiddle1
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: RightMiddle2
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: RightMiddle3
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: RightRing1
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: RightRing2
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: RightRing3
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: RightPinky1
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: RightPinky2
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: RightPinky3
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: T-Pose(Clone)
parentName:
position: {x: 0, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: BladeL
parentName:
position: {x: -0.15113708, y: 1.1942139, z: 0.21100521}
rotation: {x: -0.18157558, y: 0.28872877, z: 0.70160097, w: 0.62563735}
scale: {x: 0.40166733, y: 0.40166718, z: 0.4016671}
- name: BladeR
parentName:
position: {x: 0.77731186, y: 1.4427713, z: -0.03480024}
rotation: {x: -0.018752001, y: 0.99909246, z: -0.007738284, w: -0.037453506}
scale: {x: 0.40166733, y: 0.40166718, z: 0.4016671}
- name: Body
parentName:
position: {x: -0, y: 1.1350908, z: 0.017936246}
rotation: {x: 0.00000008146034, y: 0, z: -0, w: 1}
scale: {x: 0.6059175, y: 0.6059175, z: 2.5840552}
- name: Fingers
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
scale: {x: 1, y: 1, z: 1}
- name: Hips
parentName:
position: {x: -0, y: 0.98275, z: 0.013068189}
rotation: {x: -0.50000036, y: 0.49999964, z: 0.49999964, w: 0.50000036}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: Bip001 Footsteps
parentName:
position: {x: -0, y: 0, z: -0.97846615}
rotation: {x: 0, y: 0, z: -0.7071063, w: 0.70710725}
scale: {x: 1, y: 1, z: 1}
- name: Pelvis
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.49999964, y: 0.50000036, z: 0.49999964, w: 0.50000036}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Sword_Hold_Bone
parentName:
position: {x: -0.053873748, y: -0.00053559063, z: 0.1907731}
rotation: {x: 0.7116927, y: 0.027398983, z: -0.7010268, w: -0.03611435}
scale: {x: 1, y: 1, z: 1}
- name: BladeL_Bone
parentName:
position: {x: -0.21146217, y: 0.19793743, z: 0.15113685}
rotation: {x: -0.19716941, y: 0.71719646, z: 0.61004174, w: -0.27313465}
scale: {x: 1.0000004, y: 1.0000002, z: 0.9999999}
- name: RightUpLeg
parentName:
position: {x: -0.00000015258789, y: -0.00000007510185, z: -0.08567212}
rotation: {x: 0.0055967798, y: 0.99987566, z: -0.0125247305, w: -0.0077794483}
scale: {x: 1, y: 1, z: 1}
- name: RightLeg
parentName:
position: {x: -0.440825, y: -5.9604643e-10, z: 0}
rotation: {x: 2.5410143e-10, y: 9.314746e-10, z: 0.00059807306, w: 0.9999998}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: RightFoot
parentName:
position: {x: -0.41156092, y: -5.9604643e-10, z: -0.000000019073486}
rotation: {x: -0.00017353428, y: -0.0048699896, z: -0.006172642, w: 0.99996907}
scale: {x: 1, y: 0.9999998, z: 1}
- name: RightToe
parentName:
position: {x: -0.12624253, y: 0.15159549, z: 0}
rotation: {x: -0.000000015389459, y: 0.00000001523286, z: -0.7071068, w: 0.7071068}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: Bip001 R Toe0Nub
parentName:
position: {x: -0.06818751, y: 0, z: 0}
rotation: {x: 2.3283062e-10, y: -1.0749089e-10, z: 2.502717e-20, w: 1}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: LeftUpLeg
parentName:
position: {x: 0.00000015258789, y: 0.00000016093254, z: 0.08567212}
rotation: {x: 0.0055967877, y: 0.99987566, z: 0.012523336, w: 0.007777982}
scale: {x: 1, y: 0.99999994, z: 0.9999999}
- name: LeftLeg
parentName:
position: {x: -0.44082496, y: 5.9604643e-10, z: 0.000000009536743}
rotation: {x: -3.637978e-10, y: -2.175777e-13, z: 0.00059807306, w: 0.9999998}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: LeftFoot
parentName:
position: {x: -0.4115609, y: 0.0000000011920929, z: 0}
rotation: {x: 0.00017353377, y: 0.004869904, z: -0.0061726454, w: 0.99996907}
scale: {x: 1, y: 0.9999999, z: 1}
- name: LeftToe
parentName:
position: {x: -0.12624253, y: 0.15159547, z: 0}
rotation: {x: 0.000000015554116, y: -0.000000015397479, z: -0.7071068, w: 0.7071068}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Bip001 L Toe0Nub
parentName:
position: {x: -0.068187505, y: 0, z: 0.000000009536743}
rotation: {x: 1.07519334e-10, y: -6.5836606e-27, z: 1, w: 6.123234e-17}
scale: {x: -0.99999994, y: -1, z: -1}
- name: Spine
parentName:
position: {x: 0.00009789228, y: -6.48015e-14, z: 0.10961815}
rotation: {x: -0.49674812, y: 0.50323087, z: 0.50323224, w: 0.49674675}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Chest
parentName:
position: {x: -0.13123566, y: -0.00025390385, z: -7.042263e-10}
rotation: {x: -5.3895156e-15, y: -0.000000019088699, z: 0.0068822834, w: 0.99997634}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: RightShoulder
parentName:
position: {x: -0.26259163, y: -0.025448512, z: -0.0525257}
rotation: {x: 0.6719964, y: 0.00026653428, z: 0.7405544, w: -0.000295787}
scale: {x: 1.0000001, y: 1, z: 1}
- name: RightArm
parentName:
position: {x: -0.12200107, y: -0.0000000023841857, z: 0}
rotation: {x: -0.016502982, y: -0.04184747, z: 0.012796432, w: 0.9989058}
scale: {x: 0.99999994, y: 1, z: 1}
- name: RightForeArm
parentName:
position: {x: -0.26449493, y: 0.0000000023841857, z: 0}
rotation: {x: 2.3283057e-10, y: 1.7977233e-13, z: 0.0007721163, w: 0.9999997}
scale: {x: 1.0000001, y: 1, z: 0.99999994}
- name: RightHand
parentName:
position: {x: -0.26449493, y: -0.0000000047683715, z: 0}
rotation: {x: 0.69131655, y: -0.040822543, z: 0.030837994, w: 0.72073853}
scale: {x: 1, y: 1, z: 1}
- name: BladeR_Bone
parentName:
position: {x: -0.071701124, y: 0.031776886, z: -0.028412627}
rotation: {x: 0.99820375, y: -0.02655417, z: 0.04576307, w: -0.02810544}
scale: {x: 1.0000002, y: 1.0000001, z: 0.9999999}
- name: RightThumb1
parentName:
position: {x: -0.026743164, y: 0.017545624, z: 0.02198472}
rotation: {x: -0.39241087, y: 0.37035063, z: 0.13225652, w: 0.83148205}
scale: {x: 1, y: 1, z: 1}
- name: RightThumb2
parentName:
position: {x: -0.047266617, y: 0, z: 0}
rotation: {x: 0.000000059604616, y: -0.00000029802308, z: -0.041039895, w: 0.9991575}
scale: {x: 1.0000001, y: 1, z: 1}
- name: RightThumb3
parentName:
position: {x: -0.035123177, y: 0, z: 0}
rotation: {x: -4.0868053e-10, y: -0.000000014895557, z: -0.027426085, w: 0.99962384}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: Bip001 R Finger0Nub
parentName:
position: {x: -0.032480963, y: 0.000000038146972, z: 0}
rotation: {x: -1.1102229e-16, y: -0.0000000074505797, z: 1, w: 0.000000014901161}
scale: {x: -1, y: -1.0000001, z: -1}
- name: RightIndex1
parentName:
position: {x: -0.09708961, y: -0.0023173522, z: 0.025497504}
rotation: {x: 0.003366946, y: 0.039942876, z: -0.04783081, w: 0.99805087}
scale: {x: 0.99999994, y: 0.99999994, z: 1.0000001}
- name: RightIndex2
parentName:
position: {x: -0.033342436, y: 0, z: 0.000000009536743}
rotation: {x: -0.0000000018242329, y: 0.0000000020145228, z: -0.019235237, w: 0.999815}
scale: {x: 1, y: 1, z: 1.0000001}
- name: RightIndex3
parentName:
position: {x: -0.028267898, y: 0, z: 0}
rotation: {x: -0.0000000017874366, y: -0.000000006656325, z: 0.011315952, w: 0.999936}
scale: {x: 1.0000002, y: 1.0000001, z: 1.0000001}
- name: Bip001 R Finger1Nub
parentName:
position: {x: -0.031239318, y: 0.00000015258789, z: 0}
rotation: {x: 8.1490725e-10, y: -0.0000000018626451, z: 1, w: 6.2750226e-17}
scale: {x: -1, y: -1, z: -0.99999994}
- name: RightMiddle1
parentName:
position: {x: -0.102270655, y: -0.005095825, z: 0.00012607574}
rotation: {x: 0.000411868, y: 0.00019046101, z: -0.05681644, w: 0.9983846}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: RightMiddle2
parentName:
position: {x: -0.03603569, y: 0.00000015258789, z: 0}
rotation: {x: -0.0000000018646562, y: 2.1613374e-10, z: 0.008959068, w: 0.9999599}
scale: {x: 1, y: 1.0000001, z: 1}
- name: RightMiddle3
parentName:
position: {x: -0.031463392, y: 0, z: 0}
rotation: {x: 0.000000001891268, y: -6.49575e-10, z: 0.041549757, w: 0.99913645}
scale: {x: 1, y: 1, z: 1}
- name: Bip001 R Finger2Nub
parentName:
position: {x: -0.033252105, y: -0.00000015258789, z: 0}
rotation: {x: -2.0372681e-10, y: 0.0000000018626449, z: 1, w: 6.1611813e-17}
scale: {x: -1, y: -1.0000001, z: -1.0000001}
- name: RightPinky1
parentName:
position: {x: -0.08984596, y: 0.007751617, z: -0.04868637}
rotation: {x: 0.056138318, y: -0.044703543, z: -0.038837634, w: 0.99666536}
scale: {x: 0.99999994, y: 1.0000002, z: 1}
- name: RightPinky2
parentName:
position: {x: -0.027551498, y: 0, z: 0}
rotation: {x: -4.4812335e-12, y: 9.313117e-10, z: 0.0048116883, w: 0.99998844}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: RightPinky3
parentName:
position: {x: -0.022705384, y: 0, z: 0}
rotation: {x: 0.000000003724863, y: 5.639881e-11, z: 0.015139441, w: 0.99988544}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: Bip001 R Finger4Nub
parentName:
position: {x: -0.027051544, y: 0.00000015258789, z: 0}
rotation: {x: 0.000000007916242, y: -2.94903e-17, z: 1, w: 0.0000000037252903}
scale: {x: -1, y: -1, z: -1}
- name: RightRing1
parentName:
position: {x: -0.09988785, y: -0.0011738586, z: -0.025785293}
rotation: {x: 0.12204921, y: -0.035391603, z: -0.045856096, w: 0.99083227}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: RightRing2
parentName:
position: {x: -0.035035703, y: 0, z: 0}
rotation: {x: 5.734343e-11, y: -0.00000000465626, z: 0.012314407, w: 0.9999242}
scale: {x: 1, y: 1, z: 1}
- name: RightRing3
parentName:
position: {x: -0.024122009, y: -0.00000015258789, z: 0}
rotation: {x: 0.000000007561276, y: -0.0000000047164517, z: 0.023044286, w: 0.99973446}
scale: {x: 1, y: 1, z: 1}
- name: Bip001 R Finger3Nub
parentName:
position: {x: -0.031096954, y: 0.00000015258789, z: 0}
rotation: {x: -0.0000000013969838, y: 8.554058e-26, z: 1, w: 6.123234e-17}
scale: {x: -1.0000001, y: -1, z: -1}
- name: Neck
parentName:
position: {x: -0.28273398, y: -0.026063131, z: 7.220842e-10}
rotation: {x: -9.6328415e-14, y: 0.00000029454483, z: -0.106195845, w: 0.99434525}
scale: {x: 1, y: 1, z: 1}
- name: Head
parentName:
position: {x: -0.05109985, y: -0.000000019073486, z: -7.2759575e-14}
rotation: {x: 1.4842786e-13, y: -0.00000000970573, z: 0.0035000206, w: 0.99999386}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: Bip001 HeadNub
parentName:
position: {x: -0.20441024, y: 0.000000038146972, z: 7.2759575e-14}
rotation: {x: -1.7763568e-14, y: 1.323489e-22, z: -0.000000007450581, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LeftShoulder
parentName:
position: {x: -0.26259163, y: -0.025448803, z: 0.052525558}
rotation: {x: -0.6719964, y: -0.00026858912, z: 0.7405544, w: -0.0002939241}
scale: {x: 1.0000001, y: 1, z: 1}
- name: LeftArm
parentName:
position: {x: -0.122001044, y: -0.0000000023841857, z: 0}
rotation: {x: 0.016502984, y: 0.041847467, z: 0.012796431, w: 0.9989058}
scale: {x: 1, y: 1, z: 1}
- name: LeftForeArm
parentName:
position: {x: -0.26449493, y: 0, z: 0}
rotation: {x: 2.3319013e-10, y: -4.6548138e-10, z: 0.0007721173, w: 0.9999997}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: LeftHand
parentName:
position: {x: -0.26449496, y: -0.0000000023841857, z: 0}
rotation: {x: -0.69131655, y: 0.04082255, z: 0.030838, w: 0.72073853}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: LeftThumb1
parentName:
position: {x: -0.02674324, y: 0.017545624, z: -0.02198472}
rotation: {x: 0.3924109, y: -0.3703508, z: 0.13225669, w: 0.8314819}
scale: {x: 0.9999999, y: 0.9999999, z: 1}
- name: LeftThumb2
parentName:
position: {x: -0.047266576, y: 0, z: 0}
rotation: {x: 0.00000011920922, y: -0.0000006258484, z: -0.041043956, w: 0.9991573}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: LeftThumb3
parentName:
position: {x: -0.035123214, y: -0.000000038146972, z: 0.00000015258789}
rotation: {x: 0.0000000074477784, y: -2.0434032e-10, z: -0.027426092, w: 0.99962384}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: Bip001 L Finger0Nub
parentName:
position: {x: -0.032481004, y: -0.000000038146972, z: 0}
rotation: {x: 1.110223e-16, y: -0.000000014901161, z: 0.000000007450581, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LeftIndex1
parentName:
position: {x: -0.09708961, y: -0.0023173522, z: -0.025497507}
rotation: {x: -0.0033670648, y: -0.039942566, z: -0.04782985, w: 0.9980509}
scale: {x: 0.9999999, y: 0.9999998, z: 1}
- name: LeftIndex2
parentName:
position: {x: -0.033342514, y: 0.00000015258789, z: -0.000000009536743}
rotation: {x: -1.119638e-10, y: -0.0000000058196896, z: -0.019235233, w: 0.999815}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: LeftIndex3
parentName:
position: {x: -0.028267898, y: 0, z: 0}
rotation: {x: -0.0000000018934834, y: 0.000000002714507, z: 0.011315952, w: 0.999936}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: Bip001 L Finger1Nub
parentName:
position: {x: -0.031239394, y: 0, z: -0.000000009536743}
rotation: {x: -0.0000000018626451, y: 0.000000002852175, z: 5.31259e-18, w: 1}
scale: {x: 1.0000001, y: 1, z: 1}
- name: LeftMiddle1
parentName:
position: {x: -0.10227058, y: -0.005095825, z: -0.00012608527}
rotation: {x: -0.0004119573, y: -0.00019026539, z: -0.05681684, w: 0.9983845}
scale: {x: 0.99999994, y: 1, z: 0.99999994}
- name: LeftMiddle2
parentName:
position: {x: -0.036035612, y: 0.00000015258789, z: 0}
rotation: {x: 0.000000001867785, y: -5.653657e-10, z: 0.008959068, w: 0.9999599}
scale: {x: 1, y: 1.0000001, z: 1}
- name: LeftMiddle3
parentName:
position: {x: -0.03146347, y: -0.00000015258789, z: 0}
rotation: {x: -0.0000000018695017, y: 1.2615843e-10, z: 0.041549757, w: 0.99913645}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Bip001 L Finger2Nub
parentName:
position: {x: -0.033252027, y: -0.00000015258789, z: 0}
rotation: {x: 0.0000000018626449, y: -2.910383e-10, z: 5.4210103e-19, w: 1}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: LeftPink1
parentName:
position: {x: -0.08984611, y: 0.007751617, z: 0.04868636}
rotation: {x: -0.05613842, y: 0.044704493, z: -0.038838666, w: 0.9966652}
scale: {x: 0.9999998, y: 1.0000001, z: 1}
- name: LeftPink2
parentName:
position: {x: -0.027551575, y: 0, z: -0.000000019073486}
rotation: {x: -0.0000000037140442, y: -0.0000000023462043, z: 0.004811689, w: 0.99998844}
scale: {x: 1, y: 1, z: 1}
- name: LeftPink3
parentName:
position: {x: -0.022705307, y: 0, z: 0.000000019073486}
rotation: {x: -2.1854539e-10, y: 0.000000014433847, z: 0.015139439, w: 0.99988544}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: Bip001 L Finger4Nub
parentName:
position: {x: -0.027051697, y: 0.00000015258789, z: 0}
rotation: {x: 1.7347235e-18, y: -4.656613e-10, z: 0.0000000037252903, w: 1}
scale: {x: 1, y: 1.0000001, z: 1}
- name: LeftRing1
parentName:
position: {x: -0.09988792, y: -0.0011738586, z: 0.025785293}
rotation: {x: -0.122048944, y: 0.035391387, z: -0.04585502, w: 0.9908324}
scale: {x: 1.0000001, y: 1, z: 1}
- name: LeftRing2
parentName:
position: {x: -0.035035703, y: 0, z: 0}
rotation: {x: -0.000000014865624, y: -0.0000000029772547, z: 0.012314411, w: 0.9999242}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: LeftRing3
parentName:
position: {x: -0.024122009, y: -0.00000015258789, z: 0}
rotation: {x: 0.000000007512988, y: -0.0000000026215328, z: 0.023044284, w: 0.99973446}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Bip001 L Finger3Nub
parentName:
position: {x: -0.031096954, y: 0, z: 0}
rotation: {x: 0, y: -0.0000000030267986, z: -0, w: 1}
scale: {x: 0.99999994, y: 1, z: 0.99999994}
- name: Joint
parentName:
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.00000008146034, y: 0, z: -0, w: 1}
scale: {x: 1.0774, y: 1.0774, z: 1.0774}
- name: Sword_Hold
parentName:
position: {x: -0.19077304, y: 1.036624, z: 0.012532081}
rotation: {x: -0.7020021, y: -0.026424231, z: -0.03709117, w: 0.71071726}
scale: {x: 1.0000001, y: 1.0000001, z: 0.9999998}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 0
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 3
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
|