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
|
fileFormatVersion: 2
guid: 6325869fbd696504ea445ec8a24d2a20
ModelImporter:
serializedVersion: 23
fileIDToRecycleName:
100000: Armature
100002: Body
100004: Chest
100006: //RootNode
100008: Eye_L
100010: Eye_R
100012: Head
100014: Hips
100016: IndexFinger1_L
100018: IndexFinger1_R
100020: IndexFinger2_L
100022: IndexFinger2_R
100024: IndexFinger3_L
100026: IndexFinger3_R
100028: Left ankle
100030: Left arm
100032: Left elbow
100034: Left knee
100036: Left leg
100038: Left shoulder
100040: Left toe
100042: Left wrist
100044: LeftEye
100046: LittleFinger1_L
100048: LittleFinger1_R
100050: LittleFinger2_L
100052: LittleFinger2_R
100054: LittleFinger3_L
100056: LittleFinger3_R
100058: Loin_Cloth
100060: Loin_Cloth_1
100062: Loin_Cloth_10
100064: Loin_Cloth_2
100066: Loin_Cloth_3
100068: Loin_Cloth_4
100070: Loin_Cloth_5
100072: Loin_Cloth_7
100074: Loin_Cloth_8
100076: Loin_Cloth_9
100078: M_Loin_Cloth
100080: M_Loin_Cloth_1
100082: M_Loin_Cloth_10
100084: M_Loin_Cloth_11
100086: M_Loin_Cloth_2
100088: M_Loin_Cloth_3
100090: M_Loin_Cloth_4
100092: M_Loin_Cloth_5
100094: M_Loin_Cloth_6
100096: M_Loin_Cloth_7
100098: M_Loin_Cloth_8
100100: M_Loin_Cloth_9
100102: MiddleFinger1_L
100104: MiddleFinger1_R
100106: MiddleFinger2_L
100108: MiddleFinger2_R
100110: MiddleFinger3_L
100112: MiddleFinger3_R
100114: Neck
100116: Right ankle
100118: Right arm
100120: Right elbow
100122: Right knee
100124: Right leg
100126: Right shoulder
100128: Right toe
100130: Right wrist
100132: RightEye
100134: RingFinger1_L
100136: RingFinger1_R
100138: RingFinger2_L
100140: RingFinger2_R
100142: RingFinger3_L
100144: RingFinger3_R
100146: Spine
100148: Tassel
100150: Tassel_1
100152: Tassel_2
100154: Tassel_3
100156: Thumb0_L
100158: Thumb0_R
100160: Thumb1_L
100162: Thumb1_R
100164: Thumb2_L
100166: Thumb2_R
100168: ZArmTwist_L
100170: ZArmTwist_R
100172: ZHandTwist_L
100174: ZHandTwist_R
400000: Armature
400002: Body
400004: Chest
400006: //RootNode
400008: Eye_L
400010: Eye_R
400012: Head
400014: Hips
400016: IndexFinger1_L
400018: IndexFinger1_R
400020: IndexFinger2_L
400022: IndexFinger2_R
400024: IndexFinger3_L
400026: IndexFinger3_R
400028: Left ankle
400030: Left arm
400032: Left elbow
400034: Left knee
400036: Left leg
400038: Left shoulder
400040: Left toe
400042: Left wrist
400044: LeftEye
400046: LittleFinger1_L
400048: LittleFinger1_R
400050: LittleFinger2_L
400052: LittleFinger2_R
400054: LittleFinger3_L
400056: LittleFinger3_R
400058: Loin_Cloth
400060: Loin_Cloth_1
400062: Loin_Cloth_10
400064: Loin_Cloth_2
400066: Loin_Cloth_3
400068: Loin_Cloth_4
400070: Loin_Cloth_5
400072: Loin_Cloth_7
400074: Loin_Cloth_8
400076: Loin_Cloth_9
400078: M_Loin_Cloth
400080: M_Loin_Cloth_1
400082: M_Loin_Cloth_10
400084: M_Loin_Cloth_11
400086: M_Loin_Cloth_2
400088: M_Loin_Cloth_3
400090: M_Loin_Cloth_4
400092: M_Loin_Cloth_5
400094: M_Loin_Cloth_6
400096: M_Loin_Cloth_7
400098: M_Loin_Cloth_8
400100: M_Loin_Cloth_9
400102: MiddleFinger1_L
400104: MiddleFinger1_R
400106: MiddleFinger2_L
400108: MiddleFinger2_R
400110: MiddleFinger3_L
400112: MiddleFinger3_R
400114: Neck
400116: Right ankle
400118: Right arm
400120: Right elbow
400122: Right knee
400124: Right leg
400126: Right shoulder
400128: Right toe
400130: Right wrist
400132: RightEye
400134: RingFinger1_L
400136: RingFinger1_R
400138: RingFinger2_L
400140: RingFinger2_R
400142: RingFinger3_L
400144: RingFinger3_R
400146: Spine
400148: Tassel
400150: Tassel_1
400152: Tassel_2
400154: Tassel_3
400156: Thumb0_L
400158: Thumb0_R
400160: Thumb1_L
400162: Thumb1_R
400164: Thumb2_L
400166: Thumb2_R
400168: ZArmTwist_L
400170: ZArmTwist_R
400172: ZHandTwist_L
400174: ZHandTwist_R
2100000: Expressions
2100002: Body04
2100004: eye whites
2100006: loin cloth
2100008: eyes
2100010: hair
4300000: Body
9500000: //RootNode
13700000: Body
2186277476908879412: ImportLogs
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: []
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: 1
hasPreviousCalculatedGlobalScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
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: Left leg
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: Right leg
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: Left knee
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: Right knee
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: Left ankle
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: Right ankle
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: Left shoulder
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: Right shoulder
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: Left arm
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: Right arm
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: Left elbow
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: Right elbow
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: Left wrist
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: Right wrist
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: Left toe
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: Right toe
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: LeftEye
humanName: LeftEye
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: RightEye
humanName: RightEye
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: Thumb0_L
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: Thumb1_L
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: Thumb2_L
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: IndexFinger1_L
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: IndexFinger2_L
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: IndexFinger3_L
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: MiddleFinger1_L
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: MiddleFinger2_L
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: MiddleFinger3_L
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: RingFinger1_L
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: RingFinger2_L
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: RingFinger3_L
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: LittleFinger1_L
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: LittleFinger2_L
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: LittleFinger3_L
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: Thumb0_R
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: Thumb1_R
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: Thumb2_R
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: IndexFinger1_R
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: IndexFinger2_R
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: IndexFinger3_R
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: MiddleFinger1_R
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: MiddleFinger2_R
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: MiddleFinger3_R
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: RingFinger1_R
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: RingFinger2_R
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: RingFinger3_R
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: LittleFinger1_R
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: LittleFinger2_R
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: LittleFinger3_R
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: chongyun new(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: Armature
parentName: chongyun new(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 1, y: 1, z: 1}
- name: Hips
parentName: Armature
position: {x: -0, y: -0.059121806, z: 0.9097583}
rotation: {x: 0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 1, y: 1, z: 1}
- name: Spine
parentName: Hips
position: {x: -0.000000005010907, y: 0.04949951, z: 0.00000079348683}
rotation: {x: 0.0049439752, y: 0, z: -0, w: 0.9999878}
scale: {x: 1, y: 1, z: 1}
- name: Chest
parentName: Spine
position: {x: 8.881784e-16, y: 0.15597026, z: -0.0000000027939677}
rotation: {x: -0.059468374, y: 1.1285903e-15, z: 1.1174856e-15, w: 0.9982302}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Neck
parentName: Chest
position: {x: 4.4473084e-16, y: 0.187756, z: -0.0000000037252903}
rotation: {x: 0.1364814, y: -1.2051243e-15, z: -1.0740486e-15, w: 0.99064267}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Head
parentName: Neck
position: {x: -1.3141311e-16, y: 0.088802464, z: -0.0000000037252903}
rotation: {x: -0.08225614, y: -7.78182e-18, z: 6.4227685e-19, w: 0.99661124}
scale: {x: 1, y: 0.9999998, z: 0.9999999}
- name: Eye_R
parentName: Head
position: {x: 0.024049446, y: 0.066357255, z: 0.020640079}
rotation: {x: 0.1602363, y: 0.6969577, z: 0.69695723, w: -0.05314969}
scale: {x: 1, y: 0.9999999, z: 1}
- name: Eye_L
parentName: Head
position: {x: -0.024049507, y: 0.066357255, z: 0.020640079}
rotation: {x: -0.16023622, y: 0.69695765, z: 0.69695747, w: 0.053149085}
scale: {x: 1, y: 1, z: 1}
- name: LeftEye
parentName: Head
position: {x: -0.02777645, y: 0.06616211, z: 0.027824279}
rotation: {x: 0.000000009313224, y: 4.910897e-25, z: -8.9055e-31, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RightEye
parentName: Head
position: {x: 0.027776387, y: 0.06616211, z: 0.027824279}
rotation: {x: 0.000000009313224, y: 4.910897e-25, z: -8.9055e-31, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Right shoulder
parentName: Chest
position: {x: 0.032510128, y: 0.17357698, z: -0.012024334}
rotation: {x: 0.62368, y: 0.44259062, z: 0.49372643, w: -0.41396984}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Right arm
parentName: Right shoulder
position: {x: -0.000000031664968, y: 0.08845036, z: 0.0000000060535967}
rotation: {x: 0.08898675, y: -0.19570619, z: -0.07096248, w: 0.9740353}
scale: {x: 1, y: 1, z: 0.99999994}
- name: ZArmTwist_R
parentName: Right arm
position: {x: -0.0020178705, y: 0.1382896, z: -0.005969204}
rotation: {x: 0.027084252, y: 0.03607274, z: -0.026743064, w: 0.9986241}
scale: {x: 0.9999999, y: 0.99999994, z: 0.9999999}
- name: Right elbow
parentName: Right arm
position: {x: 0.000000026077032, y: 0.21639615, z: -0.000000039115548}
rotation: {x: 0.014074315, y: 0.03317788, z: -0.037880283, w: 0.9986322}
scale: {x: 0.99999994, y: 1, z: 0.9999999}
- name: ZHandTwist_R
parentName: Right elbow
position: {x: 0.00000006053597, y: 0.114313915, z: 0.00000014901161}
rotation: {x: -0.00000051775714, y: -0.0000004805625, z: 0.000000092899434,
w: 1}
scale: {x: 0.99999994, y: 1, z: 0.9999999}
- name: Right wrist
parentName: Right elbow
position: {x: 0.000000006519258, y: 0.1905233, z: -0.0000000055879354}
rotation: {x: 0.021601684, y: -0.014116259, z: 0.02684852, w: 0.9993064}
scale: {x: 0.9999999, y: 1, z: 1}
- name: Thumb0_R
parentName: Right wrist
position: {x: 0.010099536, y: 0.02543324, z: -0.020309323}
rotation: {x: -0.48464626, y: -0.5658395, z: 0.0105829, w: 0.666957}
scale: {x: 1, y: 1.0000002, z: 1.0000002}
- name: Thumb1_R
parentName: Thumb0_R
position: {x: -0.0000000081490725, y: 0.026441257, z: -0.000000063329935}
rotation: {x: 0.037207007, y: 0.059483767, z: -0.001816988, w: 0.99753404}
scale: {x: 1, y: 1, z: 1}
- name: Thumb2_R
parentName: Thumb1_R
position: {x: -0.0000000037252903, y: 0.037135225, z: -0.000000029802322}
rotation: {x: -0.08340601, y: -0.042988673, z: 0.0058252746, w: 0.99557096}
scale: {x: 0.99999994, y: 1, z: 1}
- name: IndexFinger1_R
parentName: Right wrist
position: {x: 0.014380287, y: 0.07898871, z: -0.03252518}
rotation: {x: -0.09746943, y: 0.013553162, z: -0.06882091, w: 0.99276376}
scale: {x: 1, y: 1.0000001, z: 1}
- name: IndexFinger2_R
parentName: IndexFinger1_R
position: {x: -0.000000029802322, y: 0.027553748, z: -0.00000008195639}
rotation: {x: 0.0074998275, y: 0.012393549, z: -0.0056583574, w: 0.99987906}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: IndexFinger3_R
parentName: IndexFinger2_R
position: {x: 0.00000009313226, y: 0.02126773, z: -0.00000006519258}
rotation: {x: 0.03500387, y: 0.055181116, z: -0.022902371, w: 0.9975998}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: MiddleFinger1_R
parentName: Right wrist
position: {x: -0.0021479307, y: 0.08578557, z: -0.01662049}
rotation: {x: -0.044008847, y: 0.024344077, z: -0.053482708, w: 0.99730146}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger2_R
parentName: MiddleFinger1_R
position: {x: -0.000000030733645, y: 0.030344492, z: -0.000000088475645}
rotation: {x: -0.00335998, y: -0.0046686847, z: 0.0027339957, w: 0.99997973}
scale: {x: 1.0000001, y: 0.99999994, z: 1}
- name: MiddleFinger3_R
parentName: MiddleFinger2_R
position: {x: 0.000000011175871, y: 0.02535819, z: -0.000000095926225}
rotation: {x: 0.018522302, y: 0.025333816, z: -0.014419117, w: 0.9994034}
scale: {x: 0.9999999, y: 0.9999999, z: 0.9999999}
- name: RingFinger1_R
parentName: Right wrist
position: {x: -0.020304807, y: 0.082587786, z: -0.006723049}
rotation: {x: -0.017590255, y: 0.032640453, z: 0.01882535, w: 0.999135}
scale: {x: 1.0000001, y: 1, z: 1}
- name: RingFinger2_R
parentName: RingFinger1_R
position: {x: -0.000000067055225, y: 0.030430878, z: -0.000000055879354}
rotation: {x: 0.012778151, y: 0.011981635, z: -0.00720059, w: 0.99982065}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: RingFinger3_R
parentName: RingFinger2_R
position: {x: -0.000000074505806, y: 0.025161047, z: 0.000000059604645}
rotation: {x: 0.024893027, y: 0.022873566, z: -0.01290347, w: 0.9993451}
scale: {x: 0.9999999, y: 0.9999998, z: 0.9999998}
- name: LittleFinger1_R
parentName: Right wrist
position: {x: -0.029942209, y: 0.066547684, z: 0.0041777166}
rotation: {x: -0.048619557, y: -0.096254654, z: 0.08363384, w: 0.9906446}
scale: {x: 1, y: 1, z: 1}
- name: LittleFinger2_R
parentName: LittleFinger1_R
position: {x: -0.000000013038516, y: 0.028648047, z: -0.000000063329935}
rotation: {x: -0.0320599, y: -0.0012249645, z: -0.025410773, w: 0.99916214}
scale: {x: 1, y: 1, z: 0.9999999}
- name: LittleFinger3_R
parentName: LittleFinger2_R
position: {x: 0.000000016763806, y: 0.01735645, z: -0.00000008381903}
rotation: {x: 0.04056981, y: 0.03954091, z: -0.035238385, w: 0.997772}
scale: {x: 0.99999994, y: 0.99999994, z: 0.9999998}
- name: Left shoulder
parentName: Chest
position: {x: -0.03251013, y: 0.17357698, z: -0.012024334}
rotation: {x: 0.62368, y: -0.44259062, z: -0.49372643, w: -0.41396984}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Left arm
parentName: Left shoulder
position: {x: 0.000000028871, y: 0.08845032, z: 0.000000011641532}
rotation: {x: 0.08898683, y: 0.1957059, z: 0.07096273, w: 0.9740354}
scale: {x: 1, y: 1, z: 0.99999994}
- name: ZArmTwist_L
parentName: Left arm
position: {x: 0.002017824, y: 0.13828932, z: -0.005969106}
rotation: {x: 0.027084112, y: -0.03607263, z: 0.026743105, w: 0.9986241}
scale: {x: 0.9999998, y: 1, z: 1}
- name: Left elbow
parentName: Left arm
position: {x: 0.000000039115548, y: 0.21639597, z: 0.000000017695129}
rotation: {x: 0.014074298, y: -0.03317805, z: 0.03788078, w: 0.9986322}
scale: {x: 0.9999999, y: 0.9999998, z: 0.9999999}
- name: ZHandTwist_L
parentName: Left elbow
position: {x: -0.000000099651515, y: 0.11431404, z: 0.00000010896474}
rotation: {x: -0.0000005183974, y: 0.00000062957406, z: -0.0000004937174, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Left wrist
parentName: Left elbow
position: {x: -0.000000034458935, y: 0.19052336, z: 0.0000000121071935}
rotation: {x: 0.00872229, y: 0.013572354, z: -0.03595148, w: 0.99922335}
scale: {x: 1, y: 1, z: 1}
- name: Thumb0_L
parentName: Left wrist
position: {x: -0.0100986995, y: 0.025434677, z: -0.020310393}
rotation: {x: -0.4873935, y: 0.57132816, z: 0.00044314418, w: 0.66032696}
scale: {x: 1.0000002, y: 1.0000001, z: 1}
- name: Thumb1_L
parentName: Thumb0_L
position: {x: 2.3283064e-10, y: 0.026441427, z: -0.000000024214387}
rotation: {x: 0.040638432, y: -0.02548938, z: 0.0015586907, w: 0.9988476}
scale: {x: 0.99999994, y: 0.9999999, z: 1}
- name: Thumb2_L
parentName: Thumb1_L
position: {x: 0.000000044703484, y: 0.032822505, z: -0.000000022351742}
rotation: {x: 0.03898676, y: -0.16588488, z: 0.054613117, w: 0.9838596}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: IndexFinger1_L
parentName: Left wrist
position: {x: -0.017570943, y: 0.08322275, z: -0.0341447}
rotation: {x: -0.07893427, y: -0.01521825, z: 0.093847305, w: 0.992336}
scale: {x: 1, y: 1.0000001, z: 1}
- name: IndexFinger2_L
parentName: IndexFinger1_L
position: {x: 0.000000029802322, y: 0.027553543, z: -0.000000048428774}
rotation: {x: 0.007944346, y: -0.011733179, z: 0.005036022, w: 0.99988693}
scale: {x: 1, y: 1, z: 0.99999994}
- name: IndexFinger3_L
parentName: IndexFinger2_L
position: {x: 0.000000011175871, y: 0.021267409, z: -0.000000014901161}
rotation: {x: 0.03669275, y: -0.05193403, z: 0.020062653, w: 0.99777454}
scale: {x: 0.99999994, y: 1, z: 0.99999994}
- name: MiddleFinger1_L
parentName: Left wrist
position: {x: -0.0018695425, y: 0.08493584, z: -0.014192085}
rotation: {x: -0.011868665, y: -0.023418268, z: 0.057797313, w: 0.9979831}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: MiddleFinger2_L
parentName: MiddleFinger1_L
position: {x: -0.000000019557774, y: 0.030344198, z: -0.000000038184226}
rotation: {x: -0.0035077932, y: 0.0044706743, z: -0.0025288987, w: 0.9999807}
scale: {x: 0.9999999, y: 0.99999994, z: 0.99999994}
- name: MiddleFinger3_L
parentName: MiddleFinger2_L
position: {x: -0.00000004284084, y: 0.025358211, z: 0.000000034458935}
rotation: {x: 0.019304726, y: -0.024273042, z: 0.013355199, w: 0.99942976}
scale: {x: 1, y: 1, z: 0.99999994}
- name: RingFinger1_L
parentName: Left wrist
position: {x: 0.020945894, y: 0.0781192, z: -0.0070226206}
rotation: {x: -0.0059372634, y: -0.033721156, z: -0.008062973, w: 0.9993811}
scale: {x: 1, y: 1.0000001, z: 0.9999999}
- name: RingFinger2_L
parentName: RingFinger1_L
position: {x: 0.000000057742, y: 0.030430742, z: 0.000000040512532}
rotation: {x: 0.012779021, y: -0.011981359, z: 0.00719844, w: 0.99982065}
scale: {x: 1.0000001, y: 1, z: 1}
- name: RingFinger3_L
parentName: RingFinger2_L
position: {x: -0.0000000027939677, y: 0.025161142, z: 0.000000006519258}
rotation: {x: 0.024895618, y: -0.022876455, z: 0.0129062245, w: 0.99934494}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: LittleFinger1_L
parentName: Left wrist
position: {x: 0.028295487, y: 0.068473436, z: 0.006131525}
rotation: {x: -0.04506312, y: 0.09503217, z: -0.06265641, w: 0.99247795}
scale: {x: 1, y: 1, z: 1}
- name: LittleFinger2_L
parentName: LittleFinger1_L
position: {x: 0.000000009313226, y: 0.02864796, z: -0.000000016763806}
rotation: {x: -0.029716898, y: 0.007408625, z: 0.010595164, w: 0.99947476}
scale: {x: 0.9999999, y: 1, z: 0.9999999}
- name: LittleFinger3_L
parentName: LittleFinger2_L
position: {x: 0.00000004284084, y: 0.017356388, z: -0.00000008940697}
rotation: {x: 0.04240066, y: -0.037014335, z: 0.03301406, w: 0.99786884}
scale: {x: 1, y: 1, z: 0.9999999}
- name: Loin_Cloth
parentName: Spine
position: {x: -0.012799995, y: 0.039821204, z: 0.06848685}
rotation: {x: 0.99746495, y: 0, z: -0, w: 0.071159564}
scale: {x: 1, y: 1, z: 1.0000101}
- name: Loin_Cloth_1
parentName: Loin_Cloth
position: {x: -0, y: 0.04842463, z: -0.000000014901161}
rotation: {x: -0.004672839, y: -0.000000011815959, z: 0.000000010345077, w: 0.9999891}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Loin_Cloth_2
parentName: Loin_Cloth_1
position: {x: -1.7155277e-10, y: 0.045254845, z: -0.000000014597438}
rotation: {x: 0.012394155, y: 0.000000011735606, z: -0.000000010436011, w: 0.9999232}
scale: {x: 1, y: 1.0000002, z: 1.0000001}
- name: Loin_Cloth_3
parentName: Loin_Cloth_2
position: {x: -9.313795e-10, y: 0.05477512, z: 3.13638e-15}
rotation: {x: -0.0036232132, y: 1.20785e-13, z: 1.8809421e-15, w: 0.99999344}
scale: {x: 1, y: 1, z: 1}
- name: Loin_Cloth_4
parentName: Loin_Cloth_3
position: {x: -0, y: 0.05159857, z: -0.000000007450581}
rotation: {x: 0.026520059, y: 0.000000034217535, z: -0.000000030206667, w: 0.9996483}
scale: {x: 1, y: 0.9999999, z: 0.9999999}
- name: Loin_Cloth_5
parentName: Loin_Cloth_4
position: {x: -3.2802205e-10, y: 0.04491408, z: -8.551528e-10}
rotation: {x: -0.0013154926, y: -0.00000003344495, z: 0.00000003105952, w: 0.99999917}
scale: {x: 1, y: 0.9999999, z: 1}
- name: Loin_Cloth_7
parentName: Loin_Cloth_5
position: {x: 9.314786e-10, y: 0.08663661, z: 0.0000000074505717}
rotation: {x: -0.03397223, y: -0.000000023015929, z: 0.000000021373774, w: 0.9994228}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Loin_Cloth_8
parentName: Loin_Cloth_7
position: {x: -2.719598e-10, y: 0.045254733, z: 0.000000008058028}
rotation: {x: 0.035286743, y: 0.000000022987198, z: -0.000000021404045, w: 0.99937725}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Loin_Cloth_9
parentName: Loin_Cloth_8
position: {x: 9.3122177e-10, y: 0.044914234, z: 0.000000011175877}
rotation: {x: -0.022898091, y: -0.000000018725586, z: 0.000000017435978, w: 0.9997378}
scale: {x: 1, y: 1, z: 1}
- name: Loin_Cloth_10
parentName: Loin_Cloth_9
position: {x: -0.0000000010164762, y: 0.05477525, z: 0.000000015390638}
rotation: {x: 0.029171895, y: 0.00000004639659, z: -0.000000042257188, w: 0.9995744}
scale: {x: 1, y: 0.99999994, z: 0.9999999}
- name: M_Loin_Cloth
parentName: Spine
position: {x: 0.0026145205, y: 0.041309647, z: -0.1129219}
rotation: {x: 0.9914215, y: 0.008208489, z: 0.008128119, w: -0.13019232}
scale: {x: 0.9999999, y: 0.9999999, z: 0.9999981}
- name: M_Loin_Cloth_1
parentName: M_Loin_Cloth
position: {x: -0, y: 0.048424445, z: 0.000000005122274}
rotation: {x: 0.0046381457, y: 0.00050636387, z: -0.00057770516, w: 0.999989}
scale: {x: 0.9999999, y: 1, z: 0.99999994}
- name: M_Loin_Cloth_2
parentName: M_Loin_Cloth_1
position: {x: -2.3283064e-10, y: 0.045255054, z: 0.000000022831955}
rotation: {x: -0.012298654, y: -0.0013507028, z: 0.0015424802, w: 0.9999223}
scale: {x: 1.0000001, y: 1, z: 1}
- name: M_Loin_Cloth_3
parentName: M_Loin_Cloth_2
position: {x: -0.0000000018626451, y: 0.05477504, z: 0.0000000029685907}
rotation: {x: 0.003593638, y: 0.0003974743, z: -0.00045433416, w: 0.9999934}
scale: {x: 1, y: 1, z: 1.0000001}
- name: M_Loin_Cloth_4
parentName: M_Loin_Cloth_3
position: {x: -0.0000000015133992, y: 0.051598553, z: 0.000000033898687}
rotation: {x: -0.026302712, y: -0.002960988, z: 0.0033929667, w: 0.9996439}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: M_Loin_Cloth_5
parentName: M_Loin_Cloth_4
position: {x: 0.0000000013969839, y: 0.04491428, z: 5.16593e-10}
rotation: {x: 0.0000015306798, y: -0.00000010841178, z: 0.00000015599655, w: 1}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: M_Loin_Cloth_6
parentName: M_Loin_Cloth_5
position: {x: -0.0000000015133992, y: 0.044914156, z: 0.000000025080226}
rotation: {x: 0.0027074532, y: 0.00031097126, z: -0.0003568985, w: 0.99999624}
scale: {x: 1.0000001, y: 1, z: 0.99999994}
- name: M_Loin_Cloth_7
parentName: M_Loin_Cloth_6
position: {x: -2.3283064e-10, y: 0.041722946, z: 0.0000000060681487}
rotation: {x: -0.0022937376, y: 0.0037658508, z: -0.0047053783, w: 0.99997926}
scale: {x: 0.99999994, y: 0.9999999, z: 1}
- name: M_Loin_Cloth_8
parentName: M_Loin_Cloth_7
position: {x: 0.000000003259629, y: 0.044476483, z: -0.00000000790169}
rotation: {x: -0.035709035, y: -0.004266168, z: 0.0045458023, w: 0.9993428}
scale: {x: 1, y: 0.99999994, z: 1.0000001}
- name: M_Loin_Cloth_9
parentName: M_Loin_Cloth_8
position: {x: -0, y: 0.04435682, z: 0.000000021267624}
rotation: {x: 0.00003914022, y: 0.0028703976, z: -0.0033017525, w: 0.99999046}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: M_Loin_Cloth_10
parentName: M_Loin_Cloth_9
position: {x: 0.0000000011641532, y: 0.053516865, z: -0.0000000028085196}
rotation: {x: 0.029039029, y: -0.0035232736, z: 0.004541686, w: 0.9995618}
scale: {x: 0.9999999, y: 1, z: 0.99999994}
- name: M_Loin_Cloth_11
parentName: M_Loin_Cloth_10
position: {x: -0.0000000011641532, y: 0.054494012, z: -0.000000016654667}
rotation: {x: -0.04035385, y: -0.003510612, z: 0.003947842, w: 0.9991715}
scale: {x: 1, y: 1, z: 1}
- name: Right leg
parentName: Hips
position: {x: 0.0666337, y: -0.024380386, z: -0.016461864}
rotation: {x: 0.9999102, y: -0.009478949, z: -0.009477665, w: -0.000074990254}
scale: {x: 1.0002365, y: 1.0000002, z: 1}
- name: Right knee
parentName: Right leg
position: {x: 2.3283064e-10, y: 0.4164771, z: 0.000000003259629}
rotation: {x: 0.041136872, y: 0.0005848785, z: -0.0013645177, w: 0.9991524}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Right ankle
parentName: Right knee
position: {x: 8.1490725e-10, y: 0.37598968, z: -7.566996e-10}
rotation: {x: -0.49210012, y: 0.06822508, z: -0.06536176, w: 0.86539626}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Right toe
parentName: Right ankle
position: {x: 0.0000000037252903, y: 0.13116348, z: -0.0000000055879354}
rotation: {x: -0.16232203, y: 0.111248955, z: -0.049999285, w: 0.97917074}
scale: {x: 1, y: 0.9999998, z: 0.99999994}
- name: Left leg
parentName: Hips
position: {x: -0.0666337, y: -0.024380386, z: -0.016461864}
rotation: {x: 0.99991024, y: 0.009475746, z: 0.009478145, w: -0.000074964446}
scale: {x: 0.99956506, y: 0.9999998, z: 1}
- name: Left knee
parentName: Left leg
position: {x: -0.000000011525117, y: 0.41647688, z: 0.0000000024447218}
rotation: {x: 0.041136857, y: -0.000584843, z: 0.0013654433, w: 0.9991524}
scale: {x: 0.99999994, y: 1, z: 0.99999994}
- name: Left ankle
parentName: Left knee
position: {x: -0.0000000032159733, y: 0.3759898, z: -0.0000000016298145}
rotation: {x: -0.48166254, y: -0.12345657, z: 0.12556054, w: 0.85848373}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Left toe
parentName: Left ankle
position: {x: 9.313226e-10, y: 0.13110906, z: 0.0000000037252903}
rotation: {x: -0.14200708, y: -0.20874462, z: 0.09341817, w: 0.963085}
scale: {x: 0.9999999, y: 1, z: 1.0000001}
- name: Tassel
parentName: Hips
position: {x: -0.1312, y: 0.047041655, z: 0.03687804}
rotation: {x: 0.9587753, y: -0.18733355, z: -0.18733275, w: 0.102774635}
scale: {x: 1.0000005, y: 1.0000001, z: 1.0000004}
- name: Tassel_1
parentName: Tassel
position: {x: 0.000000052154064, y: 0.059866626, z: -0.000000018626451}
rotation: {x: -0.039652806, y: -0.052067094, z: 0.05598043, w: 0.99628454}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: Tassel_2
parentName: Tassel_1
position: {x: -0.000000063329935, y: 0.034016635, z: 0}
rotation: {x: 0.058866344, y: 0.024635814, z: -0.044311676, w: 0.9969776}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Tassel_3
parentName: Tassel_2
position: {x: 0.0000000037252903, y: 0.05325842, z: -0.000000014901161}
rotation: {x: 0.12723896, y: -0.046244826, z: -0.011916129, w: 0.9907218}
scale: {x: 0.99999994, y: 0.9999999, z: 1}
- name: Body
parentName: chongyun new(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 1, y: 1, z: 1}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 1
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 3
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
|