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
|
fileFormatVersion: 2
guid: 8bf587af5af9e2f40a52b2a90ece2861
timeCreated: 1503593082
licenseType: Store
ModelImporter:
serializedVersion: 21
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: Chest
100030: Eye_L
100032: Eye_R
100034: Eyelash
100036: //RootNode
100038: Head
100040: Hips
100042: LeftArm
100044: LeftArm_Twist
100046: LeftFoot
100048: LeftForeArm
100050: LeftForeArm_Twist
100052: LeftHand
100054: LeftIndex1
100056: LeftIndex2
100058: LeftIndex3
100060: LeftLeg
100062: LeftLeg_Twist
100064: LeftMiddle1
100066: LeftMiddle2
100068: LeftMiddle3
100070: LeftPink1
100072: LeftPink2
100074: LeftPink3
100076: LeftRing1
100078: LeftRing2
100080: LeftRing3
100082: LeftShoulder
100084: LeftThumb1
100086: LeftThumb2
100088: LeftThumb3
100090: LeftToe
100092: LeftUpLeg
100094: LeftUpLeg_Twist
100096: Neck
100098: Ninja_M
100100: Pelvis
100102: RightArm
100104: RightArm_Twist
100106: RightFoot
100108: RightForeArm
100110: RightForeArm_Twist
100112: RightHand
100114: RightIndex1
100116: RightIndex2
100118: RightIndex3
100120: RightLeg
100122: RightLeg_Twist
100124: RightMiddle1
100126: RightMiddle2
100128: RightMiddle3
100130: RightPinky1
100132: RightPinky2
100134: RightPinky3
100136: RightRing1
100138: RightRing2
100140: RightRing3
100142: RightShoulder
100144: RightThumb1
100146: RightThumb2
100148: RightThumb3
100150: RightToe
100152: RightUpLeg
100154: RightUpLeg_Twist
100156: Spine
100158: Sword_Back
100160: Sword_Hand
100162: Sword_Hand_Bone
100164: Wood
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: Chest
400030: Eye_L
400032: Eye_R
400034: Eyelash
400036: //RootNode
400038: Head
400040: Hips
400042: LeftArm
400044: LeftArm_Twist
400046: LeftFoot
400048: LeftForeArm
400050: LeftForeArm_Twist
400052: LeftHand
400054: LeftIndex1
400056: LeftIndex2
400058: LeftIndex3
400060: LeftLeg
400062: LeftLeg_Twist
400064: LeftMiddle1
400066: LeftMiddle2
400068: LeftMiddle3
400070: LeftPink1
400072: LeftPink2
400074: LeftPink3
400076: LeftRing1
400078: LeftRing2
400080: LeftRing3
400082: LeftShoulder
400084: LeftThumb1
400086: LeftThumb2
400088: LeftThumb3
400090: LeftToe
400092: LeftUpLeg
400094: LeftUpLeg_Twist
400096: Neck
400098: Ninja_M
400100: Pelvis
400102: RightArm
400104: RightArm_Twist
400106: RightFoot
400108: RightForeArm
400110: RightForeArm_Twist
400112: RightHand
400114: RightIndex1
400116: RightIndex2
400118: RightIndex3
400120: RightLeg
400122: RightLeg_Twist
400124: RightMiddle1
400126: RightMiddle2
400128: RightMiddle3
400130: RightPinky1
400132: RightPinky2
400134: RightPinky3
400136: RightRing1
400138: RightRing2
400140: RightRing3
400142: RightShoulder
400144: RightThumb1
400146: RightThumb2
400148: RightThumb3
400150: RightToe
400152: RightUpLeg
400154: RightUpLeg_Twist
400156: Spine
400158: Sword_Back
400160: Sword_Hand
400162: Sword_Hand_Bone
400164: Wood
4300000: Ninja_M
4300002: Sword_Hand
4300004: Eyelash
4300006: Sword_Back
4300008: Wood
4300010: Eye_L
4300012: Eye_R
7400000: Guard_Hit_1
9500000: //RootNode
13700000: Eye_L
13700002: Eye_R
13700004: Eyelash
13700006: Ninja_M
13700008: Sword_Back
13700010: Sword_Hand
13700012: Wood
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
animationCompression: 3
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: Guard_Hit_1
takeName: Take 001
firstFrame: 1
lastFrame: 20
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: []
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
importAnimation: 1
copyAvatar: 1
humanDescription:
serializedVersion: 2
human:
- boneName: 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: 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: LeftToe
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: RightToe
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: 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: NinjaMale_Base(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: Eye_L
parentName: NinjaMale_Base(Clone)
position: {x: -0.030567273, y: 1.633515, z: 0.076888844}
rotation: {x: -0.7071068, y: 0.000000842937, z: 0.0000011801119, w: 0.7071068}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Eye_R
parentName: NinjaMale_Base(Clone)
position: {x: 0.028943224, y: 1.6335145, z: 0.07777499}
rotation: {x: -0.7071068, y: 0.000000842937, z: 0.0000011801119, w: 0.7071068}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Eyelash
parentName: NinjaMale_Base(Clone)
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: NinjaMale_Base(Clone)
position: {x: -0, y: 0.9580875, z: 0.0051780106}
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: Hips
position: {x: -0, y: 0, z: -0.9501469}
rotation: {x: 0, y: 0, z: -0.7071063, w: 0.70710725}
scale: {x: 1, y: 1, z: 1}
- name: Pelvis
parentName: Hips
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: LeftUpLeg
parentName: Pelvis
position: {x: 0.00000015258789, y: 0.0000001603365, z: 0.08567212}
rotation: {x: 0.0045964695, y: 0.9998878, z: 0.014149342, w: 0.0017513202}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: LeftLeg
parentName: LeftUpLeg
position: {x: -0.44082507, y: 2.9802322e-10, z: -0.000000009536743}
rotation: {x: -5.4636327e-11, y: 1.1638405e-10, z: 0.0005725632, w: 0.9999998}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: LeftLeg_Twist
parentName: LeftLeg
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.00045202256, y: 0, z: -0, w: 0.99999994}
scale: {x: 1.0000001, y: 1, z: 1}
- name: LeftFoot
parentName: LeftLeg
position: {x: -0.38519102, y: 5.9604643e-10, z: 0}
rotation: {x: -0.0008709556, y: 0.00921803, z: 0.003580417, w: 0.99995077}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: LeftToe
parentName: LeftFoot
position: {x: -0.124175206, y: 0.14198714, z: 0.000000009536743}
rotation: {x: 0.000000014734934, y: -0.000000015558117, z: -0.7071068, w: 0.7071068}
scale: {x: 1, y: 1, z: 1}
- name: Bip001 L Toe0Nub
parentName: LeftToe
position: {x: -0.06472373, y: 0, z: -0.000000019073486}
rotation: {x: -0.0000000011350494, y: 4.656613e-10, z: 1, w: 6.176089e-17}
scale: {x: -1, y: -1, z: -1}
- name: LeftUpLeg_Twist
parentName: LeftUpLeg
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.007070611, y: 2.328248e-10, z: -1.6462547e-12, w: 0.999975}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: RightUpLeg
parentName: Pelvis
position: {x: -0.00000015258789, y: -0.00000007688999, z: -0.08567212}
rotation: {x: 0.0045964518, y: 0.99988776, z: -0.014150738, w: -0.001752788}
scale: {x: 1, y: 1, z: 1}
- name: RightLeg
parentName: RightUpLeg
position: {x: -0.44082505, y: 2.9802322e-10, z: 0}
rotation: {x: -8.312113e-10, y: -1.1689126e-10, z: 0.00057256327, w: 0.9999998}
scale: {x: 1, y: 1.0000001, z: 1}
- name: RightLeg_Twist
parentName: RightLeg
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.000452031, y: 0, z: -0, w: 0.99999994}
scale: {x: 1, y: 1, z: 1}
- name: RightFoot
parentName: RightLeg
position: {x: -0.385191, y: 2.9802322e-10, z: 0}
rotation: {x: 0.0008709535, y: -0.009218116, z: 0.0035804196, w: 0.99995077}
scale: {x: 1, y: 1.0000001, z: 1}
- name: RightToe
parentName: RightFoot
position: {x: -0.124175206, y: 0.14198713, z: 0}
rotation: {x: -0.000000014415952, y: 0.000000015218554, z: -0.7071068, w: 0.7071068}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Bip001 R Toe0Nub
parentName: RightToe
position: {x: -0.06472373, y: 0, z: 0.000000009536743}
rotation: {x: 9.313226e-10, y: 1.74623e-10, z: -1.6263034e-19, w: 1}
scale: {x: 0.99999994, y: 1, z: 1}
- name: RightUpLeg_Twist
parentName: RightUpLeg
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.0070706126, y: -1.16412414e-10, z: -8.2312764e-13, w: 0.999975}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Spine
parentName: Pelvis
position: {x: -0.14233902, y: -0.0005098972, z: 0.00000019810278}
rotation: {x: -0.0000020756604, y: 0.00000068888943, z: 0.0064841323, w: 0.999979}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Chest
parentName: Spine
position: {x: -0.11572052, y: -0.00026075004, z: -7.23212e-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: Neck
parentName: Chest
position: {x: -0.30809683, y: -0.006468124, z: 0.00000001177651}
rotation: {x: -9.6328415e-14, y: 0.00000029454483, z: -0.106195845, w: 0.99434525}
scale: {x: 1, y: 1, z: 1}
- name: Head
parentName: Neck
position: {x: -0.047664642, y: 0.000000019073486, z: 0}
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: Head
position: {x: -0.19644485, y: 0, z: 0}
rotation: {x: -1.7763568e-14, y: 1.323489e-22, z: -0.000000007450581, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LeftShoulder
parentName: Chest
position: {x: -0.27119118, y: -0.021596244, z: 0.052525565}
rotation: {x: -0.6234111, y: -0.0002493036, z: 0.78189415, w: -0.00031044902}
scale: {x: 1.0000001, y: 1, z: 1.0000001}
- name: LeftArm
parentName: LeftShoulder
position: {x: -0.14830443, y: 0.000000007152557, z: 0}
rotation: {x: 0.014202496, y: 0.080921695, z: 0.0043114848, w: 0.99661}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: LeftForeArm
parentName: LeftArm
position: {x: -0.22650932, y: 0, z: 0}
rotation: {x: -7.368534e-12, y: 0.000000009313223, z: 0.0007911902, w: 0.9999997}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: LeftHand
parentName: LeftForeArm
position: {x: -0.24112572, y: 0, z: -0.00000015258789}
rotation: {x: -0.690262, y: 0.055906318, z: 0.046541456, w: 0.7198936}
scale: {x: 1, y: 1.0000001, z: 1}
- name: LeftPink1
parentName: LeftHand
position: {x: -0.10570152, y: 0.011066437, z: 0.04698923}
rotation: {x: -0.09337108, y: 0.04721924, z: -0.059583962, w: 0.9927245}
scale: {x: 1, y: 1.0000002, z: 1.0000001}
- name: LeftPink2
parentName: LeftPink1
position: {x: -0.03632118, y: 0.00000015258789, z: 0}
rotation: {x: -7.402909e-11, y: 0.000000006518838, z: 0.011355448, w: 0.99993557}
scale: {x: 1, y: 1, z: 0.99999994}
- name: LeftPink3
parentName: LeftPink2
position: {x: -0.022705307, y: -0.00000015258789, z: -0.000000019073486}
rotation: {x: -8.459823e-11, y: 0.0000000055872955, z: 0.015139442, w: 0.99988544}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Bip001 L Finger4Nub
parentName: LeftPink3
position: {x: -0.021171875, y: 0, z: 0.000000038146972}
rotation: {x: 0, y: 0.000000004656613, z: -0, w: 1}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: LeftRing1
parentName: LeftHand
position: {x: -0.1131945, y: 0.0015382385, z: 0.02408224}
rotation: {x: -0.12357253, y: 0.036746763, z: -0.070551775, w: 0.98914206}
scale: {x: 1.0000002, y: 1.0000001, z: 1.0000002}
- name: LeftRing2
parentName: LeftRing1
position: {x: -0.04306221, y: -0.00000015258789, z: 0}
rotation: {x: 2.2937367e-11, y: -0.0000000018625038, z: 0.012314407, w: 0.9999242}
scale: {x: 1.0000001, y: 1, z: 1}
- name: LeftRing3
parentName: LeftRing2
position: {x: -0.022276534, y: 0, z: 0.000000038146972}
rotation: {x: 3.21925e-11, y: -0.0000000013966128, z: 0.02304429, w: 0.99973446}
scale: {x: 1, y: 1, z: 1}
- name: Bip001 L Finger3Nub
parentName: LeftRing3
position: {x: -0.03176468, y: 0, z: 0}
rotation: {x: 0, y: -0.0000000013969839, z: -0, w: 1}
scale: {x: 1, y: 1.0000001, z: 1}
- name: LeftMiddle1
parentName: LeftHand
position: {x: -0.11446472, y: 0.00050735474, z: -0.0020517253}
rotation: {x: -0.00039666172, y: -0.000034458975, z: -0.08654579, w: 0.9962478}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: LeftMiddle2
parentName: LeftMiddle1
position: {x: -0.037536774, y: -0.00000015258789, z: 0.0000000047683715}
rotation: {x: 1.0429725e-12, y: -1.1641063e-10, z: 0.008959067, w: 0.9999599}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: LeftMiddle3
parentName: LeftMiddle2
position: {x: -0.031830445, y: -0.00000015258789, z: 0}
rotation: {x: -9.674056e-12, y: 2.3262957e-10, z: 0.041549753, w: 0.99913645}
scale: {x: 1, y: 1, z: 1}
- name: Bip001 L Finger2Nub
parentName: LeftMiddle3
position: {x: -0.040300902, y: 0, z: -0.0000000047683715}
rotation: {x: 0, y: -2.9103827e-11, z: -0, w: 1}
scale: {x: 1.0000001, y: 1, z: 1}
- name: LeftIndex1
parentName: LeftHand
position: {x: -0.11387634, y: 0.00039413452, z: -0.028600726}
rotation: {x: -0.002269054, y: -0.044519577, z: -0.07809429, w: 0.9959489}
scale: {x: 1.0000001, y: 1, z: 1.0000001}
- name: LeftIndex2
parentName: LeftIndex1
position: {x: -0.03334259, y: 0.00000015258789, z: 0}
rotation: {x: -0.0000000017592938, y: 0.0000000053899423, z: -0.019235227, w: 0.999815}
scale: {x: 1, y: 1, z: 1.0000001}
- name: LeftIndex3
parentName: LeftIndex2
position: {x: -0.028267898, y: 0, z: 0.000000009536743}
rotation: {x: -0.00000000191522, y: 0.000000004635237, z: 0.011315951, w: 0.999936}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Bip001 L Finger1Nub
parentName: LeftIndex3
position: {x: -0.031239318, y: -0.00000015258789, z: 0}
rotation: {x: 0.0000000018626454, y: 0.0000000011641532, z: -2.1684046e-18,
w: 1}
scale: {x: 1, y: 0.99999994, z: 1.0000001}
- name: LeftThumb1
parentName: LeftHand
position: {x: -0.039426114, y: 0.025805358, z: -0.017465848}
rotation: {x: 0.38256645, y: -0.39484167, z: 0.11545864, w: 0.8272921}
scale: {x: 1.0000001, y: 1, z: 1.0000001}
- name: LeftThumb2
parentName: LeftThumb1
position: {x: -0.047266692, y: 0, z: 0}
rotation: {x: 0.000000089406946, y: -0.00000080466253, z: -0.03950951, w: 0.9992192}
scale: {x: 0.99999994, y: 1, z: 1}
- name: LeftThumb3
parentName: LeftThumb2
position: {x: -0.03309593, y: -0.00000015258789, z: 0.00000015258789}
rotation: {x: 0.00000008718287, y: 0.00000074480977, z: -0.04044291, w: 0.99918187}
scale: {x: 0.9999999, y: 1, z: 1}
- name: Bip001 L Finger0Nub
parentName: LeftThumb3
position: {x: -0.037718236, 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: LeftForeArm_Twist
parentName: LeftForeArm
position: {x: -0, y: 0, z: 0}
rotation: {x: 0.010210446, y: 2.8230493e-12, z: 2.76472e-10, w: 0.9999479}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: LeftArm_Twist
parentName: LeftArm
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.000000007479685, y: 1.3741522e-18, z: -1.8371793e-10, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RightShoulder
parentName: Chest
position: {x: -0.27119118, y: -0.021595951, z: -0.05252569}
rotation: {x: 0.6234111, y: 0.00024713538, z: 0.78189415, w: -0.00031217866}
scale: {x: 1.0000001, y: 1, z: 1.0000001}
- name: RightArm
parentName: RightShoulder
position: {x: -0.14830442, y: -0.0000000023841857, z: 0}
rotation: {x: -0.014202495, y: -0.0809217, z: 0.0043114848, w: 0.99661}
scale: {x: 1, y: 1.0000002, z: 1.0000001}
- name: RightForeArm
parentName: RightArm
position: {x: -0.22650936, y: 0, z: 0}
rotation: {x: 3.6472353e-11, y: -0.000000009313199, z: 0.0007911901, w: 0.9999997}
scale: {x: 1.0000001, y: 1, z: 1}
- name: RightForeArm_Twist
parentName: RightForeArm
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.010210439, y: -0.0000000018606167, z: -2.0818347e-10, w: 0.9999479}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: RightHand
parentName: RightForeArm
position: {x: -0.24112575, y: 0, z: 0}
rotation: {x: 0.690262, y: -0.05590632, z: 0.046541456, w: 0.7198936}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: RightPinky1
parentName: RightHand
position: {x: -0.105701596, y: 0.011066437, z: -0.04698922}
rotation: {x: 0.09337119, y: -0.047219776, z: -0.059584327, w: 0.9927244}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: RightPinky2
parentName: RightPinky1
position: {x: -0.03632118, y: 0.00000015258789, z: -0.000000019073486}
rotation: {x: -0.0000000074606765, y: 8.466579e-10, z: 0.011355448, w: 0.99993557}
scale: {x: 1, y: 1, z: 0.9999999}
- name: RightPinky3
parentName: RightPinky2
position: {x: -0.02270523, y: -0.00000015258789, z: 0.000000019073486}
rotation: {x: 6.344867e-11, y: -0.000000004190472, z: 0.015139442, w: 0.99988544}
scale: {x: 1, y: 1, z: 1}
- name: Bip001 R Finger4Nub
parentName: RightPinky3
position: {x: -0.021171799, y: 0.00000015258789, z: 0}
rotation: {x: -0.000000003259629, y: 1.9959471e-25, z: 1, w: 6.123234e-17}
scale: {x: -1, y: -1, z: -0.99999994}
- name: RightRing1
parentName: RightHand
position: {x: -0.1131945, y: 0.0015382385, z: -0.02408223}
rotation: {x: 0.12357277, y: -0.036746345, z: -0.07054955, w: 0.9891422}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: RightRing2
parentName: RightRing1
position: {x: -0.043062285, y: 0, z: 0.000000038146972}
rotation: {x: -0.000000007461484, y: 8.3950236e-10, z: 0.012314415, w: 0.9999242}
scale: {x: 1.0000001, y: 1, z: 1}
- name: RightRing3
parentName: RightRing2
position: {x: -0.02227661, y: 0, z: -0.000000038146972}
rotation: {x: -2.0388584e-10, y: 0.000000008845214, z: 0.023044292, w: 0.99973446}
scale: {x: 1.0000001, y: 1, z: 1}
- name: Bip001 R Finger3Nub
parentName: RightRing3
position: {x: -0.031764753, y: 0, z: 0}
rotation: {x: 0.0000000055879354, y: -0.0000000074505797, z: 1, w: 1.028657e-16}
scale: {x: -1, y: -1.0000001, z: -1}
- name: RightMiddle1
parentName: RightHand
position: {x: -0.11446464, y: 0.00050735474, z: 0.0020517253}
rotation: {x: 0.00039666172, y: 0.00003445898, z: -0.08654578, w: 0.9962478}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: RightMiddle2
parentName: RightMiddle1
position: {x: -0.037536774, y: -0.00000015258789, z: -0.0000000047683715}
rotation: {x: -0.000000001863613, y: 9.972308e-11, z: 0.008959067, w: 0.9999599}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: RightMiddle3
parentName: RightMiddle2
position: {x: -0.031830292, y: 0, z: 0}
rotation: {x: 1.08833125e-11, y: -2.6170827e-10, z: 0.041549753, w: 0.99913645}
scale: {x: 1, y: 1, z: 1}
- name: Bip001 R Finger2Nub
parentName: RightMiddle3
position: {x: -0.04030098, y: 0, z: 0}
rotation: {x: -1.45519135e-11, y: 0.0000000018626451, z: 1, w: 6.125945e-17}
scale: {x: -1.0000001, y: -1, z: -1}
- name: RightIndex1
parentName: RightHand
position: {x: -0.11387626, y: 0.00039413452, z: 0.028600726}
rotation: {x: 0.0022690534, y: 0.04451957, z: -0.07809428, w: 0.9959489}
scale: {x: 1, y: 0.99999994, z: 1}
- name: RightIndex2
parentName: RightIndex1
position: {x: -0.03334259, y: 0.00000015258789, z: 0.000000009536743}
rotation: {x: -1.0300663e-10, y: -0.0000000053541136, z: -0.019235224, w: 0.999815}
scale: {x: 1, y: 1, z: 1.0000001}
- name: RightIndex3
parentName: RightIndex2
position: {x: -0.028267745, y: 0, z: -0.000000009536743}
rotation: {x: -0.0000000018519871, y: -9.523405e-10, z: 0.011315947, w: 0.999936}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Bip001 R Finger1Nub
parentName: RightIndex3
position: {x: -0.031239318, y: 0, z: 0}
rotation: {x: -9.3132246e-10, y: 0.0000000018626451, z: 1, w: 6.2967066e-17}
scale: {x: -1.0000001, y: -1, z: -1}
- name: RightThumb1
parentName: RightHand
position: {x: -0.039426114, y: 0.025805358, z: 0.017465843}
rotation: {x: -0.38256586, y: 0.39483982, z: 0.11545945, w: 0.82729316}
scale: {x: 1, y: 0.9999999, z: 1.0000001}
- name: RightThumb2
parentName: RightThumb1
position: {x: -0.047266692, y: 0.000000038146972, z: 0}
rotation: {x: -0, y: -0.00000020861623, z: -0.039506983, w: 0.99921936}
scale: {x: 1, y: 1, z: 1.0000001}
- name: RightThumb3
parentName: RightThumb2
position: {x: -0.03309597, y: -0.00000015258789, z: 0}
rotation: {x: 0.0000000918536, y: 0.0000004806705, z: -0.040445264, w: 0.9991818}
scale: {x: 1, y: 1, z: 1}
- name: Bip001 R Finger0Nub
parentName: RightThumb3
position: {x: -0.0377182, y: 0.000000076293944, z: 0}
rotation: {x: 0.000000014901161, y: -0.000000014901161, z: 1, w: -0.000000014901161}
scale: {x: -1, y: -1, z: -1.0000001}
- name: RightArm_Twist
parentName: RightArm
position: {x: -0.000000038146972, y: 0, z: 0}
rotation: {x: 0, y: 0, z: -6.493792e-10, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Ninja_M
parentName: NinjaMale_Base(Clone)
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: Sword_Back
parentName: NinjaMale_Base(Clone)
position: {x: -0.034275364, y: 1.289994, z: -0.0000000035762786}
rotation: {x: -0.7071068, y: 2.266821e-15, z: -2.757475e-15, w: 0.7071068}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Sword_Hand
parentName: NinjaMale_Base(Clone)
position: {x: 0.7551957, y: 1.3923198, z: -0.010908074}
rotation: {x: -0.707107, y: 0.00000006181724, z: 1.7440496e-14, w: 0.7071066}
scale: {x: 1, y: 1, z: 1}
- name: Sword_Hand_Bone
parentName: NinjaMale_Base(Clone)
position: {x: 0.76235676, y: 1.3898951, z: -0.050315008}
rotation: {x: -0.71301794, y: 0.019965304, z: 0.04225176, w: 0.69958675}
scale: {x: 1.0000006, y: 1.0000002, z: 0.99999976}
- name: Wood
parentName: NinjaMale_Base(Clone)
position: {x: -0.12224159, y: 1.1692433, z: -0.000000001490116}
rotation: {x: -0.7071068, y: 2.266821e-15, z: -2.757475e-15, w: 0.7071068}
scale: {x: 1, y: 1, z: 1.0000001}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
rootMotionBoneName:
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1}
hasTranslationDoF: 0
hasExtraRoot: 1
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: cc7aca7dd7fa6d641a778e40737a5906,
type: 3}
animationType: 3
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
|