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
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
|
fileFormatVersion: 2
guid: 847dd99658a23a54cb5a4b03c84e7a03
ModelImporter:
serializedVersion: 23
fileIDToRecycleName:
100000: Armature
100002: BackHair
100004: BackHair.end
100006: BackHair1.end
100008: BackHair1.R
100010: BackHair_u
100012: BackHair_u.end
100014: BackHairRoot
100016: BackTopHair
100018: BackTopHair.end
100020: BackTopHair.end.L
100022: BackTopHair.L
100024: Body
100026: Boushi
100028: Chest
100030: Ear.end.L
100032: Ear.end.R
100034: Ear.L
100036: Ear.R
100038: Ear1.L
100040: Ear1.R
100042: Food
100044: Food_end
100046: foot.L
100048: foot.R
100050: FrontHair
100052: FrontHair.end
100054: FrontHair.end.L
100056: FrontHair.end.R
100058: FrontHair.L
100060: FrontHair.R
100062: FrontHairRoot
100064: FrontTopHair.end.L
100066: FrontTopHair.end.R
100068: FrontTopHair.L
100070: FrontTopHair.R
100072: Hair
100074: Hand.L
100076: Hand.R
100078: Head
100080: Hips
100082: Index Distal.L
100084: Index Distal.R
100086: Index Intermediate.L
100088: Index Intermediate.R
100090: Index Proximal.L
100092: Index Proximal.R
100094: Index.end.L
100096: Index.end.R
100098: Jacket
100100: jacket.end.L
100102: jacket.end.R
100104: jacket.L
100106: jacket.R
100108: jacket1.L
100110: jacket1.R
100112: Jacket_sater
100114: Jacket_shirt
100116: LeftEye
100118: Little Distal.L
100120: Little Distal.R
100122: Little Intermediate.L
100124: Little Intermediate.R
100126: Little Proximal.L
100128: Little Proximal.R
100130: Little.end.L
100132: Little.end.R
100134: //RootNode
100136: lower_arm.L
100138: lower_arm.R
100140: lower_leg.L
100142: lower_leg.R
100144: Middle Distal.L
100146: Middle Distal.R
100148: Middle Intermediate.L
100150: Middle Intermediate.R
100152: Middle Proximal.L
100154: Middle Proximal.R
100156: Middle.end.L
100158: Middle.end.R
100160: Mimi
100162: Neck
100164: Neck_arm_foot
100166: Necklace
100168: necklace3
100170: necklace3.end
100172: necklace4
100174: necklace4.end
100176: nekkless
100178: nekkless.001
100180: nekkless.002
100182: nekkless_root
100184: ohterBody
100186: otherBody_full
100188: RightEye
100190: Ring Distal.L
100192: Ring Distal.R
100194: Ring Intermediate.L
100196: Ring Intermediate.R
100198: Ring Proximal.L
100200: Ring Proximal.R
100202: Ring.end.L
100204: Ring.end.R
100206: Sater
100208: Shippo
100210: Shirt
100212: Shirt_sater
100214: Shoes
100216: shoulder.L
100218: shoulder.R
100220: SideHair.end.L
100222: SideHair.L
100224: Spine
100226: Tail.1
100228: Tail.2
100230: Tail.3
100232: Tail.4
100234: Tail.end
100236: Thumb Distal.L
100238: Thumb Distal.R
100240: Thumb Intermediate.L
100242: Thumb Intermediate.R
100244: Thumb Proximal.L
100246: Thumb Proximal.R
100248: Thumb.end.L
100250: Thumb.end.R
100252: toe.L
100254: toe.R
100256: TopHair1
100258: TopHair1.end
100260: TopHair1.end.L
100262: TopHair1.end.R
100264: TopHair1.L
100266: TopHair1.R
100268: TopHair2
100270: TopHair2.end
100272: TopHair3
100274: TopHair3.end
100276: TopHairRoot
100278: TopSideHair
100280: TopSideHair.end
100282: upper_arm.L
100284: upper_arm.R
100286: upper_leg.L
100288: upper_leg.R
100290: zipper
100292: zipper.end
100294: zipper1
100296: zipper1.end
100298: zipper2
100300: zipper2.end
100302: zipper3
100304: zipper3.end
100306: zipper4
100308: zipper4.end
100310: Zubon
400000: Armature
400002: BackHair
400004: BackHair.end
400006: BackHair1.end
400008: BackHair1.R
400010: BackHair_u
400012: BackHair_u.end
400014: BackHairRoot
400016: BackTopHair
400018: BackTopHair.end
400020: BackTopHair.end.L
400022: BackTopHair.L
400024: Body
400026: Boushi
400028: Chest
400030: Ear.end.L
400032: Ear.end.R
400034: Ear.L
400036: Ear.R
400038: Ear1.L
400040: Ear1.R
400042: Food
400044: Food_end
400046: foot.L
400048: foot.R
400050: FrontHair
400052: FrontHair.end
400054: FrontHair.end.L
400056: FrontHair.end.R
400058: FrontHair.L
400060: FrontHair.R
400062: FrontHairRoot
400064: FrontTopHair.end.L
400066: FrontTopHair.end.R
400068: FrontTopHair.L
400070: FrontTopHair.R
400072: Hair
400074: Hand.L
400076: Hand.R
400078: Head
400080: Hips
400082: Index Distal.L
400084: Index Distal.R
400086: Index Intermediate.L
400088: Index Intermediate.R
400090: Index Proximal.L
400092: Index Proximal.R
400094: Index.end.L
400096: Index.end.R
400098: Jacket
400100: jacket.end.L
400102: jacket.end.R
400104: jacket.L
400106: jacket.R
400108: jacket1.L
400110: jacket1.R
400112: Jacket_sater
400114: Jacket_shirt
400116: LeftEye
400118: Little Distal.L
400120: Little Distal.R
400122: Little Intermediate.L
400124: Little Intermediate.R
400126: Little Proximal.L
400128: Little Proximal.R
400130: Little.end.L
400132: Little.end.R
400134: //RootNode
400136: lower_arm.L
400138: lower_arm.R
400140: lower_leg.L
400142: lower_leg.R
400144: Middle Distal.L
400146: Middle Distal.R
400148: Middle Intermediate.L
400150: Middle Intermediate.R
400152: Middle Proximal.L
400154: Middle Proximal.R
400156: Middle.end.L
400158: Middle.end.R
400160: Mimi
400162: Neck
400164: Neck_arm_foot
400166: Necklace
400168: necklace3
400170: necklace3.end
400172: necklace4
400174: necklace4.end
400176: nekkless
400178: nekkless.001
400180: nekkless.002
400182: nekkless_root
400184: ohterBody
400186: otherBody_full
400188: RightEye
400190: Ring Distal.L
400192: Ring Distal.R
400194: Ring Intermediate.L
400196: Ring Intermediate.R
400198: Ring Proximal.L
400200: Ring Proximal.R
400202: Ring.end.L
400204: Ring.end.R
400206: Sater
400208: Shippo
400210: Shirt
400212: Shirt_sater
400214: Shoes
400216: shoulder.L
400218: shoulder.R
400220: SideHair.end.L
400222: SideHair.L
400224: Spine
400226: Tail.1
400228: Tail.2
400230: Tail.3
400232: Tail.4
400234: Tail.end
400236: Thumb Distal.L
400238: Thumb Distal.R
400240: Thumb Intermediate.L
400242: Thumb Intermediate.R
400244: Thumb Proximal.L
400246: Thumb Proximal.R
400248: Thumb.end.L
400250: Thumb.end.R
400252: toe.L
400254: toe.R
400256: TopHair1
400258: TopHair1.end
400260: TopHair1.end.L
400262: TopHair1.end.R
400264: TopHair1.L
400266: TopHair1.R
400268: TopHair2
400270: TopHair2.end
400272: TopHair3
400274: TopHair3.end
400276: TopHairRoot
400278: TopSideHair
400280: TopSideHair.end
400282: upper_arm.L
400284: upper_arm.R
400286: upper_leg.L
400288: upper_leg.R
400290: zipper
400292: zipper.end
400294: zipper1
400296: zipper1.end
400298: zipper2
400300: zipper2.end
400302: zipper3
400304: zipper3.end
400306: zipper4
400308: zipper4.end
400310: Zubon
2100000: Ltex1
2100002: kinzoku
2100004: Ltex2
2100006: toumei
2100008: emotion
2100010: maegami
4300000: Boushi
4300002: Shippo
4300004: Jacket_sater
4300006: Shirt_sater
4300008: Jacket
4300010: Jacket_shirt
4300012: Sater
4300014: Shoes
4300016: Mimi
4300018: Body
4300020: otherBody_full
4300022: Necklace
4300024: Hair
4300026: Shirt
4300028: Neck_arm_foot
4300030: ohterBody
4300032: Zubon
9500000: //RootNode
13700000: Body
13700002: Boushi
13700004: Hair
13700006: Jacket
13700008: Jacket_sater
13700010: Jacket_shirt
13700012: Mimi
13700014: Neck_arm_foot
13700016: Necklace
13700018: ohterBody
13700020: otherBody_full
13700022: Sater
13700024: Shippo
13700026: Shirt
13700028: Shirt_sater
13700030: Shoes
13700032: Zubon
2186277476908879412: ImportLogs
externalObjects:
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Ltex1
second: {fileID: 2100000, guid: b2436ee93071e8a45ab6208429243be7, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Ltex2
second: {fileID: 2100000, guid: 0d0fed13f33b315409f121a84dbb0350, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: emotion
second: {fileID: 2100000, guid: bbaeaf82d0064564d9bb39584287f71b, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: kinzoku
second: {fileID: 2100000, guid: 27c4254ca54d54e499a21885134810fc, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: maegami
second: {fileID: 2100000, guid: db8a608b32ec4564d9b7eca0e8215497, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: toumei
second: {fileID: 2100000, guid: ba0a8bf502217b04c80009d2afa720ec, type: 2}
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 3
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
preserveHierarchy: 0
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
previousCalculatedGlobalScale: 1
hasPreviousCalculatedGlobalScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
importAnimation: 1
copyAvatar: 0
humanDescription:
serializedVersion: 2
human:
- boneName: Hips
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: upper_leg.L
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: upper_leg.R
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: lower_leg.L
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: lower_leg.R
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: foot.L
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: foot.R
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: shoulder.L
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: shoulder.R
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: upper_arm.L
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: upper_arm.R
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: lower_arm.L
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: lower_arm.R
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: Hand.L
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: Hand.R
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: toe.L
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: toe.R
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: Thumb Proximal.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: Thumb Intermediate.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: Thumb Distal.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: Index Proximal.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: Index Intermediate.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: Index Distal.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: Middle Proximal.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: Middle Intermediate.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: Middle Distal.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: Ring Proximal.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: Ring Intermediate.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: Ring Distal.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: Little Proximal.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: Little Intermediate.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: Little Distal.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: Thumb Proximal.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: Thumb Intermediate.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: Thumb Distal.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: Index Proximal.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: Index Intermediate.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: Index Distal.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: Middle Proximal.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: Middle Intermediate.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: Middle Distal.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: Ring Proximal.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: Ring Intermediate.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: Ring Distal.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: Little Proximal.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: Little Intermediate.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: Little Distal.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: LouON_ver1.03_parts(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: Boushi
parentName: LouON_ver1.03_parts(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: Shippo
parentName: LouON_ver1.03_parts(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: Armature
parentName: LouON_ver1.03_parts(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.0014175723, z: 0.7677878}
rotation: {x: 0.692375, y: -3.2943613e-11, z: -0.00055170513, w: 0.7215377}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Tail.1
parentName: Hips
position: {x: -0.000005347705, y: -0.022863412, z: -0.090328716}
rotation: {x: 0.9893754, y: 0.00033832516, z: -0.00043580044, w: -0.14538226}
scale: {x: 0.99999994, y: 1, z: 1.0000021}
- name: Tail.2
parentName: Tail.1
position: {x: -5.40519e-13, y: 0.11870544, z: 3.2834846e-13}
rotation: {x: 0.0067222225, y: 2.3267822e-10, z: -2.3392536e-11, w: 0.9999774}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Tail.3
parentName: Tail.2
position: {x: 3.638254e-12, y: 0.11879652, z: -0.000000029801974}
rotation: {x: 0.09939909, y: 6.0578293e-16, z: -4.614426e-17, w: 0.9950477}
scale: {x: 1, y: 0.99999994, z: 0.9999999}
- name: Tail.4
parentName: Tail.3
position: {x: -0, y: 0.096362956, z: -0.000000014900831}
rotation: {x: 0.17769165, y: -1.4101778e-17, z: -4.230678e-17, w: 0.9840862}
scale: {x: 1, y: 1, z: 1}
- name: Tail.end
parentName: Tail.4
position: {x: -0, y: 0.08385949, z: 2.6567637e-13}
rotation: {x: 0.06739629, y: -4.1728248e-17, z: -6.9547076e-17, w: 0.9977263}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Spine
parentName: Hips
position: {x: 1.0220447e-10, y: 0.020659039, z: 9.385195e-10}
rotation: {x: -0.0003809773, y: 0.00045420116, z: 0.00047363553, w: 0.99999976}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Chest
parentName: Spine
position: {x: 1.5006663e-11, y: 0.1090223, z: 0.0000000018623796}
rotation: {x: -0.030636176, y: -0.0000699915, z: -0.00007762158, w: 0.9995306}
scale: {x: 1, y: 0.99999994, z: 1}
- name: shoulder.L
parentName: Chest
position: {x: -0.061520234, y: 0.1660602, z: -0.008630987}
rotation: {x: -0.47239646, y: 0.47561848, z: 0.5274691, w: 0.52192444}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: upper_arm.L
parentName: shoulder.L
position: {x: 4.656613e-10, y: 0.05056612, z: 0.00000007208655}
rotation: {x: 0.00093286764, y: -0.00093313085, z: -0.0042724083, w: 0.99999005}
scale: {x: 1, y: 1, z: 1}
- name: lower_arm.L
parentName: upper_arm.L
position: {x: -6.54306e-10, y: 0.21297732, z: 0.0000000024546838}
rotation: {x: -5.9781613e-10, y: 7.417555e-12, z: 0.007827293, w: 0.99996936}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: Hand.L
parentName: lower_arm.L
position: {x: -0, y: 0.206698, z: -0.00000011636576}
rotation: {x: -0.000912804, y: 0.00092751224, z: 0.009476419, w: 0.9999543}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Middle Proximal.L
parentName: Hand.L
position: {x: -0.005358817, y: 0.058685772, z: -0.0002738528}
rotation: {x: 0.0009400518, y: -0.00089988724, z: -0.039283168, w: 0.9992273}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Middle Intermediate.L
parentName: Middle Proximal.L
position: {x: 0.000000002680204, y: 0.027381806, z: -0.00000011947652}
rotation: {x: 5.8210034e-11, y: -5.360235e-11, z: -0.000000034458935, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Middle Distal.L
parentName: Middle Intermediate.L
position: {x: 0.0000000027939677, y: 0.022189876, z: -0.00000011954798}
rotation: {x: -9.649474e-15, y: 3.2265857e-16, z: 0.00000012945384, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Middle.end.L
parentName: Middle Distal.L
position: {x: 9.313226e-10, y: 0.01768196, z: -0.00000011954798}
rotation: {x: 1.0769899e-14, y: -3.9551695e-16, z: -0.00000014062971, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Ring Proximal.L
parentName: Hand.L
position: {x: 0.009394443, y: 0.056629397, z: -0.00024994777}
rotation: {x: 0.0009400516, y: -0.0008998872, z: -0.039283156, w: 0.9992273}
scale: {x: 1, y: 1, z: 1}
- name: Ring Intermediate.L
parentName: Ring Proximal.L
position: {x: 0.0000000024603177, y: 0.027693799, z: 0.0000000010821215}
rotation: {x: 2.3282636e-10, y: -1.572071e-10, z: 0.000000054948032, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Ring Distal.L
parentName: Ring Intermediate.L
position: {x: 9.313225e-10, y: 0.017364591, z: 7.9136675e-10}
rotation: {x: 4.860868e-15, y: 7.4246165e-16, z: -0.00000006798655, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Ring.end.L
parentName: Ring Distal.L
position: {x: 9.313225e-10, y: 0.01663446, z: 7.913603e-10}
rotation: {x: -3.380752e-16, y: 8.291978e-16, z: 0.000000006519258, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Little Proximal.L
parentName: Hand.L
position: {x: 0.022333905, y: 0.052079123, z: -0.00023394765}
rotation: {x: 0.00094005174, y: -0.0008998872, z: -0.039283212, w: 0.9992273}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Little Intermediate.L
parentName: Little Proximal.L
position: {x: -0.0000000020836572, y: 0.019210408, z: -0.00000011719238}
rotation: {x: 1.7461702e-10, y: -1.04134514e-10, z: 0.00000007171184, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Little Distal.L
parentName: Little Intermediate.L
position: {x: -5.89806e-17, y: 0.014198756, z: 0.0000000018005641}
rotation: {x: -4.401859e-15, y: 3.7816972e-16, z: 0.00000006239861, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Little.end.L
parentName: Little Distal.L
position: {x: -1.3877788e-17, y: 0.015545551, z: 0.0000000018005695}
rotation: {x: 1.17754995e-14, y: -3.2612801e-16, z: -0.00000015553087, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Index Proximal.L
parentName: Hand.L
position: {x: -0.020244636, y: 0.05820393, z: -0.00030259497}
rotation: {x: 0.00094005215, y: -0.0008998873, z: -0.039283127, w: 0.9992273}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Index Intermediate.L
parentName: Index Proximal.L
position: {x: 4.429745e-10, y: 0.022040028, z: -0.00000012102828}
rotation: {x: -2.910333e-10, y: -1.0689195e-11, z: -0.00000007357448, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Index Distal.L
parentName: Index Intermediate.L
position: {x: 0.0000000018626451, y: 0.018425759, z: -0.00000012067225}
rotation: {x: -6.479139e-15, y: 8.3960616e-16, z: 0.000000084750354, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Index.end.L
parentName: Index Distal.L
position: {x: 0.0000000018626451, y: 0.01622935, z: -0.00000012067224}
rotation: {x: 8.463282e-16, y: 7.181755e-16, z: -0.000000010244548, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Thumb Proximal.L
parentName: Hand.L
position: {x: -0.017830903, y: 0.0114781065, z: -0.010515174}
rotation: {x: -0.08032899, y: 0.097598955, z: 0.350596, w: 0.927957}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: Thumb Intermediate.L
parentName: Thumb Proximal.L
position: {x: 0.0000095334835, y: 0.028356304, z: 0.0000007771305}
rotation: {x: 0.00674877, y: -0.0060724216, z: -0.036910005, w: 0.9992774}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Thumb Distal.L
parentName: Thumb Intermediate.L
position: {x: 0.00007377099, y: 0.01977579, z: -0.00000051315874}
rotation: {x: -0.00016634878, y: 0.0029133798, z: -0.011016796, w: 0.9999351}
scale: {x: 0.9999999, y: 0.99999994, z: 0.9999998}
- name: Thumb.end.L
parentName: Thumb Distal.L
position: {x: 0.000000011175871, y: 0.019742899, z: 0.00000008684583}
rotation: {x: 0.009349917, y: -0.020029707, z: 0.01760291, w: 0.9996007}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: shoulder.R
parentName: Chest
position: {x: 0.06152025, y: 0.1660602, z: -0.008630987}
rotation: {x: -0.47239617, y: -0.47561866, z: -0.52746886, w: 0.5219247}
scale: {x: 1, y: 1, z: 1}
- name: upper_arm.R
parentName: shoulder.R
position: {x: 5.820766e-10, y: 0.05056611, z: -0.000000048079528}
rotation: {x: 0.00093286537, y: 0.0009331234, z: 0.0042724083, w: 0.99999005}
scale: {x: 1, y: 1, z: 1}
- name: lower_arm.R
parentName: upper_arm.R
position: {x: 7.428116e-10, y: 0.21297738, z: 0.0000000024205855}
rotation: {x: -6.562376e-10, y: 8.101542e-11, z: -0.007827293, w: 0.99996936}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: Hand.R
parentName: lower_arm.R
position: {x: 0.0000000018626451, y: 0.20669797, z: 0.0000000028412432}
rotation: {x: -0.0009128041, y: -0.0009275122, z: -0.009476421, w: 0.9999543}
scale: {x: 0.9999999, y: 0.99999994, z: 1}
- name: Middle Proximal.R
parentName: Hand.R
position: {x: 0.0053588226, y: 0.058685772, z: -0.0002737335}
rotation: {x: 0.0009400518, y: 0.0008998871, z: 0.039283175, w: 0.9992273}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Middle Intermediate.R
parentName: Middle Proximal.R
position: {x: 5.3905297e-11, y: 0.027381806, z: -1.9477397e-10}
rotation: {x: 1.1641763e-10, y: 2.539901e-11, z: 0.000000029802322, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Middle Distal.R
parentName: Middle Intermediate.R
position: {x: 0.0000000018626451, y: 0.022189874, z: -3.384275e-10}
rotation: {x: -9.830751e-15, y: -1.110223e-16, z: -0.00000013038516, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Middle.end.R
parentName: Middle Distal.R
position: {x: -0.0000000018626451, y: 0.017681899, z: -3.3841507e-10}
rotation: {x: 1.0614578e-14, y: 1.0061396e-16, z: 0.00000014156103, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Ring Proximal.R
parentName: Hand.R
position: {x: -0.009394441, y: 0.056629397, z: -0.00024982856}
rotation: {x: 0.00094005174, y: 0.0008998871, z: 0.039283153, w: 0.9992273}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Ring Intermediate.R
parentName: Ring Proximal.R
position: {x: -0.000000003553356, y: 0.0276938, z: 0.0000000010090386}
rotation: {x: 1.7461972e-10, y: 8.1011614e-11, z: -0.000000040978193, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Ring Distal.R
parentName: Ring Intermediate.R
position: {x: 0.0000000018626451, y: 0.017364591, z: 7.9174156e-10}
rotation: {x: 4.7293606e-15, y: 3.76435e-16, z: 0.00000006146729, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Ring.end.R
parentName: Ring Distal.R
position: {x: 0.0000000018626451, y: 0.016634403, z: 7.9173557e-10}
rotation: {x: -5.459082e-16, y: 4.2327253e-16, z: -0.0000000055879354, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Little Proximal.R
parentName: Hand.R
position: {x: -0.022333901, y: 0.052079123, z: -0.00023382832}
rotation: {x: 0.00094005174, y: 0.0008998872, z: 0.039283194, w: 0.9992273}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: Little Intermediate.R
parentName: Little Proximal.R
position: {x: 0.0000000036503855, y: 0.019210408, z: -0.00000011713017}
rotation: {x: 2.3282698e-10, y: -3.529062e-11, z: -0.00000004656613, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Little Distal.R
parentName: Little Intermediate.R
position: {x: 0.0000000037252903, y: 0.014198818, z: 0.0000000017988975}
rotation: {x: -4.646113e-15, y: 8.1532003e-17, z: -0.00000006146729, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Little.end.R
parentName: Little Distal.R
position: {x: -0.0000000018626451, y: 0.015545494, z: 0.0000000017989035}
rotation: {x: 1.1801258e-14, y: 4.0766002e-16, z: 0.0000001527369, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Index Proximal.R
parentName: Hand.R
position: {x: 0.020244641, y: 0.058203924, z: -0.00030247576}
rotation: {x: 0.0009400518, y: 0.00089988724, z: 0.039283115, w: 0.9992273}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Index Intermediate.R
parentName: Index Proximal.R
position: {x: -6.412393e-11, y: 0.022040024, z: -0.00000012053042}
rotation: {x: 1.164227e-10, y: -3.021113e-11, z: 0.0000000949949, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Index Distal.R
parentName: Index Intermediate.R
position: {x: -0, y: 0.018425755, z: -0.00000012067383}
rotation: {x: -6.9436703e-15, y: 1.0772633e-15, z: -0.00000008940697, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Index.end.R
parentName: Index Distal.R
position: {x: -6.938894e-18, y: 0.016229289, z: -0.00000012067382}
rotation: {x: 6.2064455e-16, y: 1.0182827e-15, z: 0.000000011175871, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Thumb Proximal.R
parentName: Hand.R
position: {x: 0.017830906, y: 0.011478103, z: -0.010515174}
rotation: {x: -0.080337524, y: -0.097607374, z: -0.3504371, w: 0.92801535}
scale: {x: 0.9999999, y: 1, z: 1}
- name: Thumb Intermediate.R
parentName: Thumb Proximal.R
position: {x: -0.000000023748726, y: 0.028356317, z: 0.00000002986053}
rotation: {x: 0.0067533073, y: 0.005605167, z: 0.03860717, w: 0.999216}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Thumb Distal.R
parentName: Thumb Intermediate.R
position: {x: 0.000000013038516, y: 0.019775948, z: -0.0000001124572}
rotation: {x: -0.00015083447, y: -0.0024416298, z: 0.009151697, w: 0.9999552}
scale: {x: 1, y: 1.0000001, z: 0.99999994}
- name: Thumb.end.R
parentName: Thumb Distal.R
position: {x: 0.0000000037252903, y: 0.01974291, z: 0.00000009383075}
rotation: {x: 0.0093499, y: 0.020029703, z: -0.017602922, w: 0.9996007}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: zipper4
parentName: upper_arm.R
position: {x: -0.0367812, y: 0.11778027, z: 0.024362927}
rotation: {x: -0.027088448, y: -0.027097378, z: 0.25069025, w: 0.9673088}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: zipper4.end
parentName: zipper4
position: {x: -0.000000011175871, y: 0.028572183, z: 0.000000030733645}
rotation: {x: 0.030660806, y: 0.018197747, z: -0.0034039537, w: 0.9993584}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Food
parentName: Chest
position: {x: 0.0005897792, y: 0.20173134, z: -0.06607372}
rotation: {x: 0.9630676, y: -0.00000004745303, z: -0.000000051324278, w: -0.26925978}
scale: {x: 1, y: 0.99999994, z: 0.99999946}
- name: Food_end
parentName: Food
position: {x: 5.997869e-11, y: 0.08557032, z: 0.000000029758102}
rotation: {x: 0.0020113552, y: -0.000000004932947, z: 0.0000000074257125, w: 0.999998}
scale: {x: 1, y: 1, z: 0.99999994}
- name: zipper3
parentName: Chest
position: {x: -0.14169404, y: 0.005559095, z: 0.067305796}
rotation: {x: 0.99763596, y: -0.036601987, z: -0.04081103, w: -0.041440196}
scale: {x: 0.9999839, y: 0.9999997, z: 0.9999827}
- name: zipper3.end
parentName: zipper3
position: {x: 4.656613e-10, y: 0.029515127, z: -0.000000009313226}
rotation: {x: 0.014715137, y: 0.010837686, z: -0.011754011, w: 0.9997639}
scale: {x: 0.9999999, y: 0.99999994, z: 0.99999994}
- name: nekkless_root
parentName: Chest
position: {x: 1.5780509e-11, y: 0.13280916, z: 0.10487152}
rotation: {x: 0.99641204, y: -6.732334e-10, z: 5.1963983e-10, w: 0.08463518}
scale: {x: 1, y: 1, z: 0.99999464}
- name: nekkless
parentName: nekkless_root
position: {x: -2.4767879e-17, y: 0.04157078, z: 0.000000007450581}
rotation: {x: 0.04349602, y: 0.011149334, z: -0.00845848, w: 0.9989556}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: nekkless.001
parentName: nekkless
position: {x: -0.0000000025029294, y: 0.043198965, z: -0.000000010175427}
rotation: {x: -0.09411586, y: 0.026038209, z: -0.023312667, w: 0.9949476}
scale: {x: 1, y: 0.9999999, z: 0.9999999}
- name: necklace3
parentName: nekkless.001
position: {x: 0.0000000024447218, y: 0.012137998, z: -0.000000008636562}
rotation: {x: -0.0021304872, y: -0.011028263, z: 0.0073887245, w: 0.99990964}
scale: {x: 1, y: 0.99999994, z: 1}
- name: necklace3.end
parentName: necklace3
position: {x: 0.000000005122274, y: 0.030304596, z: -0.0000000296277}
rotation: {x: 0.0981852, y: -0.0052153342, z: 0.0077617974, w: 0.9951242}
scale: {x: 1, y: 1, z: 1}
- name: nekkless.002
parentName: nekkless
position: {x: -0.0000000025029294, y: 0.043198965, z: -0.000000010175427}
rotation: {x: 0.16239649, y: -0.25550836, z: 0.214923, w: 0.92852086}
scale: {x: 0.99999994, y: 0.9999999, z: 0.99999994}
- name: necklace4
parentName: nekkless.002
position: {x: -0.000039840583, y: 0.009843433, z: -0.00005052716}
rotation: {x: -0.04460408, y: 0.02290292, z: -0.0035744414, w: 0.9987358}
scale: {x: 0.99999994, y: 1, z: 1}
- name: necklace4.end
parentName: necklace4
position: {x: -0.00000005122274, y: 0.030631786, z: -0.000000027008355}
rotation: {x: -0.014120791, y: -0.014022608, z: 0.021458039, w: 0.9995717}
scale: {x: 0.99999994, y: 0.9999999, z: 1}
- name: Neck
parentName: Chest
position: {x: -2.4286129e-17, y: 0.20484583, z: 0}
rotation: {x: 0.046410732, y: 7.4811896e-10, z: 8.989825e-10, w: 0.99892247}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Head
parentName: Neck
position: {x: 1.6653345e-16, y: 0.055542324, z: -6.938894e-18}
rotation: {x: 0.05932118, y: -3.5266018e-10, z: -1.8616758e-10, w: 0.998239}
scale: {x: 1, y: 1, z: 1}
- name: zipper1
parentName: Head
position: {x: -0.10965987, y: 0.09062268, z: 0.062407784}
rotation: {x: 0.99887323, y: 0.007920647, z: 0.0071543274, w: 0.046242986}
scale: {x: 0.9999992, y: 0.9999999, z: 0.99997145}
- name: zipper1.end
parentName: zipper1
position: {x: 0.000000006344635, y: 0.029496063, z: 3.4924597e-10}
rotation: {x: -0.0017034607, y: -0.0075261914, z: 0.0076196888, w: 0.99994123}
scale: {x: 1, y: 1.0000002, z: 1.0000001}
- name: zipper2
parentName: Head
position: {x: 0.07933755, y: 0.022541823, z: -0.07114969}
rotation: {x: 0.99704653, y: -0.01558875, z: -0.013979344, w: 0.07389041}
scale: {x: 1.0000002, y: 1, z: 1.0000052}
- name: zipper2.end
parentName: zipper2
position: {x: 0.0000000027939677, y: 0.029222215, z: -0.0000000030267984}
rotation: {x: 0.02008254, y: -0.0015833017, z: 0.0009384904, w: 0.9997966}
scale: {x: 0.9999999, y: 1, z: 0.99999994}
- name: Ear.R
parentName: Head
position: {x: 0.06076738, y: 0.043015797, z: -0.000913007}
rotation: {x: 0.7712457, y: 0.4537107, z: 0.40706363, w: -0.18337357}
scale: {x: 1.0000001, y: 1, z: 1}
- name: Ear1.R
parentName: Ear.R
position: {x: -0.000000026077032, y: 0.032684017, z: 0.00000004377216}
rotation: {x: -0.0013356667, y: -0.0016831895, z: 0.0009468779, w: 0.99999726}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Ear.end.R
parentName: Ear1.R
position: {x: -0.000000067055225, y: 0.041398663, z: -0.00000002142042}
rotation: {x: 0.0047241887, y: -0.0037804374, z: 0.014471912, w: 0.999877}
scale: {x: 0.99999994, y: 0.99999994, z: 0.9999999}
- name: Ear.L
parentName: Head
position: {x: -0.06076737, y: 0.043015797, z: -0.00091300736}
rotation: {x: 0.7712457, y: -0.45371068, z: -0.40706375, w: -0.18337363}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: Ear1.L
parentName: Ear.L
position: {x: 0.000000026077032, y: 0.03268398, z: -0.00000008195639}
rotation: {x: -0.00133576, y: 0.001683119, z: -0.0009469393, w: 0.99999726}
scale: {x: 0.99999994, y: 1.0000001, z: 0.99999994}
- name: Ear.end.L
parentName: Ear1.L
position: {x: 0.000000063329935, y: 0.041398622, z: -0.00000005122274}
rotation: {x: 0.004724248, y: 0.0037804034, z: -0.014471893, w: 0.999877}
scale: {x: 1, y: 1, z: 1}
- name: FrontHairRoot
parentName: Head
position: {x: 0.0000000026945561, y: 0.18656942, z: -0.015905079}
rotation: {x: 0.20978697, y: -0.027059559, z: -0.024277529, w: 0.97707105}
scale: {x: 1, y: 1, z: 1.0000001}
- name: FrontHair
parentName: FrontHairRoot
position: {x: 0.01932849, y: 0.0161826, z: 0.1056282}
rotation: {x: 0.94357336, y: -0.086772755, z: -0.08920336, w: 0.30689198}
scale: {x: 0.99999994, y: 1.0000001, z: 1.0000004}
- name: FrontHair.end
parentName: FrontHair
position: {x: -0.000000011175871, y: 0.10293866, z: -0.00000000273576}
rotation: {x: 0.04389043, y: 0.09820208, z: -0.0977166, w: 0.9893844}
scale: {x: 1, y: 0.99999994, z: 1}
- name: SideHair.L
parentName: FrontHairRoot
position: {x: -0.08417453, y: -0.059288274, z: 0.04600477}
rotation: {x: 0.9261341, y: -0.2530342, z: -0.18361521, w: 0.21103264}
scale: {x: 1, y: 1, z: 0.99999994}
- name: SideHair.end.L
parentName: SideHair.L
position: {x: 0.00000007916242, y: 0.05057069, z: 0.000000013969839}
rotation: {x: -0.048843063, y: 0.15419374, z: -0.14710602, w: 0.9758066}
scale: {x: 0.9999999, y: 0.99999994, z: 1}
- name: FrontHair.L
parentName: FrontHairRoot
position: {x: -0.07458027, y: -0.019160021, z: 0.06229854}
rotation: {x: 0.96312976, y: -0.00030677608, z: -0.04054341, w: 0.2659647}
scale: {x: 0.99999994, y: 0.99999994, z: 0.9999995}
- name: FrontHair.end.L
parentName: FrontHair.L
position: {x: 0.000000010360964, y: 0.104473986, z: 0}
rotation: {x: 0.0027379848, y: 0.021254545, z: -0.021254545, w: 0.99954444}
scale: {x: 1, y: 0.9999999, z: 1}
- name: FrontHair.R
parentName: FrontHairRoot
position: {x: 0.08300886, y: -0.013457713, z: 0.05233387}
rotation: {x: 0.9631298, y: 0.051836573, z: -0.010704771, w: 0.26377913}
scale: {x: 0.99999994, y: 1, z: 1.0000001}
- name: FrontHair.end.R
parentName: FrontHair.R
position: {x: -0.0000000064610504, y: 0.10447387, z: -0.0000000011641532}
rotation: {x: 0.0027379824, y: -0.02125455, z: 0.021254558, w: 0.99954444}
scale: {x: 1.0000001, y: 0.99999994, z: 1}
- name: FrontTopHair.L
parentName: FrontHairRoot
position: {x: -0.067159474, y: -0.0066148015, z: 0.10016823}
rotation: {x: 0.94925034, y: -0.10394703, z: -0.09926927, w: 0.27975783}
scale: {x: 0.99999994, y: 1.0000001, z: 1.0000004}
- name: FrontTopHair.end.L
parentName: FrontTopHair.L
position: {x: 0.000000030733645, y: 0.076281026, z: 0.000000007450581}
rotation: {x: 0.011469459, y: 0.098657995, z: -0.09802735, w: 0.990215}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: FrontTopHair.R
parentName: FrontHairRoot
position: {x: 0.07952717, y: -0.0013071124, z: 0.09089299}
rotation: {x: 0.9492503, y: 0.15557194, z: 0.049238786, w: 0.2688807}
scale: {x: 1, y: 1, z: 1.0000001}
- name: FrontTopHair.end.R
parentName: FrontTopHair.R
position: {x: 0.0000000018626451, y: 0.07628092, z: 0.000000009313226}
rotation: {x: 0.011469441, y: -0.09865791, z: 0.09802736, w: 0.990215}
scale: {x: 1, y: 0.9999998, z: 0.9999999}
- name: BackHairRoot
parentName: Head
position: {x: 0.0000000026945561, y: 0.18656942, z: -0.015905079}
rotation: {x: -0.2859162, y: -8.535277e-10, z: -0.00000000139347, w: 0.95825464}
scale: {x: 1, y: 1, z: 1}
- name: BackHair
parentName: BackHairRoot
position: {x: -0.00000000252247, y: -0.009667505, z: -0.08491726}
rotation: {x: 0.96553844, y: 0.0000000090367465, z: 0.000000014753427, w: -0.26026055}
scale: {x: 1, y: 1, z: 1.0000004}
- name: BackHair.end
parentName: BackHair
position: {x: -8.881784e-16, y: 0.12817109, z: 0}
rotation: {x: -0.027465105, y: -0.000000012233703, z: 0.000000012233641, w: 0.99962276}
scale: {x: 1, y: 1, z: 1.0000001}
- name: BackTopHair.L
parentName: BackHairRoot
position: {x: -0.039550647, y: -0.022677772, z: -0.07799974}
rotation: {x: 0.9696302, y: -0.024798704, z: -0.040486336, w: -0.23992346}
scale: {x: 0.99999994, y: 0.99999994, z: 1.0000004}
- name: BackTopHair.end.L
parentName: BackTopHair.L
position: {x: -0.000000006519258, y: 0.12215055, z: 0.000000006519258}
rotation: {x: 0.00034856313, y: 0.02003709, z: -0.020332674, w: 0.9995924}
scale: {x: 0.9999999, y: 0.9999998, z: 1}
- name: BackHair1.R
parentName: BackHairRoot
position: {x: 0.039550647, y: -0.022677772, z: -0.07799974}
rotation: {x: 0.9696302, y: 0.024798697, z: 0.040486336, w: -0.23992346}
scale: {x: 0.99999994, y: 0.99999994, z: 1.0000004}
- name: BackHair1.end
parentName: BackHair1.R
position: {x: 0.000000006519258, y: 0.12215055, z: 0.000000006519258}
rotation: {x: -0.0012403603, y: -0.023000268, z: 0.023228593, w: 0.9994648}
scale: {x: 0.99999994, y: 0.99999994, z: 0.9999999}
- name: BackHair_u
parentName: BackHairRoot
position: {x: -0.0012186021, y: -0.09915189, z: -0.10259744}
rotation: {x: 0.9723223, y: 1.5800501e-16, z: -6.663618e-16, w: -0.23364387}
scale: {x: 1, y: 1, z: 0.9999995}
- name: BackHair_u.end
parentName: BackHair_u
position: {x: -3.046608e-15, y: 0.067972206, z: 0.0000000018990238}
rotation: {x: -0.000000059604666, y: -8.5981114e-20, z: -1.3331864e-15, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: TopHairRoot
parentName: Head
position: {x: -0.000012820336, y: 0.18666911, z: -0.015994359}
rotation: {x: -0.056501318, y: -0.043418303, z: -0.0389543, w: 0.99669707}
scale: {x: 1, y: 1, z: 1.0000001}
- name: TopHair1.R
parentName: TopHairRoot
position: {x: 0.057886563, y: -0.004662419, z: -0.025746124}
rotation: {x: 0.9616545, y: 0.19613497, z: 0.11744993, w: -0.15151651}
scale: {x: 1.0000001, y: 0.99999994, z: 1}
- name: TopHair1.end.R
parentName: TopHair1.R
position: {x: -0.0000000018626451, y: 0.12204612, z: -0.000000014901161}
rotation: {x: -0.09543542, y: -0.1310148, z: 0.13653435, w: 0.9772848}
scale: {x: 1, y: 1, z: 1.0000001}
- name: BackTopHair
parentName: TopHairRoot
position: {x: -0.060333397, y: -0.014427438, z: -0.023333654}
rotation: {x: 0.9640612, y: -0.13690537, z: -0.21745098, w: -0.06751382}
scale: {x: 1.0000006, y: 0.99999994, z: 0.99999994}
- name: BackTopHair.end
parentName: BackTopHair
position: {x: 0.000000055879354, y: 0.11987022, z: -0.000000007450581}
rotation: {x: -0.03912454, y: 0.14028813, z: -0.15011452, w: 0.9778825}
scale: {x: 0.99999994, y: 1, z: 0.99999994}
- name: TopSideHair
parentName: TopHairRoot
position: {x: 0.09236359, y: -0.016853472, z: 0.005286087}
rotation: {x: 0.95636547, y: 0.24086949, z: 0.16284451, w: -0.028787803}
scale: {x: 1.0000002, y: 1, z: 0.99999994}
- name: TopSideHair.end
parentName: TopSideHair
position: {x: 0.0000000121071935, y: 0.100261986, z: 0.00000003259629}
rotation: {x: -0.01110661, y: -0.20289862, z: 0.20230816, w: 0.95800847}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: TopHair1
parentName: TopHairRoot
position: {x: 0.023418454, y: 0.018945735, z: 0.054939374}
rotation: {x: 0.95639646, y: 0.18324172, z: 0.10492799, w: 0.20178807}
scale: {x: 0.9999998, y: 0.9999999, z: 0.99999976}
- name: TopHair1.end
parentName: TopHair1
position: {x: -0.000000027939677, y: 0.119703695, z: -0.0000000027939677}
rotation: {x: 0.035156783, y: -0.014747154, z: 0.017440327, w: 0.99912083}
scale: {x: 1, y: 1, z: 1.0000001}
- name: TopHair2
parentName: TopHairRoot
position: {x: -0.013976734, y: 0.014785758, z: 0.015356508}
rotation: {x: 0.7225696, y: -0.45585257, z: -0.5179857, w: 0.04221942}
scale: {x: 1, y: 1, z: 0.99999994}
- name: TopHair2.end
parentName: TopHair2
position: {x: 0.000000026077032, y: 0.10633696, z: -0.00000008195639}
rotation: {x: -0.04816579, y: 0.16886762, z: -0.10251693, w: 0.9791088}
scale: {x: 0.99999994, y: 0.9999999, z: 1}
- name: TopHair3
parentName: TopHairRoot
position: {x: 0.008185534, y: 0.017062156, z: -0.029059278}
rotation: {x: -0.3975708, y: 0.39410874, z: 0.42901003, w: 0.70891905}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: TopHair3.end
parentName: TopHair3
position: {x: -0.000000017695129, y: 0.044460014, z: 0.00000004004687}
rotation: {x: -0.063225254, y: 0.041974515, z: -0.0011081509, w: 0.9971156}
scale: {x: 1, y: 0.9999999, z: 1}
- name: TopHair1.L
parentName: TopHairRoot
position: {x: -0.02352626, y: -0.010902743, z: -0.065714315}
rotation: {x: 0.9648871, y: -0.025956655, z: -0.10601806, w: -0.23891287}
scale: {x: 0.9999999, y: 0.99999994, z: 0.9999997}
- name: TopHair1.end.L
parentName: TopHair1.L
position: {x: 0.0000000055879354, y: 0.107252166, z: 0.0000000023283064}
rotation: {x: -0.24996129, y: 0.054545715, z: -0.052196696, w: 0.96530807}
scale: {x: 0.9999999, y: 1, z: 1}
- name: LeftEye
parentName: Head
position: {x: -0.029567705, y: 0.053851206, z: 0.046082977}
rotation: {x: -0.054126736, y: 0.0041361745, z: 0.0037109193, w: 0.99851865}
scale: {x: 0.99999994, y: 0.9999999, z: 1}
- name: RightEye
parentName: Head
position: {x: 0.02956771, y: 0.053851206, z: 0.04608298}
rotation: {x: -0.054126736, y: -0.0041361763, z: -0.003710919, w: 0.99851865}
scale: {x: 0.99999994, y: 0.9999999, z: 1}
- name: jacket.R
parentName: Hips
position: {x: 0.123307265, y: 0.12551591, z: 0.07223499}
rotation: {x: 0.9996476, y: 0.01380004, z: 0.015135872, w: -0.016885484}
scale: {x: 0.99995285, y: 0.9999997, z: 0.9999461}
- name: jacket1.R
parentName: jacket.R
position: {x: 0.0000000041909516, y: 0.07596958, z: 0.000000005355105}
rotation: {x: 0.0024548392, y: 0.0008833169, z: -0.000802278, w: 0.9999963}
scale: {x: 1, y: 0.9999998, z: 0.9999999}
- name: jacket.end.R
parentName: jacket1.R
position: {x: 0.000000006519258, y: 0.14147753, z: 0.0000000015133992}
rotation: {x: 0.0006172692, y: -0.04849617, z: 0.04838912, w: 0.9976504}
scale: {x: 0.9999999, y: 0.9999999, z: 0.9999998}
- name: jacket.L
parentName: Hips
position: {x: -0.12339646, y: 0.12531942, z: 0.07242347}
rotation: {x: 0.99962056, y: -0.014935214, z: -0.015919754, w: -0.016802616}
scale: {x: 1.0000129, y: 0.99999994, z: 1.0000161}
- name: jacket1.L
parentName: jacket.L
position: {x: -2.3283064e-10, y: 0.075969614, z: -0.0000000020954758}
rotation: {x: 0.00245476, y: -0.00088332756, z: 0.00080230105, w: 0.9999963}
scale: {x: 1, y: 0.9999998, z: 0.99999994}
- name: jacket.end.L
parentName: jacket1.L
position: {x: -0.0000000055879354, y: 0.14147751, z: -0.000000007566996}
rotation: {x: 0.00061103125, y: 0.048496712, z: -0.048386555, w: 0.99765044}
scale: {x: 1, y: 1.0000001, z: 1}
- name: zipper
parentName: jacket1.L
position: {x: 0.06252316, y: 0.12136515, z: -0.083894454}
rotation: {x: 0.0028960241, y: 0.015974918, z: -0.016025305, w: 0.99973977}
scale: {x: 1.0000001, y: 1.0000002, z: 0.99999994}
- name: zipper.end
parentName: zipper
position: {x: -0.0000000058771548, y: 0.035647206, z: -0.0000000120944605}
rotation: {x: 0.000000333716, y: 0.00000016163162, z: 0.00000012769152, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: upper_leg.L
parentName: Hips
position: {x: -0.0675942, y: -0.06947543, z: 0.00025566106}
rotation: {x: 0.999853, y: 0.0057723364, z: 0.0047790343, w: -0.015424078}
scale: {x: 1.0000045, y: 0.99999994, z: 1.0000376}
- name: lower_leg.L
parentName: upper_leg.L
position: {x: -0.0000000045256456, y: 0.29703888, z: 7.566996e-10}
rotation: {x: 0.054985415, y: -0.0037046606, z: 0.0042197253, w: 0.9984714}
scale: {x: 1, y: 1, z: 1}
- name: foot.L
parentName: lower_leg.L
position: {x: 0.000000010142685, y: 0.32418698, z: 0.0000000016152626}
rotation: {x: -0.46482676, y: -0.04450356, z: 0.048106976, w: 0.88297296}
scale: {x: 1, y: 1.0000002, z: 1.0000001}
- name: toe.L
parentName: foot.L
position: {x: 0.0000000031432137, y: 0.116914436, z: -0.000000010244548}
rotation: {x: 0.08902016, y: 0.84686035, z: -0.31589052, w: -0.41846892}
scale: {x: 1, y: 0.99999976, z: 0.99999994}
- name: upper_leg.R
parentName: Hips
position: {x: 0.06770505, y: -0.06936777, z: 0.00015229246}
rotation: {x: 0.99985164, y: -0.0053113485, z: -0.0055601154, w: -0.01541483}
scale: {x: 1.0000069, y: 0.99999994, z: 1.0000768}
- name: lower_leg.R
parentName: upper_leg.R
position: {x: -0.0000000023137545, y: 0.29703885, z: -3.4924597e-10}
rotation: {x: 0.054983176, y: 0.0037046827, z: -0.004219726, w: 0.9984715}
scale: {x: 1, y: 0.99999994, z: 1.0000001}
- name: foot.R
parentName: lower_leg.R
position: {x: -2.6193447e-10, y: 0.32418677, z: -0.0000000038271537}
rotation: {x: -0.4648161, y: 0.04450346, z: -0.048106425, w: 0.8829786}
scale: {x: 0.99999994, y: 0.9999999, z: 0.9999999}
- name: toe.R
parentName: foot.R
position: {x: 0.000000001542503, y: 0.11691193, z: -0.0000000018626451}
rotation: {x: -0.08902218, y: 0.84685755, z: -0.31589812, w: 0.41846827}
scale: {x: 1, y: 0.99999994, z: 1.0000001}
- name: Jacket_sater
parentName: LouON_ver1.03_parts(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: Shirt_sater
parentName: LouON_ver1.03_parts(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: Jacket
parentName: LouON_ver1.03_parts(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: Jacket_shirt
parentName: LouON_ver1.03_parts(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: Sater
parentName: LouON_ver1.03_parts(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: Shoes
parentName: LouON_ver1.03_parts(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: Mimi
parentName: LouON_ver1.03_parts(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: Body
parentName: LouON_ver1.03_parts(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: otherBody_full
parentName: LouON_ver1.03_parts(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: Necklace
parentName: LouON_ver1.03_parts(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: Hair
parentName: LouON_ver1.03_parts(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: Shirt
parentName: LouON_ver1.03_parts(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: Neck_arm_foot
parentName: LouON_ver1.03_parts(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: ohterBody
parentName: LouON_ver1.03_parts(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: Zubon
parentName: LouON_ver1.03_parts(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:
|