1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
|
fileFormatVersion: 2
guid: de5ebf1ad1502044c9022b0293cf9f4c
ModelImporter:
serializedVersion: 23
fileIDToRecycleName:
100000: Armature
100002: Bangs1
100004: Bangs2
100006: Bangs3
100008: //RootNode
100010: Body
100012: Bow_Right
100014: Chest
100016: Collar_L
100018: Collar_R
100020: Ears_L
100022: Ears_R
100024: Eye_L
100026: Eye_R
100028: Glasses
100030: Hair_Left_A1
100032: Hair_Left_A2
100034: Hair_Left_B1
100036: Hair_Left_B2
100038: Hair_Left_C1
100040: Hair_Left_C2
100042: Hair_Left_D1
100044: Hair_Left_D2
100046: Hair_Mid_1
100048: Hair_Mid_2
100050: Hair_Mid_3
100052: Hair_Mid_4
100054: Hair_Right_A3
100056: Hair_Right_A4
100058: Hair_Right_B3
100060: Hair_Right_B4
100062: Hair_Right_C3
100064: Hair_Right_C4
100066: Hair_Right_D4
100068: Hair_Rightd3
100070: Hair_Sides_Left
100072: Hair_Sides_Right
100074: HandTip_L
100076: HandTip_R
100078: Head
100080: Hips
100082: IndexFinger1_L
100084: IndexFinger1_R
100086: IndexFinger2_L
100088: IndexFinger2_R
100090: IndexFinger3_L
100092: IndexFinger3_R
100094: Left ankle
100096: Left arm
100098: Left elbow
100100: Left knee
100102: Left leg
100104: Left shoulder
100106: Left toe
100108: Left wrist
100110: LeftEarBase
100112: LeftEye
100114: LittleFinger1_L
100116: LittleFinger1_R
100118: LittleFinger2_L
100120: LittleFinger2_R
100122: LittleFinger3_L
100124: LittleFinger3_R
100126: LittleFingerTip_L
100128: LittleFingerTip_R
100130: MiddleFinger1_L
100132: MiddleFinger1_R
100134: MiddleFinger2_L
100136: MiddleFinger2_R
100138: MiddleFinger3_L
100140: MiddleFinger3_R
100142: Neck
100144: Necktie1
100146: Necktie2
100148: Necktie3
100150: Necktie4
100152: Necktie5
100154: NecktieIK
100156: Right ankle
100158: Right arm
100160: Right elbow
100162: Right knee
100164: Right leg
100166: Right shoulder
100168: Right toe
100170: Right wrist
100172: RightEarBase
100174: RightEye
100176: RingFinger1_L
100178: RingFinger1_R
100180: RingFinger2_L
100182: RingFinger2_R
100184: RingFinger3_L
100186: RingFinger3_R
100188: RingFingerTip_L
100190: RingFingerTip_R
100192: Skirt_0_1
100194: Skirt_0_2
100196: Skirt_0_3
100198: Skirt_0_4
100200: Skirt_0_5
100202: Skirt_0_6
100204: Skirt_0_7
100206: Skirt_1_1
100208: Skirt_1_2
100210: Skirt_1_3
100212: Skirt_1_4
100214: Skirt_1_5
100216: Skirt_1_6
100218: Skirt_1_7
100220: Spine
100222: Thumb0_L
100224: Thumb0_R
100226: Thumb1_L
100228: Thumb1_R
100230: Thumb2_L
100232: Thumb2_R
100234: ZArmTwist_L
100236: ZArmTwist_R
100238: ZHandTwist_L
100240: ZHandTwist_R
400000: Armature
400002: Bangs1
400004: Bangs2
400006: Bangs3
400008: //RootNode
400010: Body
400012: Bow_Right
400014: Chest
400016: Collar_L
400018: Collar_R
400020: Ears_L
400022: Ears_R
400024: Eye_L
400026: Eye_R
400028: Glasses
400030: Hair_Left_A1
400032: Hair_Left_A2
400034: Hair_Left_B1
400036: Hair_Left_B2
400038: Hair_Left_C1
400040: Hair_Left_C2
400042: Hair_Left_D1
400044: Hair_Left_D2
400046: Hair_Mid_1
400048: Hair_Mid_2
400050: Hair_Mid_3
400052: Hair_Mid_4
400054: Hair_Right_A3
400056: Hair_Right_A4
400058: Hair_Right_B3
400060: Hair_Right_B4
400062: Hair_Right_C3
400064: Hair_Right_C4
400066: Hair_Right_D4
400068: Hair_Rightd3
400070: Hair_Sides_Left
400072: Hair_Sides_Right
400074: HandTip_L
400076: HandTip_R
400078: Head
400080: Hips
400082: IndexFinger1_L
400084: IndexFinger1_R
400086: IndexFinger2_L
400088: IndexFinger2_R
400090: IndexFinger3_L
400092: IndexFinger3_R
400094: Left ankle
400096: Left arm
400098: Left elbow
400100: Left knee
400102: Left leg
400104: Left shoulder
400106: Left toe
400108: Left wrist
400110: LeftEarBase
400112: LeftEye
400114: LittleFinger1_L
400116: LittleFinger1_R
400118: LittleFinger2_L
400120: LittleFinger2_R
400122: LittleFinger3_L
400124: LittleFinger3_R
400126: LittleFingerTip_L
400128: LittleFingerTip_R
400130: MiddleFinger1_L
400132: MiddleFinger1_R
400134: MiddleFinger2_L
400136: MiddleFinger2_R
400138: MiddleFinger3_L
400140: MiddleFinger3_R
400142: Neck
400144: Necktie1
400146: Necktie2
400148: Necktie3
400150: Necktie4
400152: Necktie5
400154: NecktieIK
400156: Right ankle
400158: Right arm
400160: Right elbow
400162: Right knee
400164: Right leg
400166: Right shoulder
400168: Right toe
400170: Right wrist
400172: RightEarBase
400174: RightEye
400176: RingFinger1_L
400178: RingFinger1_R
400180: RingFinger2_L
400182: RingFinger2_R
400184: RingFinger3_L
400186: RingFinger3_R
400188: RingFingerTip_L
400190: RingFingerTip_R
400192: Skirt_0_1
400194: Skirt_0_2
400196: Skirt_0_3
400198: Skirt_0_4
400200: Skirt_0_5
400202: Skirt_0_6
400204: Skirt_0_7
400206: Skirt_1_1
400208: Skirt_1_2
400210: Skirt_1_3
400212: Skirt_1_4
400214: Skirt_1_5
400216: Skirt_1_6
400218: Skirt_1_7
400220: Spine
400222: Thumb0_L
400224: Thumb0_R
400226: Thumb1_L
400228: Thumb1_R
400230: Thumb2_L
400232: Thumb2_R
400234: ZArmTwist_L
400236: ZArmTwist_R
400238: ZHandTwist_L
400240: ZHandTwist_R
2100000: Hand
2100002: "\u30EC\u30F3\u30BA"
2100004: Skin
2100006: Belt
2100008: Facials
2100010: Eyelashes
2100012: Eyes
2100014: Cat Ears
2100016: Cat Ears (Inner)
2100018: Bow
2100020: Hair
4300000: Body
9500000: //RootNode
13700000: Body
2186277476908879412: ImportLogs
externalObjects:
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Belt
second: {fileID: 2100000, guid: f6851074023a033468b39e179d61f5eb, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Bow
second: {fileID: 2100000, guid: 18d7df4a97e99b843ae4b5e560ac4644, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Cat Ears
second: {fileID: 2100000, guid: 60ab31b787f02164eb2ae3a5f5c886c7, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Cat Ears (Inner)
second: {fileID: 2100000, guid: 60ab31b787f02164eb2ae3a5f5c886c7, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Eyelashes
second: {fileID: 2100000, guid: 9ac3ed95c1307a74baf6ca4fa70131d3, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Eyes
second: {fileID: 2100000, guid: a818a9bab43737b4a8b12a11cd097c09, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Facials
second: {fileID: 2100000, guid: 492ccc017dcb9d04193e2a507ce1040f, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Hair
second: {fileID: 2100000, guid: 4701b32526aa88149b39597f44cfc488, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Hand
second: {fileID: 2100000, guid: 84dafc3c6453af545b4a05c18fc5a43d, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Skin
second: {fileID: 2100000, guid: 8ee01a7fac3c0de458241b454b23f19c, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: "\u30EC\u30F3\u30BA"
second: {fileID: 2100000, guid: f6851074023a033468b39e179d61f5eb, 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:
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: 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: Blake Suit(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: Blake Suit(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.46142337, z: 11.546652}
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, y: 1.7754946, z: -0.00000029802322}
rotation: {x: -0.0033115237, y: 0, z: -0, w: 0.9999945}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Chest
parentName: Spine
position: {x: -0, y: 1.6768595, z: 0.000000022351742}
rotation: {x: -0.018273775, y: 0, z: -0, w: 0.99983305}
scale: {x: 1, y: 1.0000001, z: 0.99999994}
- name: Neck
parentName: Chest
position: {x: -0, y: 2.3363552, z: 0}
rotation: {x: 0.04968327, y: 0, z: -0, w: 0.99876505}
scale: {x: 1, y: 0.9999999, z: 0.9999999}
- name: Head
parentName: Neck
position: {x: -0, y: 0.7824848, z: -0.000000029802322}
rotation: {x: -0.028113697, y: 0, z: -0, w: 0.99960476}
scale: {x: 1, y: 1, z: 1}
- name: Eye_R
parentName: Head
position: {x: 0.28114596, y: 0.6536846, z: 0.5423065}
rotation: {x: 0.10322485, y: 0.6995317, z: 0.69953173, w: -0.10322522}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: Eye_L
parentName: Head
position: {x: -0.28114596, y: 0.6536846, z: 0.5423065}
rotation: {x: -0.10322485, y: 0.6995317, z: 0.69953173, w: 0.10322522}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: Glasses
parentName: Head
position: {x: -0.00000012582792, y: 0.6817436, z: 0.88198996}
rotation: {x: -0.0000000697596, y: 0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Bow_Right
parentName: Head
position: {x: 0.6559727, y: 2.0799713, z: -0.197173}
rotation: {x: -0.0000000871995, y: 0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Hair_Left_A2
parentName: Head
position: {x: -0.5951731, y: 0.59887123, z: -1.8573524}
rotation: {x: 0.98786664, y: -0.07523274, z: -0.07523448, w: -0.113134176}
scale: {x: 0.9999996, y: 1, z: 0.9999994}
- name: Hair_Left_B2
parentName: Hair_Left_A2
position: {x: 0.000000059604645, y: 1.2255051, z: -0.00000033527613}
rotation: {x: -0.03104824, y: -0.0037810442, z: 0.01009998, w: 0.99945974}
scale: {x: 0.9999999, y: 0.99999994, z: 1}
- name: Hair_Left_C2
parentName: Hair_Left_B2
position: {x: 0.00000017881393, y: 1.2328413, z: 0.0000006109476}
rotation: {x: -0.045939323, y: 0.07936162, z: -0.085344866, w: 0.99212277}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: Hair_Left_D2
parentName: Hair_Left_C2
position: {x: -0.000000049080768, y: 1.2989377, z: -0.000000055688616}
rotation: {x: -0.0363031, y: 0.000000019504796, z: -0.00000002088028, w: 0.99934083}
scale: {x: 1, y: 1, z: 1}
- name: Hair_Right_A3
parentName: Head
position: {x: 0.5935031, y: 0.598341, z: -1.8573524}
rotation: {x: 0.9881673, y: 0.07187608, z: 0.071867116, w: -0.11486705}
scale: {x: 1.0000017, y: 1.0000001, z: 1.0000032}
- name: Hair_Right_B3
parentName: Hair_Right_A3
position: {x: -0.00000017881393, y: 1.2252449, z: 0.00000040233135}
rotation: {x: -0.034797035, y: 0.007761225, z: -0.015529977, w: 0.9992436}
scale: {x: 1.0000001, y: 0.9999999, z: 1}
- name: Hair_Right_C3
parentName: Hair_Right_B3
position: {x: -0.00000017881393, y: 1.2319336, z: -0.00000011920929}
rotation: {x: -0.04385646, y: -0.08066978, z: 0.086751305, w: 0.99198955}
scale: {x: 0.9999999, y: 0.9999998, z: 1}
- name: Hair_Rightd3
parentName: Hair_Right_C3
position: {x: -0.000000115125204, y: 1.2989349, z: 0.00000026610405}
rotation: {x: -0.03630134, y: -0.00000017534032, z: -0.000000025821784, w: 0.9993409}
scale: {x: 1, y: 1, z: 1}
- name: Hair_Left_A1
parentName: Head
position: {x: -1.0951731, y: 0.59887123, z: -1.5860301}
rotation: {x: 0.9673283, y: -0.1373335, z: -0.13733548, w: -0.16295521}
scale: {x: 0.9999991, y: 0.9999998, z: 0.99999934}
- name: Hair_Left_B1
parentName: Hair_Left_A1
position: {x: -0.00000017881393, y: 1.2981793, z: 0.00000020861626}
rotation: {x: -0.09526216, y: 0.059319444, z: -0.0508246, w: 0.9923826}
scale: {x: 1, y: 0.9999998, z: 0.99999994}
- name: Hair_Left_C1
parentName: Hair_Left_B1
position: {x: 0.00000014901161, y: 1.2282567, z: -0.000002682209}
rotation: {x: -0.015026585, y: -0.041393034, z: 0.050260913, w: 0.9977648}
scale: {x: 0.99999994, y: 0.9999998, z: 0.9999999}
- name: Hair_Left_D1
parentName: Hair_Left_C1
position: {x: -0.00000059604645, y: 1.3479903, z: -0.00000032782555}
rotation: {x: -0.026076023, y: -0.024318948, z: 0.03432643, w: 0.9987744}
scale: {x: 0.9999998, y: 0.99999994, z: 0.99999994}
- name: Hair_Sides_Left
parentName: Hair_Left_B1
position: {x: -0.24626347, y: -1.5394154, z: -1.7139708}
rotation: {x: 0.17550923, y: 0.10503252, z: -0.15247424, w: 0.9669107}
scale: {x: 1.0000001, y: 0.9999998, z: 0.99999994}
- name: Hair_Sides_Right
parentName: Hair_Left_B1
position: {x: 2.0864685, y: -1.9649253, z: -2.0845156}
rotation: {x: 0.1755091, y: 0.016080141, z: -0.05032726, w: 0.9830591}
scale: {x: 0.99999994, y: 0.99999976, z: 1}
- name: Hair_Right_A4
parentName: Head
position: {x: 1.093503, y: 0.598341, z: -1.5860301}
rotation: {x: 0.96797544, y: 0.13423297, z: 0.1342347, w: -0.1642747}
scale: {x: 0.9999992, y: 0.9999998, z: 0.9999992}
- name: Hair_Right_B4
parentName: Hair_Right_A4
position: {x: 0.00000035762787, y: 1.2969947, z: -0.00000059604645}
rotation: {x: -0.09854665, y: -0.05568119, z: 0.04552453, w: 0.99253}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: Hair_Right_C4
parentName: Hair_Right_B4
position: {x: -0.00000011920929, y: 1.2275, z: -0.0000002682209}
rotation: {x: -0.06381671, y: -0.04000387, z: 0.033992805, w: 0.99658}
scale: {x: 1, y: 0.9999999, z: 0.9999998}
- name: Hair_Right_D4
parentName: Hair_Right_C4
position: {x: 0.000000074505806, y: 1.3166852, z: -0.00000013411045}
rotation: {x: 0.023315355, y: 0.11150858, z: -0.10976854, w: 0.98740727}
scale: {x: 1, y: 1, z: 1}
- name: Hair_Mid_1
parentName: Head
position: {x: -0, y: 0.59926033, z: -2.0004435}
rotation: {x: 0.99321264, y: 0, z: 0, w: -0.116313}
scale: {x: 1, y: 1, z: 1.0000052}
- name: Hair_Mid_2
parentName: Hair_Mid_1
position: {x: -0, y: 1.2112863, z: 0}
rotation: {x: 0.00432812, y: 0, z: -0, w: 0.99999064}
scale: {x: 1, y: 0.99999994, z: 0.9999999}
- name: Hair_Mid_3
parentName: Hair_Mid_2
position: {x: -0, y: 1.2361615, z: 0}
rotation: {x: -0.016212981, y: 0, z: -0, w: 0.9998686}
scale: {x: 1, y: 1, z: 1}
- name: Hair_Mid_4
parentName: Hair_Mid_3
position: {x: -0, y: 1.3205299, z: 0}
rotation: {x: -0.10450061, y: 0, z: -0, w: 0.99452484}
scale: {x: 1, y: 1, z: 1}
- name: Bangs1
parentName: Head
position: {x: -0, y: 1.2825909, z: 0.9556041}
rotation: {x: 1, y: 6.369454e-16, z: 0.00000004371139, w: 0.00000019470718}
scale: {x: 1, y: 1, z: 1}
- name: Bangs2
parentName: Head
position: {x: 1, y: 1.1192722, z: 0.48774284}
rotation: {x: 0.99029034, y: -0.09805782, z: -0.09805808, w: -0.009709564}
scale: {x: 0.9999948, y: 0.99999976, z: 1}
- name: Bangs3
parentName: Head
position: {x: -1, y: 1.1192722, z: 0.48774284}
rotation: {x: 0.99029034, y: 0.09805782, z: 0.09805808, w: -0.009709564}
scale: {x: 0.9999948, y: 0.99999976, z: 1}
- name: RightEarBase
parentName: Head
position: {x: -0.4877033, y: 1.8882122, z: -0.18551715}
rotation: {x: 0.0044487384, y: 0.26164255, z: 0.26164255, w: 0.9290138}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Ears_R
parentName: RightEarBase
position: {x: -0.00000018626451, y: 0.16566029, z: 0.00000031292439}
rotation: {x: 0.107111156, y: 0.18213616, z: 0.24044508, w: 0.9473858}
scale: {x: 1, y: 1, z: 0.9999999}
- name: LeftEarBase
parentName: Head
position: {x: 0.4254015, y: 1.8553219, z: -0.17586023}
rotation: {x: -0.062988445, y: -0.32720402, z: -0.32720402, w: 0.8842554}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: Ears_L
parentName: LeftEarBase
position: {x: -0.0000006854534, y: 0.20210776, z: -0.0000001937151}
rotation: {x: 0.15365213, y: -0.07409174, z: -0.20789117, w: 0.9631629}
scale: {x: 1, y: 1, z: 1}
- name: LeftEye
parentName: Head
position: {x: -0.32363263, y: 0.6601696, z: 0.5175783}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RightEye
parentName: Head
position: {x: 0.32211488, y: 0.6601696, z: 0.51759124}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Right shoulder
parentName: Chest
position: {x: 0.4882467, y: 1.9522374, z: -0.078949064}
rotation: {x: 0.6158692, y: 0.4649336, z: 0.48545203, w: -0.41094795}
scale: {x: 0.9999998, y: 0.9999998, z: 0.9999999}
- name: Right arm
parentName: Right shoulder
position: {x: -0.00000044703484, y: 1.5679123, z: 0.00000039860606}
rotation: {x: 0.07190307, y: -0.20209762, z: -0.0576114, w: 0.97502184}
scale: {x: 1, y: 0.99999994, z: 1}
- name: ZArmTwist_R
parentName: Right arm
position: {x: 0.026937515, y: 1.6932068, z: -0.02017577}
rotation: {x: -0.005957565, y: -0.0000003613752, z: -0.007953384, w: 0.99995065}
scale: {x: 1, y: 1.0000002, z: 1}
- name: Right elbow
parentName: Right arm
position: {x: 0.0000010430813, y: 2.8226607, z: 0.0000005289912}
rotation: {x: 0.00047657985, y: 0.0070848865, z: -0.0113191, w: 0.9999108}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000001}
- name: ZHandTwist_R
parentName: Right elbow
position: {x: 0.000001296401, y: 1.5811634, z: -0.00000017136335}
rotation: {x: 0.000000042549807, y: 0.00000007450581, z: 0.00000041560276, w: 1}
scale: {x: 0.99999994, y: 0.99999994, z: 0.9999999}
- name: Right wrist
parentName: Right elbow
position: {x: -0.000000059604645, y: 2.6352732, z: 0.00000051409006}
rotation: {x: -0.013331201, y: -0.019080602, z: 0.013913713, w: 0.99963224}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: HandTip_R
parentName: Right wrist
position: {x: -0.0000015497208, y: 0.7341814, z: -0.0000020191073}
rotation: {x: -0.18973301, y: -0.3720254, z: 0.36047164, w: 0.8340616}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: LittleFinger1_R
parentName: Right wrist
position: {x: -0.2048926, y: 1.12008, z: 0.29299647}
rotation: {x: 0.039706063, y: 0.03258914, z: -0.0022419929, w: 0.9986773}
scale: {x: 1.0000001, y: 1.0000002, z: 1}
- name: LittleFinger2_R
parentName: LittleFinger1_R
position: {x: -0.0000002682209, y: 0.18597046, z: 0.0000004991889}
rotation: {x: -0.02228632, y: -0.011729483, z: -0.01087831, w: 0.99962366}
scale: {x: 1, y: 0.9999998, z: 0.9999999}
- name: LittleFinger3_R
parentName: LittleFinger2_R
position: {x: -0.0000008046627, y: 0.24861775, z: 0.0000008493662}
rotation: {x: -0.03736712, y: -0.07369252, z: 0.013693179, w: 0.9964866}
scale: {x: 0.99999994, y: 0.9999999, z: 0.9999999}
- name: LittleFingerTip_R
parentName: LittleFinger3_R
position: {x: -0.0000008121133, y: 0.2703638, z: -0.00000027567148}
rotation: {x: 0.84309375, y: 0.36885884, z: 0.36885467, w: 0.13069934}
scale: {x: 0.9999999, y: 0.99999994, z: 1}
- name: RingFinger1_R
parentName: Right wrist
position: {x: -0.05788495, y: 1.1582332, z: 0.1414676}
rotation: {x: 0.06467455, y: 0.07836837, z: -0.044539437, w: 0.99382687}
scale: {x: 1.0000001, y: 1, z: 1}
- name: RingFinger2_R
parentName: RingFinger1_R
position: {x: -0.000000014901161, y: 0.2537074, z: 0.0000004582107}
rotation: {x: -0.032862257, y: -0.07571337, z: 0.022523858, w: 0.9963334}
scale: {x: 1.0000001, y: 1, z: 1}
- name: RingFinger3_R
parentName: RingFinger2_R
position: {x: 0.00000041350722, y: 0.27605066, z: -0.00000028312206}
rotation: {x: -0.024679223, y: -0.032802954, z: 0.021699788, w: 0.99892145}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: RingFingerTip_R
parentName: RingFinger3_R
position: {x: -0.0000010691583, y: 0.33230013, z: 0.00000039115548}
rotation: {x: 0.8323784, y: 0.37332755, z: 0.37332743, w: 0.16852114}
scale: {x: 0.9999999, y: 0.9999999, z: 1}
- name: MiddleFinger1_R
parentName: Right wrist
position: {x: 0.104986385, y: 1.1582332, z: 0.013294548}
rotation: {x: 0.056118954, y: 0.07140078, z: -0.044144537, w: 0.9948889}
scale: {x: 1.0000001, y: 1, z: 1.0000001}
- name: MiddleFinger2_R
parentName: MiddleFinger1_R
position: {x: -0.00000010430813, y: 0.31177196, z: -0.000000461936}
rotation: {x: -0.03179663, y: -0.06263796, z: 0.025072897, w: 0.99721456}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger3_R
parentName: MiddleFinger2_R
position: {x: -0.00000014901161, y: 0.29376945, z: -0.0000018775463}
rotation: {x: -0.03832105, y: -0.05461183, z: 0.039844695, w: 0.9969762}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: IndexFinger1_R
parentName: Right wrist
position: {x: 0.26237825, y: 1.1582332, z: -0.11056638}
rotation: {x: 0.04256044, y: 0.06865094, z: -0.056926984, w: 0.9951055}
scale: {x: 1, y: 0.9999999, z: 1}
- name: IndexFinger2_R
parentName: IndexFinger1_R
position: {x: -0, y: 0.27603257, z: 0.00000017881393}
rotation: {x: -0.023731804, y: -0.065865375, z: 0.032456215, w: 0.9970182}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger3_R
parentName: IndexFinger2_R
position: {x: 0.00000062584877, y: 0.2760513, z: 0.0000010728836}
rotation: {x: -0.010546406, y: -0.030049166, z: 0.035385158, w: 0.9988662}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: Thumb0_R
parentName: Right wrist
position: {x: 0.17365676, y: 0.43800494, z: -0.30046067}
rotation: {x: -0.31215435, y: -0.20313871, z: -0.1989831, w: 0.9064768}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Thumb1_R
parentName: Thumb0_R
position: {x: -0.00000044703484, y: 0.27941152, z: 0.0000003874302}
rotation: {x: 0.02936973, y: 0.2850222, z: 0.0021922917, w: 0.9580684}
scale: {x: 0.9999999, y: 0.99999994, z: 1}
- name: Thumb2_R
parentName: Thumb1_R
position: {x: -0.00000017881393, y: 0.39252073, z: 0}
rotation: {x: -0.040109467, y: -0.13382956, z: 0.14527526, w: 0.9794774}
scale: {x: 1, y: 1, z: 1}
- name: Left shoulder
parentName: Chest
position: {x: -0.4882467, y: 1.9522374, z: -0.07894948}
rotation: {x: 0.6511174, y: -0.4557225, z: -0.4758345, w: -0.37675563}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Left arm
parentName: Left shoulder
position: {x: 0.00000016391277, y: 1.6002978, z: 0.0000010430813}
rotation: {x: 0.103388995, y: 0.14904694, z: 0.07433039, w: 0.9805972}
scale: {x: 0.9999999, y: 0.99999994, z: 1}
- name: ZArmTwist_L
parentName: Left arm
position: {x: -0.027628243, y: 1.6507308, z: -0.019220024}
rotation: {x: -0.0058196136, y: -0.00000027568063, z: 0.0083679, w: 0.9999481}
scale: {x: 1, y: 1.0000002, z: 1.0000001}
- name: Left elbow
parentName: Left arm
position: {x: 0.000000014901161, y: 2.7518816, z: -0.0000013411045}
rotation: {x: -0.013742686, y: 0.010451869, z: 0.001236105, w: 0.9998502}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: ZHandTwist_L
parentName: Left elbow
position: {x: 0.0000007748604, y: 1.581164, z: -0.0000013485551}
rotation: {x: 0.0000010060612, y: -0.0000011362135, z: 0.0000003897585, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Left wrist
parentName: Left elbow
position: {x: 0.0000007003546, y: 2.6352751, z: -0.0000013560057}
rotation: {x: -0.01333038, y: 0.019079637, z: -0.013912967, w: 0.9996323}
scale: {x: 1, y: 1.0000001, z: 1}
- name: HandTip_L
parentName: Left wrist
position: {x: -0.00000037252903, y: 0.7341791, z: 0.0000028982759}
rotation: {x: 0.8092129, y: -0.39292154, z: -0.39292154, w: 0.19078757}
scale: {x: 0.9999999, y: 0.99999976, z: 0.99999994}
- name: LittleFinger1_L
parentName: Left wrist
position: {x: 0.20489013, y: 1.1200786, z: 0.29299933}
rotation: {x: 0.039702915, y: -0.032588482, z: 0.0022447002, w: 0.9986775}
scale: {x: 0.99999994, y: 1, z: 0.99999994}
- name: LittleFinger2_L
parentName: LittleFinger1_L
position: {x: -0.00000020861626, y: 0.18596853, z: 0.0000013336539}
rotation: {x: -0.022277731, y: 0.011727318, z: 0.010870241, w: 0.99962395}
scale: {x: 1, y: 1, z: 1}
- name: LittleFinger3_L
parentName: LittleFinger2_L
position: {x: -0.00000010430813, y: 0.24861804, z: 0.0000006482005}
rotation: {x: -0.03738168, y: 0.07368991, z: -0.01369176, w: 0.99648637}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: LittleFingerTip_L
parentName: LittleFinger3_L
position: {x: -0.00000013411045, y: 0.27036172, z: 0.0000003501773}
rotation: {x: 0.84309036, y: -0.36886072, z: -0.36886087, w: 0.13069855}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: RingFinger1_L
parentName: Left wrist
position: {x: 0.057881456, y: 1.1582308, z: 0.14147285}
rotation: {x: 0.06466746, y: -0.07836165, z: 0.0445376, w: 0.99382794}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: RingFinger2_L
parentName: RingFinger1_L
position: {x: 0.0000006072223, y: 0.25370687, z: 0.0000012144446}
rotation: {x: -0.032859042, y: 0.075701386, z: -0.022525577, w: 0.9963344}
scale: {x: 0.99999994, y: 1, z: 1}
- name: RingFinger3_L
parentName: RingFinger2_L
position: {x: -0.00000020489097, y: 0.27604827, z: -0.0000012777746}
rotation: {x: -0.024690539, y: 0.03281279, z: -0.02170182, w: 0.9989208}
scale: {x: 0.99999994, y: 0.9999999, z: 1}
- name: RingFingerTip_L
parentName: RingFinger3_L
position: {x: -0.0000004172325, y: 0.33230257, z: 0.00000086799264}
rotation: {x: 0.8323816, y: -0.37332517, z: -0.37332514, w: 0.16851574}
scale: {x: 1, y: 1, z: 0.99999994}
- name: MiddleFinger1_L
parentName: Left wrist
position: {x: -0.104989916, y: 1.1582309, z: 0.013299912}
rotation: {x: 0.056113143, y: -0.07139669, z: 0.044145267, w: 0.9948895}
scale: {x: 1.0000001, y: 0.9999999, z: 0.9999999}
- name: MiddleFinger2_L
parentName: MiddleFinger1_L
position: {x: 0.00000011920929, y: 0.3117711, z: -0.000000074505806}
rotation: {x: -0.03179687, y: 0.06263887, z: -0.025077347, w: 0.9972144}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: MiddleFinger3_L
parentName: MiddleFinger2_L
position: {x: -0.0000007003546, y: 0.2937705, z: 0.0000007301569}
rotation: {x: -0.03831666, y: 0.054606427, z: -0.039841466, w: 0.9969768}
scale: {x: 1, y: 0.99999994, z: 1}
- name: IndexFinger1_L
parentName: Left wrist
position: {x: -0.2623817, y: 1.1582309, z: -0.110560834}
rotation: {x: 0.042557754, y: -0.06864838, z: 0.056926344, w: 0.99510586}
scale: {x: 1, y: 0.9999999, z: 1}
- name: IndexFinger2_L
parentName: IndexFinger1_L
position: {x: 0.00000017881393, y: 0.27603167, z: -0.000000834465}
rotation: {x: -0.023731632, y: 0.0658683, z: -0.032455303, w: 0.99701804}
scale: {x: 1, y: 1, z: 0.99999994}
- name: IndexFinger3_L
parentName: IndexFinger2_L
position: {x: 0.00000017881393, y: 0.27605265, z: -0.0000006854534}
rotation: {x: -0.01053988, y: 0.030042587, z: -0.035382144, w: 0.9988666}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Thumb0_L
parentName: Left wrist
position: {x: -0.17365977, y: 0.43800467, z: -0.3004569}
rotation: {x: -0.3122717, y: 0.20302778, z: 0.19866143, w: 0.90653175}
scale: {x: 0.99999994, y: 0.9999998, z: 0.99999994}
- name: Thumb1_L
parentName: Thumb0_L
position: {x: -0.0000002682209, y: 0.27940953, z: 0.000000059604645}
rotation: {x: 0.029370204, y: -0.2850183, z: -0.002189421, w: 0.95806944}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: Thumb2_L
parentName: Thumb1_L
position: {x: -0.00000071525574, y: 0.39252293, z: 0.000000029802322}
rotation: {x: -0.040108167, y: 0.13382861, z: -0.14527516, w: 0.97947764}
scale: {x: 1, y: 1, z: 0.9999999}
- name: Necktie1
parentName: Chest
position: {x: -0.0017573413, y: 1.362571, z: 1.0470905}
rotation: {x: 0.9921316, y: -0.0013461267, z: -0.0014056654, w: 0.12518476}
scale: {x: 1, y: 0.9999999, z: 0.99999684}
- name: Necktie2
parentName: Necktie1
position: {x: 6.9849193e-10, y: 0.62166834, z: 0.0000007034314}
rotation: {x: 0.025162635, y: -0.000999543, z: 0.00068057847, w: 0.99968266}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: Necktie3
parentName: Necktie2
position: {x: 0.0000000055879354, y: 0.73846525, z: -0.0000000032123353}
rotation: {x: 0.040976368, y: 0.014896349, z: -0.011808039, w: 0.99897933}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Necktie4
parentName: Necktie3
position: {x: -0.000000007450581, y: 0.85967, z: -0.000000059080776}
rotation: {x: 0.023233978, y: -0.024865499, z: 0.021617593, w: 0.999187}
scale: {x: 1, y: 0.9999999, z: 0.9999999}
- name: Necktie5
parentName: Necktie4
position: {x: -0.000000019092113, y: 0.8246863, z: 0.000000027241185}
rotation: {x: 0.012354456, y: 0.015878754, z: -0.014427367, w: 0.9996935}
scale: {x: 0.9999999, y: 1.0000001, z: 0.99999994}
- name: Collar_L
parentName: Chest
position: {x: -0.5590339, y: 2.544304, z: 0.13610977}
rotation: {x: 0.021584572, y: 0, z: -0, w: 0.99976707}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Collar_R
parentName: Chest
position: {x: 0.5590339, y: 2.544304, z: 0.13610977}
rotation: {x: 0.021584572, y: 0, z: -0, w: 0.99976707}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Right leg
parentName: Hips
position: {x: 0.90218794, y: -0.8744974, z: -0.09056112}
rotation: {x: 0.99999344, y: -0.0015231305, z: -0.0018676558, w: -0.0027074069}
scale: {x: 1.0003887, y: 1, z: 1.0012199}
- name: Right knee
parentName: Right leg
position: {x: -0.00000005005859, y: 4.4190874, z: -0.000000029802322}
rotation: {x: 0.035546683, y: 0.0006193091, z: -0.0007311087, w: 0.9993676}
scale: {x: 0.9999998, y: 0.99999994, z: 0.99999994}
- name: Right ankle
parentName: Right knee
position: {x: -0.000000027219357, y: 4.837236, z: 0.00000005029142}
rotation: {x: -0.517724, y: -0.004994836, z: 0.006306675, w: 0.8555099}
scale: {x: 1.0000001, y: 1, z: 0.99999994}
- name: Right toe
parentName: Right ankle
position: {x: 0.000000067921505, y: 2.6971934, z: -0.000000026069756}
rotation: {x: 0.87467647, y: -0.006389834, z: -0.006407277, w: -0.48462275}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Left leg
parentName: Hips
position: {x: -0.90218794, y: -0.8744974, z: -0.09056112}
rotation: {x: 0.99999344, y: 0.0015231305, z: 0.0018676558, w: -0.0027074069}
scale: {x: 1.0003887, y: 1, z: 1.0012199}
- name: Left knee
parentName: Left leg
position: {x: 0.00000005005859, y: 4.4190874, z: -0.000000029802322}
rotation: {x: 0.035546683, y: -0.0006193091, z: 0.0007311087, w: 0.9993676}
scale: {x: 0.9999998, y: 0.99999994, z: 0.99999994}
- name: Left ankle
parentName: Left knee
position: {x: 0.000000027219357, y: 4.837236, z: 0.00000005029142}
rotation: {x: -0.517724, y: 0.004994836, z: -0.006306675, w: 0.8555099}
scale: {x: 1.0000001, y: 1, z: 0.99999994}
- name: Left toe
parentName: Left ankle
position: {x: -0.000000067921505, y: 2.6971934, z: -0.000000026069756}
rotation: {x: 0.87467647, y: 0.006389834, z: 0.006407277, w: -0.48462275}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Skirt_0_1
parentName: Hips
position: {x: -1.2160789, y: 1.4563942, z: 0.8541037}
rotation: {x: 0.9898395, y: -0.10045948, z: -0.100460425, w: 0.005779015}
scale: {x: 0.99999344, y: 0.9999997, z: 0.9999998}
- name: Skirt_1_1
parentName: Skirt_0_1
position: {x: -0.00000035762787, y: 1.0342752, z: 0.00000009685755}
rotation: {x: -0.0042604683, y: -0.0018475517, z: 0.0026860035, w: 0.99998564}
scale: {x: 0.9999998, y: 0.99999994, z: 0.99999994}
- name: Skirt_0_2
parentName: Hips
position: {x: -1.7197951, y: 1.4563942, z: -0.11259329}
rotation: {x: 0.97893035, y: -0.14361517, z: -0.14361836, w: -0.021068932}
scale: {x: 0.99999905, y: 0.9999999, z: 0.99999994}
- name: Skirt_1_2
parentName: Skirt_0_2
position: {x: -0.00000037252903, y: 1.0068483, z: 0}
rotation: {x: 0.00009416781, y: -0.0003280142, z: 0.00031419712, w: 0.99999994}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Skirt_0_3
parentName: Hips
position: {x: -1.2160786, y: 1.4563942, z: -0.9595844}
rotation: {x: 0.98364925, y: -0.09192216, z: -0.09192001, w: -0.12464024}
scale: {x: 1.0000006, y: 1, z: 1.0000007}
- name: Skirt_1_3
parentName: Skirt_0_3
position: {x: 0.000000014901161, y: 1.0036613, z: 0.000000029802322}
rotation: {x: -0.013999151, y: -0.000020888918, z: 0.0030230067, w: 0.9998975}
scale: {x: 0.9999999, y: 0.9999998, z: 0.9999999}
- name: Skirt_0_4
parentName: Hips
position: {x: 0.00000015472183, y: 1.4563942, z: -1.3104196}
rotation: {x: 0.98686314, y: 0, z: 0, w: -0.16155848}
scale: {x: 1, y: 1, z: 1.0000013}
- name: Skirt_1_4
parentName: Skirt_0_4
position: {x: 1.4210855e-14, y: 1.017541, z: 0.00000023841858}
rotation: {x: -0.019211201, y: 1.0187069e-14, z: -1.3738087e-14, w: 0.99981546}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_0_5
parentName: Hips
position: {x: 1.181618, y: 1.4563942, z: -0.9595841}
rotation: {x: 0.9844746, y: 0.08783997, z: 0.08783967, w: -0.124008335}
scale: {x: 1.0000001, y: 1, z: 1.0000001}
- name: Skirt_1_5
parentName: Skirt_0_5
position: {x: -0.00000016391277, y: 1.0017843, z: 0.00000044703484}
rotation: {x: -0.013716155, y: 0.0016635114, z: -0.00494342, w: 0.99989235}
scale: {x: 0.99999994, y: 0.99999994, z: 0.9999998}
- name: Skirt_0_6
parentName: Hips
position: {x: 1.6710602, y: 1.4563942, z: -0.112592906}
rotation: {x: 0.9807164, y: 0.13751827, z: 0.13752176, w: -0.019283304}
scale: {x: 0.9999989, y: 0.9999999, z: 1}
- name: Skirt_1_6
parentName: Skirt_0_6
position: {x: -0.00000022351742, y: 1.0031055, z: -0.00000011920929}
rotation: {x: 0.000873278, y: 0.0031406851, z: -0.0030168768, w: 0.99999017}
scale: {x: 0.99999994, y: 1, z: 0.99999994}
- name: Skirt_0_7
parentName: Hips
position: {x: 1.181618, y: 1.4563942, z: 0.8541039}
rotation: {x: 0.99071676, y: 0.09600917, z: 0.09601008, w: 0.006684567}
scale: {x: 0.9999936, y: 0.9999997, z: 0.9999998}
- name: Skirt_1_7
parentName: Skirt_0_7
position: {x: -0.000000029802322, y: 1.0324497, z: -0.00000013411045}
rotation: {x: -0.003899166, y: 0.003857541, z: -0.0045565423, w: 0.9999746}
scale: {x: 1, y: 0.99999994, z: 1}
- name: NecktieIK
parentName: Hips
position: {x: -0, y: 0.73327065, z: 1.6680508}
rotation: {x: 0.7071066, y: 0, z: -0, w: 0.70710695}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Body
parentName: Blake Suit(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:
|