1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
|
fileFormatVersion: 2
guid: 0f9f01d731eae604a9dd03dab780d97a
ModelImporter:
serializedVersion: 23
fileIDToRecycleName:
100000: Armature
100002: Bangs1
100004: Bangs10
100006: Bangs2
100008: Bangs3
100010: Bangs4
100012: Bangs5
100014: Bangs6
100016: Bangs7
100018: Bangs8
100020: Bangs9
100022: Bhair1
100024: Body
100026: Chest
100028: Eye_L
100030: Eye_R
100032: Flick3
100034: Flick4
100036: Flick5
100038: Flick6
100040: Glasses
100042: Gold_Dogtag
100044: Head
100046: Hips
100048: HP
100050: IndexFinger1_L
100052: IndexFinger1_R
100054: IndexFinger2_L
100056: IndexFinger2_R
100058: IndexFinger3_L
100060: IndexFinger3_R
100062: Lbraclet1
100064: Lbraclet2
100066: Lbraclet3
100068: Lbraclet4
100070: Left ankle
100072: Left arm
100074: Left elbow
100076: Left knee
100078: Left leg
100080: Left shoulder
100082: Left toe
100084: Left wrist
100086: LeftEye
100088: LittleFinger1_L
100090: LittleFinger1_R
100092: LittleFinger2_L
100094: LittleFinger2_R
100096: LittleFinger3_L
100098: LittleFinger3_R
100100: M_Lbraclet1
100102: M_Lbraclet2
100104: M_Lbraclet3
100106: MiddleFinger1_L
100108: MiddleFinger1_R
100110: MiddleFinger2_L
100112: MiddleFinger2_R
100114: MiddleFinger3_L
100116: MiddleFinger3_R
100118: Neck
100120: //RootNode
100122: Ponytail
100124: Right ankle
100126: Right arm
100128: Right elbow
100130: Right knee
100132: Right leg
100134: Right shoulder
100136: Right toe
100138: Right wrist
100140: RightEye
100142: RingFinger1_L
100144: RingFinger1_R
100146: RingFinger2_L
100148: RingFinger2_R
100150: RingFinger3_L
100152: RingFinger3_R
100154: Skirt_0_1
100156: Skirt_0_2
100158: Skirt_0_3
100160: Skirt_0_6
100162: Skirt_0_7
100164: Skirt_1_1
100166: Skirt_1_2
100168: Skirt_1_3
100170: Skirt_1_4
100172: Skirt_1_5
100174: Skirt_1_6
100176: Skirt_1_7
100178: Skirt_2_1
100180: Skirt_2_2
100182: Skirt_2_3
100184: Skirt_2_4
100186: Skirt_2_5
100188: Skirt_2_6
100190: Skirt_2_7
100192: Skirt_3_1
100194: Skirt_3_2
100196: Skirt_3_3
100198: Skirt_3_4
100200: Skirt_3_5
100202: Skirt_3_6
100204: Skirt_3_7
100206: Skirt_4_1
100208: Skirt_4_2
100210: Skirt_4_3
100212: Skirt_4_4
100214: Skirt_4_5
100216: Skirt_4_6
100218: Skirt_4_7
100220: Skirt_5_1
100222: Skirt_5_2
100224: Skirt_5_3
100226: Skirt_5_4
100228: Skirt_5_5
100230: Skirt_5_6
100232: Skirt_5_7
100234: Skirt_6_1
100236: Skirt_6_2
100238: Skirt_6_3
100240: Skirt_6_4
100242: Skirt_6_5
100244: Skirt_6_6
100246: Skirt_6_7
100248: Skirt_7_1
100250: Skirt_7_2
100252: Skirt_7_3
100254: Skirt_7_4
100256: Skirt_7_5
100258: Skirt_7_6
100260: Skirt_7_7
100262: Skirt_8_1
100264: Skirt_8_7
100266: Spine
100268: Strap
100270: Thumb0_L
100272: Thumb0_R
100274: Thumb1_L
100276: Thumb1_R
100278: Thumb2_L
100280: Thumb2_R
100282: Tongue1
100284: Tongue2
100286: Tongue3
100288: ZArmTwist_L
100290: ZArmTwist_R
100292: ZHandTwist_L
100294: ZHandTwist_R
400000: Armature
400002: Bangs1
400004: Bangs10
400006: Bangs2
400008: Bangs3
400010: Bangs4
400012: Bangs5
400014: Bangs6
400016: Bangs7
400018: Bangs8
400020: Bangs9
400022: Bhair1
400024: Body
400026: Chest
400028: Eye_L
400030: Eye_R
400032: Flick3
400034: Flick4
400036: Flick5
400038: Flick6
400040: Glasses
400042: Gold_Dogtag
400044: Head
400046: Hips
400048: HP
400050: IndexFinger1_L
400052: IndexFinger1_R
400054: IndexFinger2_L
400056: IndexFinger2_R
400058: IndexFinger3_L
400060: IndexFinger3_R
400062: Lbraclet1
400064: Lbraclet2
400066: Lbraclet3
400068: Lbraclet4
400070: Left ankle
400072: Left arm
400074: Left elbow
400076: Left knee
400078: Left leg
400080: Left shoulder
400082: Left toe
400084: Left wrist
400086: LeftEye
400088: LittleFinger1_L
400090: LittleFinger1_R
400092: LittleFinger2_L
400094: LittleFinger2_R
400096: LittleFinger3_L
400098: LittleFinger3_R
400100: M_Lbraclet1
400102: M_Lbraclet2
400104: M_Lbraclet3
400106: MiddleFinger1_L
400108: MiddleFinger1_R
400110: MiddleFinger2_L
400112: MiddleFinger2_R
400114: MiddleFinger3_L
400116: MiddleFinger3_R
400118: Neck
400120: //RootNode
400122: Ponytail
400124: Right ankle
400126: Right arm
400128: Right elbow
400130: Right knee
400132: Right leg
400134: Right shoulder
400136: Right toe
400138: Right wrist
400140: RightEye
400142: RingFinger1_L
400144: RingFinger1_R
400146: RingFinger2_L
400148: RingFinger2_R
400150: RingFinger3_L
400152: RingFinger3_R
400154: Skirt_0_1
400156: Skirt_0_2
400158: Skirt_0_3
400160: Skirt_0_6
400162: Skirt_0_7
400164: Skirt_1_1
400166: Skirt_1_2
400168: Skirt_1_3
400170: Skirt_1_4
400172: Skirt_1_5
400174: Skirt_1_6
400176: Skirt_1_7
400178: Skirt_2_1
400180: Skirt_2_2
400182: Skirt_2_3
400184: Skirt_2_4
400186: Skirt_2_5
400188: Skirt_2_6
400190: Skirt_2_7
400192: Skirt_3_1
400194: Skirt_3_2
400196: Skirt_3_3
400198: Skirt_3_4
400200: Skirt_3_5
400202: Skirt_3_6
400204: Skirt_3_7
400206: Skirt_4_1
400208: Skirt_4_2
400210: Skirt_4_3
400212: Skirt_4_4
400214: Skirt_4_5
400216: Skirt_4_6
400218: Skirt_4_7
400220: Skirt_5_1
400222: Skirt_5_2
400224: Skirt_5_3
400226: Skirt_5_4
400228: Skirt_5_5
400230: Skirt_5_6
400232: Skirt_5_7
400234: Skirt_6_1
400236: Skirt_6_2
400238: Skirt_6_3
400240: Skirt_6_4
400242: Skirt_6_5
400244: Skirt_6_6
400246: Skirt_6_7
400248: Skirt_7_1
400250: Skirt_7_2
400252: Skirt_7_3
400254: Skirt_7_4
400256: Skirt_7_5
400258: Skirt_7_6
400260: Skirt_7_7
400262: Skirt_8_1
400264: Skirt_8_7
400266: Spine
400268: Strap
400270: Thumb0_L
400272: Thumb0_R
400274: Thumb1_L
400276: Thumb1_R
400278: Thumb2_L
400280: Thumb2_R
400282: Tongue1
400284: Tongue2
400286: Tongue3
400288: ZArmTwist_L
400290: ZArmTwist_R
400292: ZHandTwist_L
400294: ZHandTwist_R
2100000: purple
2100002: lens
2100004: coat_transparent
2100006: dread1
2100008: blush2
2100010: facials
2100012: glasses
2100014: transparent_facials
2100016: hair
2100018: eye_hi
2100020: eyes
2100022: hairshadow
2100024: body
4300000: Body
9500000: //RootNode
13700000: Body
2186277476908879412: ImportLogs
externalObjects: {}
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: 0
importBlendShapes: 1
importCameras: 0
importLights: 0
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: 0
blendShapeNormalImportMode: 0
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: new model(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: new model(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.45307592, z: 11.694362}
rotation: {x: 0.7071067, y: 0, z: -0, w: 0.7071068}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Spine
parentName: Hips
position: {x: -0, y: 1.5086918, z: -0.0021522641}
rotation: {x: -0.060047753, y: 0, z: -0, w: 0.9981955}
scale: {x: 1, y: 1, z: 1}
- name: Chest
parentName: Spine
position: {x: -0, y: 1.2997608, z: 0.000000029802322}
rotation: {x: 0.009057916, y: 0, z: -0, w: 0.999959}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Neck
parentName: Chest
position: {x: -0, y: 2.8404357, z: -0.00000006845221}
rotation: {x: 0.057599902, y: 0, z: -0, w: 0.9983398}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Head
parentName: Neck
position: {x: -0, y: 0.70789635, z: -0.0000000055879354}
rotation: {x: -0.0066059, y: 0, z: -0, w: 0.9999782}
scale: {x: 1, y: 1, z: 1}
- name: Eye_R
parentName: Head
position: {x: 0.30849838, y: 0.93573946, z: 0.27473444}
rotation: {x: 0.24861136, y: 0.67585886, z: 0.67585886, w: 0.15691389}
scale: {x: 1, y: 0.9999998, z: 0.99999994}
- name: Eye_L
parentName: Head
position: {x: -0.3475933, y: 0.93573564, z: 0.27473444}
rotation: {x: -0.24861063, y: 0.67585915, z: 0.6758592, w: -0.15691286}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: Glasses
parentName: Head
position: {x: -0.019550323, y: 0.87792397, z: 0.10908162}
rotation: {x: 0.73483664, y: 0, z: -0, w: 0.6782441}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Tongue1
parentName: Head
position: {x: -0.019550323, y: 0.18673123, z: 0.8181964}
rotation: {x: 0.76399785, y: 0, z: -0, w: 0.6452188}
scale: {x: 1, y: 1, z: 1}
- name: Tongue2
parentName: Tongue1
position: {x: -0, y: 0.035199225, z: -0.00000064074993}
rotation: {x: 0.02358588, y: -1.257279e-13, z: 5.329152e-12, w: 0.9997218}
scale: {x: 1, y: 1, z: 1}
- name: Tongue3
parentName: Tongue2
position: {x: 0.0000000018306048, y: 0.037612975, z: 0.0000012814999}
rotation: {x: 0.059882957, y: -2.246819e-13, z: -6.8968646e-12, w: 0.9982054}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Bangs1
parentName: Head
position: {x: -0, y: 1.4180659, z: 1.2533062}
rotation: {x: 0.98658997, y: 0.08812254, z: 0.08811881, w: -0.105402894}
scale: {x: 1.0000007, y: 0.99999994, z: 1.0000008}
- name: Bangs2
parentName: Head
position: {x: -0.795063, y: 0.9571856, z: 0.73330617}
rotation: {x: 1, y: 1.9106855e-15, z: 0.00000004371139, w: -0.00000004371139}
scale: {x: 1, y: 1, z: 1}
- name: Bangs3
parentName: Head
position: {x: -1.0079994, y: 1.7380656, z: 0.46582234}
rotation: {x: 0.9668531, y: -0.1321456, z: -0.13214481, w: -0.17398432}
scale: {x: 1.0000004, y: 1.0000001, z: 1.0000004}
- name: Bangs4
parentName: Head
position: {x: -1.0079994, y: 1.430067, z: 0.6498223}
rotation: {x: 0.9743416, y: -0.15811409, z: -0.15811467, w: -0.025658207}
scale: {x: 0.99999946, y: 0.9999999, z: 1}
- name: Bangs5
parentName: Head
position: {x: -0.9399986, y: 1.0060672, z: 0.7418222}
rotation: {x: 0.97434264, y: -0.15811369, z: -0.15810876, w: -0.025655413}
scale: {x: 1.0000017, y: 1.0000002, z: 1}
- name: Bangs6
parentName: Head
position: {x: 0.79471207, y: 0.8480167, z: 0.5613062}
rotation: {x: 1, y: 1.9106855e-15, z: 0.00000004371139, w: -0.00000004371139}
scale: {x: 1, y: 1, z: 1}
- name: Bangs7
parentName: Head
position: {x: 0.98137665, y: 1.8706665, z: 0.27683973}
rotation: {x: 0.8535529, y: 0.35355374, z: 0.35355404, w: -0.14644706}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: Bangs8
parentName: Head
position: {x: 1.0613766, y: 1.4706669, z: 0.11683969}
rotation: {x: 0.9160247, y: 0.27735084, z: 0.2773508, w: -0.08397527}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999994}
- name: Bangs9
parentName: Head
position: {x: 0.91732216, y: 1.9942055, z: 0.28530622}
rotation: {x: 0.6581143, y: 0.4743416, z: 0.47434145, w: -0.34188578}
scale: {x: 0.9999998, y: 0.99999976, z: 0.99999994}
- name: Bangs10
parentName: Head
position: {x: -0.70399857, y: 2.0300655, z: 0.6258223}
rotation: {x: 0.96685296, y: -0.1321463, z: -0.13214481, w: -0.17398418}
scale: {x: 1.0000007, y: 1.0000001, z: 1.0000007}
- name: Bhair1
parentName: Head
position: {x: -0, y: 1.0326005, z: -0.7008833}
rotation: {x: 1, y: 1.9106855e-15, z: 0.00000004371139, w: -0.00000004371139}
scale: {x: 1, y: 1, z: 1}
- name: Flick3
parentName: Head
position: {x: 0.031999588, y: 2.461916, z: 0.36530614}
rotation: {x: 0.26884517, y: 0.23461524, z: 0.23461528, w: 0.90423095}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Flick4
parentName: Head
position: {x: -0.24107742, y: 2.006067, z: 1.0853062}
rotation: {x: 0.967527, y: 0.1404767, z: 0.14047635, w: 0.15628242}
scale: {x: 1.0000001, y: 1, z: 1.0000004}
- name: Flick5
parentName: Head
position: {x: 0.95425797, y: 1.3787059, z: 0.6200793}
rotation: {x: 0.90000004, y: 0.30000013, z: 0.29999983, w: -0.09999981}
scale: {x: 1.0000004, y: 1.0000002, z: 1}
- name: Flick6
parentName: Head
position: {x: 0.20594978, y: 1.5309657, z: 1.1777252}
rotation: {x: 0.8653215, y: 0.30489612, z: 0.30489618, w: -0.25552964}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Ponytail
parentName: Head
position: {x: -0.91906357, y: 0.033185944, z: 0.085306205}
rotation: {x: 0.8846214, y: -0.16140564, z: -0.16140571, w: 0.40662196}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: LeftEye
parentName: Head
position: {x: -0.36038116, y: 0.9349517, z: 0.37324107}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RightEye
parentName: Head
position: {x: 0.32572034, y: 0.93493646, z: 0.3740002}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HP
parentName: Neck
position: {x: -0, y: 0.5564003, z: -0.013093445}
rotation: {x: -0.0066059004, y: 0, z: -0, w: 0.9999782}
scale: {x: 1, y: 1, z: 1}
- name: Left shoulder
parentName: Chest
position: {x: -0.5100937, y: 2.5979676, z: -0.006517194}
rotation: {x: 0.61099255, y: -0.45493045, z: -0.50389767, w: -0.40720212}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: Left arm
parentName: Left shoulder
position: {x: -0.00000024028122, y: 1.1063323, z: 0.0000009648502}
rotation: {x: 0.08961428, y: 0.18674242, z: 0.049564604, w: 0.9770568}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999994}
- name: ZArmTwist_L
parentName: Left arm
position: {x: 0.018098634, y: 1.7181771, z: 0.013494732}
rotation: {x: 0.003927379, y: 0.00000016391459, z: -0.005265739, w: 0.9999784}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Left elbow
parentName: Left arm
position: {x: 0.00000074878335, y: 2.863116, z: 0.0000005159527}
rotation: {x: -0.0045600305, y: -0.0071857944, z: 0.018300537, w: 0.99979633}
scale: {x: 0.9999999, y: 1, z: 1}
- name: ZHandTwist_L
parentName: Left elbow
position: {x: -0.000001050299, y: 1.4536273, z: 0.0000010660151}
rotation: {x: -0.0000002696179, y: -0.000000033527616, z: -0.00000020861629,
w: 1}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: Left wrist
parentName: Left elbow
position: {x: -0.00000010244548, y: 2.4227123, z: 0.00000038929284}
rotation: {x: 0.0060889795, y: 0.016774157, z: -0.036423013, w: 0.99917716}
scale: {x: 0.9999999, y: 0.9999998, z: 0.99999994}
- name: Thumb0_L
parentName: Left wrist
position: {x: -0.15140891, y: 0.38031897, z: -0.37202144}
rotation: {x: -0.32264507, y: 0.19835205, z: 0.20996985, w: 0.90137076}
scale: {x: 0.99999994, y: 0.9999999, z: 0.9999998}
- name: Thumb1_L
parentName: Thumb0_L
position: {x: -0.0000008940697, y: 0.31930792, z: 0.00000011920929}
rotation: {x: 0.033873167, y: -0.07721896, z: -0.012247404, w: 0.9963633}
scale: {x: 1, y: 1, z: 0.9999999}
- name: Thumb2_L
parentName: Thumb1_L
position: {x: 0.00000086426735, y: 0.276901, z: -0.00000044703484}
rotation: {x: 0.007825249, y: -0.038080312, z: 0.030999158, w: 0.9987631}
scale: {x: 0.99999994, y: 0.9999999, z: 1}
- name: LittleFinger1_L
parentName: Left wrist
position: {x: 0.28065258, y: 0.92829514, z: 0.15581872}
rotation: {x: -0.014686801, y: 0.0013486829, z: 0.016609108, w: 0.9997533}
scale: {x: 0.9999998, y: 0.9999999, z: 0.9999999}
- name: LittleFinger2_L
parentName: LittleFinger1_L
position: {x: 0.000000029802322, y: 0.389349, z: -0.00000014901161}
rotation: {x: 0.01827101, y: -0.042998582, z: 0.036972027, w: 0.9982236}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: LittleFinger3_L
parentName: LittleFinger2_L
position: {x: -0, y: 0.17802924, z: -0.00000023841858}
rotation: {x: -0.09269473, y: 0.07955582, z: 0.0027988963, w: 0.9925073}
scale: {x: 1, y: 1, z: 0.99999994}
- name: RingFinger1_L
parentName: Left wrist
position: {x: 0.05336272, y: 0.9836969, z: 0.074432686}
rotation: {x: -0.019670198, y: 0.013846234, z: 0.0017285991, w: 0.9997092}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: RingFinger2_L
parentName: RingFinger1_L
position: {x: 0.00000035762787, y: 0.47525448, z: -0.00000020116568}
rotation: {x: -0.007682962, y: -0.007058678, z: 0.02062149, w: 0.999733}
scale: {x: 0.99999994, y: 1, z: 0.9999998}
- name: RingFinger3_L
parentName: RingFinger2_L
position: {x: -0.0000003054738, y: 0.25833762, z: -0.00000115484}
rotation: {x: 0.00833604, y: -0.01845804, z: 0.018404065, w: 0.9996255}
scale: {x: 1, y: 0.99999994, z: 0.9999999}
- name: MiddleFinger1_L
parentName: Left wrist
position: {x: -0.11628211, y: 1.0346981, z: -0.028405417}
rotation: {x: -0.028311193, y: 0.017480327, z: 0.0066603376, w: 0.9994241}
scale: {x: 0.9999998, y: 0.99999976, z: 0.9999999}
- name: MiddleFinger2_L
parentName: MiddleFinger1_L
position: {x: -0.00000044703484, y: 0.5047525, z: 0.0000013448298}
rotation: {x: 0.0017438157, y: -0.0054865936, z: 0.006455265, w: 0.9999626}
scale: {x: 0.99999994, y: 1, z: 1}
- name: MiddleFinger3_L
parentName: MiddleFinger2_L
position: {x: -0.00000013411045, y: 0.2739834, z: 0.000000074505806}
rotation: {x: 0.021297807, y: -0.037115436, z: 0.03204606, w: 0.99856997}
scale: {x: 0.9999999, y: 1, z: 0.9999999}
- name: IndexFinger1_L
parentName: Left wrist
position: {x: -0.26676488, y: 1.0224465, z: -0.20754659}
rotation: {x: -0.018095117, y: 0.0062630596, z: 0.012622624, w: 0.999737}
scale: {x: 0.99999994, y: 0.99999976, z: 0.99999994}
- name: IndexFinger2_L
parentName: IndexFinger1_L
position: {x: 0.0000008940697, y: 0.45131105, z: 0.0000018626451}
rotation: {x: -0.005299856, y: -0.005408763, z: 0.01533803, w: 0.99985373}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger3_L
parentName: IndexFinger2_L
position: {x: -0.00000014901161, y: 0.21904673, z: 0.00000064074993}
rotation: {x: 0.022182463, y: -0.002889429, z: -0.023866324, w: 0.99946487}
scale: {x: 1, y: 0.9999998, z: 0.99999994}
- name: Lbraclet1
parentName: Left elbow
position: {x: 0.015220185, y: 1.934866, z: -0.00081418524}
rotation: {x: 0.79088765, y: -0.40934834, z: -0.40934774, w: 0.19840652}
scale: {x: 1, y: 1.0000001, z: 0.99999994}
- name: Lbraclet2
parentName: Left elbow
position: {x: 0.04345836, y: 2.14992, z: -0.03201984}
rotation: {x: 0.7908878, y: -0.4093482, z: -0.40934768, w: 0.19840665}
scale: {x: 1.0000001, y: 1.0000002, z: 1.0000001}
- name: Lbraclet3
parentName: Left elbow
position: {x: 0.05229272, y: 2.3415308, z: -0.037265528}
rotation: {x: 0.7908878, y: -0.40934828, z: -0.4093474, w: 0.19840665}
scale: {x: 1, y: 1, z: 0.9999999}
- name: Lbraclet4
parentName: Left elbow
position: {x: 0.07347037, y: 2.5028238, z: -0.060668934}
rotation: {x: 0.7908878, y: -0.40934828, z: -0.4093474, w: 0.19840665}
scale: {x: 1, y: 1, z: 0.9999999}
- name: Right shoulder
parentName: Chest
position: {x: 0.5100937, y: 2.5979676, z: -0.006517194}
rotation: {x: 0.61099255, y: 0.45493045, z: 0.50389767, w: -0.40720212}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: Right arm
parentName: Right shoulder
position: {x: 0.00000024028122, y: 1.1063323, z: 0.0000009648502}
rotation: {x: 0.08961428, y: -0.18674242, z: -0.049564604, w: 0.9770568}
scale: {x: 0.9999999, y: 0.9999999, z: 0.99999994}
- name: ZArmTwist_R
parentName: Right arm
position: {x: -0.01933013, y: 1.718198, z: 0.014413461}
rotation: {x: 0.004194881, y: 0.00000018626467, z: 0.005623921, w: 0.9999754}
scale: {x: 0.99999994, y: 1, z: 0.99999994}
- name: Right elbow
parentName: Right arm
position: {x: -0.00000074878335, y: 2.863116, z: 0.0000005159527}
rotation: {x: -0.0045600305, y: 0.0071857944, z: -0.018300537, w: 0.99979633}
scale: {x: 0.9999999, y: 1, z: 1}
- name: ZHandTwist_R
parentName: Right elbow
position: {x: 0.000001050299, y: 1.4536273, z: 0.0000010660151}
rotation: {x: -0.0000002696179, y: 0.000000033527616, z: 0.00000020861629, w: 1}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: Right wrist
parentName: Right elbow
position: {x: 0.00000010244548, y: 2.4227123, z: 0.00000038929284}
rotation: {x: 0.0060889795, y: -0.016774157, z: 0.036423013, w: 0.99917716}
scale: {x: 0.9999999, y: 0.9999998, z: 0.99999994}
- name: Thumb0_R
parentName: Right wrist
position: {x: 0.1514082, y: 0.38031754, z: -0.3720224}
rotation: {x: -0.3226419, y: -0.19834992, z: -0.20997544, w: 0.90137106}
scale: {x: 0.9999999, y: 0.9999998, z: 0.99999994}
- name: Thumb1_R
parentName: Thumb0_R
position: {x: 0.00000017881393, y: 0.31930798, z: 0.00000035762787}
rotation: {x: 0.033878442, y: 0.07721504, z: 0.01225025, w: 0.9963634}
scale: {x: 0.99999994, y: 0.9999999, z: 0.9999999}
- name: Thumb2_R
parentName: Thumb1_R
position: {x: 0.0000014901161, y: 0.2768991, z: -0.00000086426735}
rotation: {x: 0.007825247, y: 0.038080394, z: -0.030999076, w: 0.9987631}
scale: {x: 0.99999994, y: 0.9999999, z: 0.9999998}
- name: LittleFinger1_R
parentName: Right wrist
position: {x: -0.28065258, y: 0.92829514, z: 0.15581872}
rotation: {x: -0.014686801, y: -0.0013486829, z: -0.016609108, w: 0.9997533}
scale: {x: 0.9999998, y: 0.9999999, z: 0.9999999}
- name: LittleFinger2_R
parentName: LittleFinger1_R
position: {x: -0.000000029802322, y: 0.389349, z: -0.00000014901161}
rotation: {x: 0.01827101, y: 0.042998582, z: -0.036972027, w: 0.9982236}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: LittleFinger3_R
parentName: LittleFinger2_R
position: {x: -0, y: 0.17802924, z: -0.00000023841858}
rotation: {x: -0.09269473, y: -0.07955582, z: -0.0027988963, w: 0.9925073}
scale: {x: 1, y: 1, z: 0.99999994}
- name: RingFinger1_R
parentName: Right wrist
position: {x: -0.05336272, y: 0.9836969, z: 0.074432686}
rotation: {x: -0.019670198, y: -0.013846234, z: -0.0017285991, w: 0.9997092}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: RingFinger2_R
parentName: RingFinger1_R
position: {x: -0.00000035762787, y: 0.47525448, z: -0.00000020116568}
rotation: {x: -0.007682962, y: 0.007058678, z: -0.02062149, w: 0.999733}
scale: {x: 0.99999994, y: 1, z: 0.9999998}
- name: RingFinger3_R
parentName: RingFinger2_R
position: {x: 0.0000003054738, y: 0.25833762, z: -0.00000115484}
rotation: {x: 0.00833604, y: 0.01845804, z: -0.018404065, w: 0.9996255}
scale: {x: 1, y: 0.99999994, z: 0.9999999}
- name: MiddleFinger1_R
parentName: Right wrist
position: {x: 0.11628211, y: 1.0346981, z: -0.028405417}
rotation: {x: -0.028311193, y: -0.017480327, z: -0.0066603376, w: 0.9994241}
scale: {x: 0.9999998, y: 0.99999976, z: 0.9999999}
- name: MiddleFinger2_R
parentName: MiddleFinger1_R
position: {x: 0.00000044703484, y: 0.5047525, z: 0.0000013448298}
rotation: {x: 0.0017438157, y: 0.0054865936, z: -0.006455265, w: 0.9999626}
scale: {x: 0.99999994, y: 1, z: 1}
- name: MiddleFinger3_R
parentName: MiddleFinger2_R
position: {x: 0.00000013411045, y: 0.2739834, z: 0.000000074505806}
rotation: {x: 0.021297807, y: 0.037115436, z: -0.03204606, w: 0.99856997}
scale: {x: 0.9999999, y: 1, z: 0.9999999}
- name: IndexFinger1_R
parentName: Right wrist
position: {x: 0.26676488, y: 1.0224465, z: -0.20754659}
rotation: {x: -0.018095117, y: -0.0062630596, z: -0.012622624, w: 0.999737}
scale: {x: 0.99999994, y: 0.99999976, z: 0.99999994}
- name: IndexFinger2_R
parentName: IndexFinger1_R
position: {x: -0.0000008940697, y: 0.45131105, z: 0.0000018626451}
rotation: {x: -0.005299856, y: 0.005408763, z: -0.01533803, w: 0.99985373}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger3_R
parentName: IndexFinger2_R
position: {x: 0.00000014901161, y: 0.21904673, z: 0.00000064074993}
rotation: {x: 0.022182463, y: 0.002889429, z: 0.023866324, w: 0.99946487}
scale: {x: 1, y: 0.9999998, z: 0.99999994}
- name: M_Lbraclet1
parentName: Right elbow
position: {x: 0.0077675474, y: 2.0695443, z: 0.035844095}
rotation: {x: 0.7908878, y: 0.4093483, z: 0.4093474, w: 0.19840676}
scale: {x: 0.9999998, y: 1, z: 0.9999999}
- name: M_Lbraclet2
parentName: Right elbow
position: {x: -0.020467656, y: 2.2846036, z: 0.004642022}
rotation: {x: 0.7908878, y: 0.40934828, z: 0.4093474, w: 0.19840665}
scale: {x: 1, y: 1, z: 0.9999999}
- name: M_Lbraclet3
parentName: Right elbow
position: {x: -0.029302131, y: 2.4762154, z: -0.0006036671}
rotation: {x: 0.7908878, y: 0.40934828, z: 0.4093474, w: 0.19840665}
scale: {x: 1, y: 1, z: 0.9999999}
- name: Gold_Dogtag
parentName: Chest
position: {x: 0.001001358, y: 2.697121, z: 0.6688855}
rotation: {x: 0.95641065, y: 0, z: -0, w: 0.29202533}
scale: {x: 1, y: 1, z: 1.0000005}
- name: Right leg
parentName: Hips
position: {x: 0.98319244, y: -0.7430849, z: -0.23797143}
rotation: {x: 0.99990225, y: -0.00010488589, z: -0.0048195557, w: 0.013125586}
scale: {x: 0.9999561, y: 0.99999994, z: 0.9996556}
- name: Right knee
parentName: Right leg
position: {x: 0.00000005448237, y: 4.511802, z: 0.000000010244548}
rotation: {x: 0.04841542, y: 0.005851758, z: -0.006155488, w: 0.99879116}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Right ankle
parentName: Right knee
position: {x: 0.00000006362825, y: 5.3052125, z: 0.00000003678724}
rotation: {x: -0.52627283, y: -0.0016923014, z: 0.00046093814, w: 0.85031396}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Right toe
parentName: Right ankle
position: {x: -0.0000001148367, y: 1.4274058, z: 0.00000007201743}
rotation: {x: -0.000000028581455, y: 0.9647112, z: -0.2633104, w: -0.000000070458505}
scale: {x: 1, y: 0.99999976, z: 1}
- name: Strap
parentName: Right leg
position: {x: -0.5792859, y: 0.034192074, z: 0.15533659}
rotation: {x: 0.25262356, y: 0.4368441, z: -0.4278724, w: 0.74984926}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: Left leg
parentName: Hips
position: {x: -0.98319244, y: -0.7430849, z: -0.23797143}
rotation: {x: 0.99987805, y: 0.006892916, z: 0.004743315, w: 0.013189094}
scale: {x: 1.0000199, y: 1.0000001, z: 1.0001571}
- name: Left knee
parentName: Left leg
position: {x: -0.000000009080395, y: 4.5118484, z: -0.0000000027939677}
rotation: {x: 0.04839214, y: -0.0045716185, z: 0.0049081245, w: 0.9988059}
scale: {x: 0.9999999, y: 0.99999976, z: 0.9999998}
- name: Left ankle
parentName: Left knee
position: {x: -0.000000036643996, y: 5.305131, z: 0.000000035390258}
rotation: {x: -0.5261629, y: -0.000033713226, z: 0.0000087311655, w: 0.8503838}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: Left toe
parentName: Left ankle
position: {x: 0.00000005706314, y: 1.4268835, z: -0.00000008525967}
rotation: {x: -1.7180882e-10, y: 0.96468276, z: -0.2634145, w: -0.00000007821498}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_0_1
parentName: Hips
position: {x: -0.77758026, y: 1.3869809, z: 0.63305205}
rotation: {x: 0.99406993, y: -0.07657261, z: -0.07657242, w: 0.009917993}
scale: {x: 1.0000017, y: 1, z: 1.0000001}
- name: Skirt_1_1
parentName: Skirt_0_1
position: {x: -0.00000010430813, y: 0.7959914, z: -0.00000014156103}
rotation: {x: 0.004421312, y: 0.00052981416, z: -0.0011937001, w: 0.9999894}
scale: {x: 1.0000001, y: 1, z: 1}
- name: Skirt_2_1
parentName: Skirt_1_1
position: {x: 0.000000074505806, y: 0.8161978, z: 0.000000027474016}
rotation: {x: 0.0003864486, y: 0.0009822515, z: -0.0010300617, w: 0.9999989}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Skirt_3_1
parentName: Skirt_2_1
position: {x: 0.00000016391277, y: 0.8403449, z: 0.00000014528632}
rotation: {x: -0.003316291, y: 0.0013817224, z: -0.00087179936, w: 0.9999932}
scale: {x: 0.99999994, y: 0.9999998, z: 0.9999999}
- name: Skirt_4_1
parentName: Skirt_3_1
position: {x: -0.0000002682209, y: 0.86837184, z: 0.00000015646219}
rotation: {x: -0.0066282363, y: 0.0017461862, z: -0.00074414234, w: 0.9999763}
scale: {x: 1.0000001, y: 1, z: 1}
- name: Skirt_5_1
parentName: Skirt_4_1
position: {x: -0.00000014901161, y: 0.9004262, z: 0}
rotation: {x: -0.009515894, y: 0.0020716696, z: -0.0006460332, w: 0.9999524}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Skirt_6_1
parentName: Skirt_5_1
position: {x: -0.000000044703484, y: 0.93673086, z: 0}
rotation: {x: -0.011952625, y: 0.0023574715, z: -0.000578643, w: 0.9999256}
scale: {x: 1, y: 1.0000001, z: 0.99999994}
- name: Skirt_7_1
parentName: Skirt_6_1
position: {x: -0.00000011920929, y: 0.9775989, z: -0.000000014901161}
rotation: {x: -0.013938978, y: 0.0026093614, z: -0.0005448617, w: 0.9998993}
scale: {x: 0.99999994, y: 1, z: 0.9999999}
- name: Skirt_8_1
parentName: Skirt_7_1
position: {x: 0.0000004172325, y: 1.0234085, z: 0.000000059604645}
rotation: {x: 0.99408907, y: -0.06791128, z: -0.06788393, w: -0.050663363}
scale: {x: 1.0000042, y: 1.0000001, z: 1.0000018}
- name: Skirt_0_2
parentName: Hips
position: {x: -1.0996647, y: 1.4003781, z: 0.06618804}
rotation: {x: 0.9879894, y: -0.106284305, z: -0.106277846, w: -0.035856605}
scale: {x: 1.0000015, y: 1.0000001, z: 1.0000001}
- name: Skirt_1_2
parentName: Skirt_0_2
position: {x: -0.000000067055225, y: 0.779604, z: 0.000000059604645}
rotation: {x: 0.010237008, y: 0.0002520136, z: -0.0025562549, w: 0.9999443}
scale: {x: 1, y: 0.99999994, z: 1.0000001}
- name: Skirt_2_2
parentName: Skirt_1_2
position: {x: 0.0000004172325, y: 0.79706883, z: -0.000000029802322}
rotation: {x: 0.006026315, y: 0.00048336707, z: -0.0018728164, w: 0.99998}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: Skirt_3_2
parentName: Skirt_2_2
position: {x: 0.00000009685755, y: 0.8148689, z: -0.000000059604645}
rotation: {x: 0.0020825483, y: 0.0006952331, z: -0.0012344222, w: 0.99999684}
scale: {x: 1.0000001, y: 0.99999994, z: 1.0000001}
- name: Skirt_4_2
parentName: Skirt_3_2
position: {x: 0.00000032037497, y: 0.8327371, z: 0.000000029802322}
rotation: {x: -0.0016158385, y: 0.0008977049, z: -0.0006469002, w: 0.9999981}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: Skirt_5_2
parentName: Skirt_4_2
position: {x: -0.00000016391277, y: 0.85061383, z: 0.000000059604645}
rotation: {x: -0.0050867526, y: 0.001095369, z: -0.00011044192, w: 0.99998647}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_6_2
parentName: Skirt_5_2
position: {x: 0.00000033155084, y: 0.8685423, z: -0.000000014901161}
rotation: {x: -0.008346124, y: 0.0012864539, z: 0.00038127828, w: 0.9999643}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: Skirt_7_2
parentName: Skirt_6_2
position: {x: -0.00000021234155, y: 0.88669765, z: -0.000000014901161}
rotation: {x: -0.011403916, y: 0.001482345, z: 0.00081923656, w: 0.99993354}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Skirt_0_3
parentName: Hips
position: {x: -0.77758026, y: 1.4137745, z: -0.50067586}
rotation: {x: 0.9916483, y: -0.075135894, z: -0.07511874, w: -0.07311264}
scale: {x: 1.0000031, y: 1.0000002, z: 1.0000023}
- name: Skirt_1_3
parentName: Skirt_0_3
position: {x: 0.00000018253922, y: 0.7499666, z: -0.000000037252903}
rotation: {x: 0.017146591, y: -0.0001558668, z: -0.0026238533, w: 0.99984956}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Skirt_2_3
parentName: Skirt_1_3
position: {x: 0.0000002719462, y: 0.7663247, z: 0.000000059604645}
rotation: {x: 0.013092151, y: -0.00025379128, z: -0.0018415642, w: 0.99991256}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Skirt_3_3
parentName: Skirt_2_3
position: {x: 0.000000044703484, y: 0.7798524, z: -0.00000010430813}
rotation: {x: 0.009411712, y: -0.0003527111, z: -0.0011138973, w: 0.99995506}
scale: {x: 1, y: 0.99999994, z: 0.9999999}
- name: Skirt_4_3
parentName: Skirt_3_3
position: {x: 0.000000052154064, y: 0.7900609, z: -0.0000004172325}
rotation: {x: 0.0059966985, y: -0.0004471259, z: -0.00042994737, w: 0.9999819}
scale: {x: 0.99999994, y: 0.99999976, z: 1}
- name: Skirt_5_3
parentName: Skirt_4_3
position: {x: 0.00000012665987, y: 0.7966547, z: -0.00000023841858}
rotation: {x: 0.0027510691, y: -0.000545192, z: 0.00023580443, w: 0.99999607}
scale: {x: 1, y: 0.9999999, z: 0.9999999}
- name: Skirt_6_3
parentName: Skirt_5_3
position: {x: -0.00000022351742, y: 0.7994399, z: -0.00000023841858}
rotation: {x: -0.00041908008, y: -0.00065255957, z: 0.000906292, w: 0.9999993}
scale: {x: 1.0000001, y: 1, z: 1}
- name: Skirt_7_3
parentName: Skirt_6_3
position: {x: -0, y: 0.7983353, z: 0.00000028312206}
rotation: {x: -0.0036056726, y: -0.00077099755, z: 0.0015990987, w: 0.99999195}
scale: {x: 0.9999999, y: 1, z: 0.99999994}
- name: Skirt_1_4
parentName: Hips
position: {x: -0, y: 0.6968203, z: -0.8617226}
rotation: {x: 0.9942847, y: 0, z: 0, w: -0.10676153}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Skirt_2_4
parentName: Skirt_1_4
position: {x: -0, y: 0.7498747, z: -0.00000011920929}
rotation: {x: 0.016516522, y: 0, z: -0, w: 0.9998636}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Skirt_3_4
parentName: Skirt_2_4
position: {x: -0, y: 0.762258, z: -0.00000011920929}
rotation: {x: 0.013050768, y: 0, z: -0, w: 0.9999148}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Skirt_4_4
parentName: Skirt_3_4
position: {x: -0, y: 0.7700525, z: -0.00000017881393}
rotation: {x: 0.009937001, y: 0, z: -0, w: 0.99995065}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_5_4
parentName: Skirt_4_4
position: {x: -0, y: 0.7728927, z: 0.00000023841858}
rotation: {x: 0.0070598107, y: 0, z: -0, w: 0.9999751}
scale: {x: 1, y: 0.9999998, z: 0.9999999}
- name: Skirt_6_4
parentName: Skirt_5_4
position: {x: -0, y: 0.77049416, z: 0.00000023841858}
rotation: {x: 0.0043040016, y: 0, z: -0, w: 0.99999076}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Skirt_7_4
parentName: Skirt_6_4
position: {x: -0, y: 0.7626839, z: 0}
rotation: {x: 0.0015548636, y: 0, z: -0, w: 0.9999988}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Skirt_1_5
parentName: Hips
position: {x: 0.8975506, y: 0.6802902, z: -0.60096526}
rotation: {x: 0.9904325, y: 0.073771454, z: 0.07378173, w: -0.090318985}
scale: {x: 0.9999981, y: 0.9999999, z: 0.999998}
- name: Skirt_2_5
parentName: Skirt_1_5
position: {x: -0.000000040978193, y: 0.7663248, z: 0.00000010430813}
rotation: {x: 0.013092144, y: 0.00025380525, z: 0.0018415874, w: 0.99991256}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Skirt_3_5
parentName: Skirt_2_5
position: {x: -0.000000067055225, y: 0.77985334, z: 0.00000010430813}
rotation: {x: 0.009411766, y: 0.00035271386, z: 0.0011138944, w: 0.99995506}
scale: {x: 1.0000001, y: 1, z: 0.99999994}
- name: Skirt_4_5
parentName: Skirt_3_5
position: {x: -0.00000010430813, y: 0.79006284, z: -0.000000074505806}
rotation: {x: 0.0059967525, y: 0.00044711377, z: 0.00042996497, w: 0.9999819}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_5_5
parentName: Skirt_4_5
position: {x: 0.00000026077032, y: 0.7966569, z: -0.00000017881393}
rotation: {x: 0.0027511439, y: 0.00054471375, z: -0.00023522884, w: 0.99999607}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Skirt_6_5
parentName: Skirt_5_5
position: {x: -0.00000010430813, y: 0.7994407, z: -0.00000011920929}
rotation: {x: -0.00041893244, y: 0.00065257074, z: -0.0009062046, w: 0.9999993}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Skirt_7_5
parentName: Skirt_6_5
position: {x: -0.00000011920929, y: 0.79833615, z: 0.000000074505806}
rotation: {x: -0.0036064626, y: 0.0007724109, z: -0.0016010657, w: 0.99999195}
scale: {x: 0.99999976, y: 0.9999999, z: 0.9999999}
- name: Skirt_0_6
parentName: Hips
position: {x: 1.0996647, y: 1.4003772, z: 0.06618792}
rotation: {x: 0.98798925, y: 0.10628526, z: 0.10627789, w: -0.035857774}
scale: {x: 1.0000015, y: 1.0000002, z: 1.0000001}
- name: Skirt_1_6
parentName: Skirt_0_6
position: {x: -0.00000016391277, y: 0.77960426, z: 0}
rotation: {x: 0.010236995, y: -0.00025202057, z: 0.0025564206, w: 0.9999443}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Skirt_2_6
parentName: Skirt_1_6
position: {x: 0.00000028312206, y: 0.7970696, z: 0.0000002682209}
rotation: {x: 0.0060262815, y: -0.00048336617, z: 0.0018728029, w: 0.99998}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: Skirt_3_6
parentName: Skirt_2_6
position: {x: 0.000000007450581, y: 0.8148688, z: 0.000000059604645}
rotation: {x: 0.0020825176, y: -0.0006953416, z: 0.0012345419, w: 0.99999684}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_4_6
parentName: Skirt_3_6
position: {x: -0.00000029057264, y: 0.83273757, z: 0.00000023841858}
rotation: {x: -0.001615709, y: -0.00089748466, z: 0.00064664084, w: 0.9999981}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Skirt_5_6
parentName: Skirt_4_6
position: {x: 0.00000008568168, y: 0.8506144, z: -0.000000074505806}
rotation: {x: -0.0050865826, y: -0.0010943594, z: 0.0001093774, w: 0.99998647}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: Skirt_6_6
parentName: Skirt_5_6
position: {x: 0.00000013038516, y: 0.8685403, z: -0.00000011920929}
rotation: {x: -0.008346331, y: -0.001287592, z: -0.00038014894, w: 0.9999643}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_7_6
parentName: Skirt_6_6
position: {x: 0.00000019185245, y: 0.8866984, z: -0.00000010430813}
rotation: {x: -0.011404403, y: -0.0014846661, z: -0.0008168093, w: 0.99993354}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: Skirt_0_7
parentName: Hips
position: {x: 0.77758026, y: 1.3869809, z: 0.63305193}
rotation: {x: 0.99406993, y: 0.07657264, z: 0.07657232, w: 0.009918118}
scale: {x: 1.0000025, y: 1, z: 1.0000001}
- name: Skirt_1_7
parentName: Skirt_0_7
position: {x: 0.00000011920929, y: 0.7959927, z: 0.000000074505806}
rotation: {x: 0.0044213855, y: -0.00052979676, z: 0.0011937189, w: 0.9999894}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_2_7
parentName: Skirt_1_7
position: {x: 0.00000008940697, y: 0.816197, z: -0.00000002514571}
rotation: {x: 0.00038644875, y: -0.0009822592, z: 0.0010300601, w: 0.9999989}
scale: {x: 0.99999994, y: 0.9999998, z: 0.99999994}
- name: Skirt_3_7
parentName: Skirt_2_7
position: {x: 0.00000017881393, y: 0.8403479, z: 0.000000115484}
rotation: {x: -0.0033156804, y: -0.0013817219, z: 0.0008718806, w: 0.9999932}
scale: {x: 0.99999994, y: 0.9999998, z: 0.9999999}
- name: Skirt_4_7
parentName: Skirt_3_7
position: {x: -0.00000013411045, y: 0.86837155, z: 0.00000008568168}
rotation: {x: -0.0066294307, y: -0.0017462571, z: 0.00074401696, w: 0.9999763}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Skirt_5_7
parentName: Skirt_4_7
position: {x: -0.000000044703484, y: 0.9004268, z: 0.00000011920929}
rotation: {x: -0.009514747, y: -0.0020709923, z: 0.0006455845, w: 0.9999524}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Skirt_6_7
parentName: Skirt_5_7
position: {x: 0.00000025331974, y: 0.93673015, z: -0.000000014901161}
rotation: {x: -0.011953553, y: -0.0023576566, z: 0.00057865, w: 0.9999256}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_7_7
parentName: Skirt_6_7
position: {x: 0.000000074505806, y: 0.9776005, z: 0.000000059604645}
rotation: {x: -0.013938762, y: -0.002610761, z: 0.00054619514, w: 0.9998993}
scale: {x: 1, y: 1, z: 0.9999999}
- name: Skirt_8_7
parentName: Skirt_7_7
position: {x: -0.000000029802322, y: 1.0234069, z: -0.00000014901161}
rotation: {x: 0.994091, y: 0.06787896, z: 0.06788454, w: -0.050668437}
scale: {x: 0.9999991, y: 1, z: 0.99999964}
- name: Body
parentName: new model(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:
|