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
|
fileFormatVersion: 2
guid: 4f3934134ed749545ac7969c4e5e2a83
ModelImporter:
serializedVersion: 23
fileIDToRecycleName:
100000: Beta_HighJointsGeo
100002: Beta_HighLimbsGeo
100004: Beta_HighTorsoGeo
100006: BetaHighResMeshes
100008: Head
100010: HeadTop_End
100012: Hips
100014: LeftArm
100016: LeftFoot
100018: LeftFootToeBase_End
100020: LeftForeArm
100022: LeftHand
100024: LeftHandIndex1
100026: LeftHandIndex2
100028: LeftHandIndex3
100030: LeftHandIndex4
100032: LeftHandMiddle1
100034: LeftHandMiddle2
100036: LeftHandMiddle3
100038: LeftHandMiddle4
100040: LeftHandPinky1
100042: LeftHandPinky2
100044: LeftHandPinky3
100046: LeftHandPinky4
100048: LeftHandRing1
100050: LeftHandRing2
100052: LeftHandRing3
100054: LeftHandRing4
100056: LeftHandThumb1
100058: LeftHandThumb2
100060: LeftHandThumb3
100062: LeftHandThumb4
100064: LeftLeg
100066: LeftShoulder
100068: LeftToeBase
100070: LeftUpLeg
100072: //RootNode
100074: Neck
100076: Neck1
100078: RightArm
100080: RightFoot
100082: RightFootToeBase_End
100084: RightForeArm
100086: RightHand
100088: RightHandIndex1
100090: RightHandIndex2
100092: RightHandIndex3
100094: RightHandIndex4
100096: RightHandMiddle1
100098: RightHandMiddle2
100100: RightHandMiddle3
100102: RightHandMiddle4
100104: RightHandPinky1
100106: RightHandPinky2
100108: RightHandPinky3
100110: RightHandPinky4
100112: RightHandRing1
100114: RightHandRing2
100116: RightHandRing3
100118: RightHandRing4
100120: RightHandThumb1
100122: RightHandThumb2
100124: RightHandThumb3
100126: RightHandThumb4
100128: RightLeg
100130: RightShoulder
100132: RightToeBase
100134: RightUpLeg
100136: Spine
100138: Spine1
100140: Spine2
400000: Beta_HighJointsGeo
400002: Beta_HighLimbsGeo
400004: Beta_HighTorsoGeo
400006: BetaHighResMeshes
400008: Head
400010: HeadTop_End
400012: Hips
400014: LeftArm
400016: LeftFoot
400018: LeftFootToeBase_End
400020: LeftForeArm
400022: LeftHand
400024: LeftHandIndex1
400026: LeftHandIndex2
400028: LeftHandIndex3
400030: LeftHandIndex4
400032: LeftHandMiddle1
400034: LeftHandMiddle2
400036: LeftHandMiddle3
400038: LeftHandMiddle4
400040: LeftHandPinky1
400042: LeftHandPinky2
400044: LeftHandPinky3
400046: LeftHandPinky4
400048: LeftHandRing1
400050: LeftHandRing2
400052: LeftHandRing3
400054: LeftHandRing4
400056: LeftHandThumb1
400058: LeftHandThumb2
400060: LeftHandThumb3
400062: LeftHandThumb4
400064: LeftLeg
400066: LeftShoulder
400068: LeftToeBase
400070: LeftUpLeg
400072: //RootNode
400074: Neck
400076: Neck1
400078: RightArm
400080: RightFoot
400082: RightFootToeBase_End
400084: RightForeArm
400086: RightHand
400088: RightHandIndex1
400090: RightHandIndex2
400092: RightHandIndex3
400094: RightHandIndex4
400096: RightHandMiddle1
400098: RightHandMiddle2
400100: RightHandMiddle3
400102: RightHandMiddle4
400104: RightHandPinky1
400106: RightHandPinky2
400108: RightHandPinky3
400110: RightHandPinky4
400112: RightHandRing1
400114: RightHandRing2
400116: RightHandRing3
400118: RightHandRing4
400120: RightHandThumb1
400122: RightHandThumb2
400124: RightHandThumb3
400126: RightHandThumb4
400128: RightLeg
400130: RightShoulder
400132: RightToeBase
400134: RightUpLeg
400136: Spine
400138: Spine1
400140: Spine2
4300000: Beta_HighLimbsGeo
4300002: Beta_HighTorsoGeo
4300004: Beta_HighJointsGeo
7400000: mixamo.com
9500000: //RootNode
11100000: //RootNode
13700000: Beta_HighJointsGeo
13700002: Beta_HighLimbsGeo
13700004: Beta_HighTorsoGeo
2186277476908879412: ImportLogs
externalObjects:
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Beta_Body_MAT
second: {fileID: 2100000, guid: be588b5af9e5a1d40a0a95431968dcb5, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Beta_Joints_MAT
second: {fileID: 2100000, guid: 49b3fbe8df1142c47be56eed1d1199b9, type: 2}
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
materialLocation: 0
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings: "\nClip 'mixamo.com' has import animation warnings that
might lower retargeting quality:\nNote: Activate translation DOF on avatar to
improve retargeting quality.\n\t'Spine2' is inbetween humanoid transforms and
has rotation animation that will be discarded.\n"
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 3
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: mixamo.com
takeName: mixamo.com
firstFrame: 0
lastFrame: 21
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 0
loopBlendOrientation: 0
loopBlendPositionY: 0
loopBlendPositionXZ: 0
keepOriginalOrientation: 0
keepOriginalPositionY: 1
keepOriginalPositionXZ: 0
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: BetaHighResMeshes
weight: 0
- path: BetaHighResMeshes/Beta_HighJointsGeo
weight: 0
- path: BetaHighResMeshes/Beta_HighLimbsGeo
weight: 0
- path: BetaHighResMeshes/Beta_HighTorsoGeo
weight: 0
- path: Hips
weight: 1
- path: Hips/LeftUpLeg
weight: 1
- path: Hips/LeftUpLeg/LeftLeg
weight: 1
- path: Hips/LeftUpLeg/LeftLeg/LeftFoot
weight: 1
- path: Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToeBase
weight: 1
- path: Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToeBase/LeftFootToeBase_End
weight: 0
- path: Hips/RightUpLeg
weight: 1
- path: Hips/RightUpLeg/RightLeg
weight: 1
- path: Hips/RightUpLeg/RightLeg/RightFoot
weight: 1
- path: Hips/RightUpLeg/RightLeg/RightFoot/RightToeBase
weight: 1
- path: Hips/RightUpLeg/RightLeg/RightFoot/RightToeBase/RightFootToeBase_End
weight: 0
- path: Hips/Spine
weight: 1
- path: Hips/Spine/Spine1
weight: 1
- path: Hips/Spine/Spine1/Spine2
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex4
weight: 0
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle4
weight: 0
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky4
weight: 0
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing4
weight: 0
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
weight: 1
- path: Hips/Spine/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb4
weight: 0
- path: Hips/Spine/Spine1/Spine2/Neck
weight: 1
- path: Hips/Spine/Spine1/Spine2/Neck/Neck1
weight: 1
- path: Hips/Spine/Spine1/Spine2/Neck/Neck1/Head
weight: 1
- path: Hips/Spine/Spine1/Spine2/Neck/Neck1/Head/HeadTop_End
weight: 0
- path: Hips/Spine/Spine1/Spine2/RightShoulder
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/RightHandIndex4
weight: 0
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/RightHandMiddle4
weight: 0
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/RightHandPinky4
weight: 0
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/RightHandRing4
weight: 0
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
weight: 1
- path: Hips/Spine/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/RightHandThumb4
weight: 0
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
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: 1
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
previousCalculatedGlobalScale: 0.01
hasPreviousCalculatedGlobalScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 0
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: LeftUpLeg
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RightUpLeg
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LeftLeg
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RightLeg
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LeftFoot
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RightFoot
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Spine
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Spine1
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Neck
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Head
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LeftShoulder
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RightShoulder
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LeftArm
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RightArm
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LeftForeArm
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RightForeArm
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LeftHand
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RightHand
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: LeftToeBase
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: RightToeBase
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: LeftHandThumb1
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: LeftHandThumb2
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: LeftHandThumb3
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: LeftHandIndex1
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: LeftHandIndex2
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: LeftHandIndex3
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: LeftHandMiddle1
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: LeftHandMiddle2
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: LeftHandMiddle3
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: LeftHandRing1
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: LeftHandRing2
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: LeftHandRing3
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: LeftHandPinky1
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: LeftHandPinky2
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: LeftHandPinky3
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: RightHandThumb1
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: RightHandThumb2
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: RightHandThumb3
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: RightHandIndex1
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: RightHandIndex2
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: RightHandIndex3
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: RightHandMiddle1
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: RightHandMiddle2
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: RightHandMiddle3
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: RightHandRing1
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: RightHandRing2
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: RightHandRing3
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: RightHandPinky1
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: RightHandPinky2
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: RightHandPinky3
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: BetaRun(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: BetaHighResMeshes
parentName: BetaRun(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Beta_HighJointsGeo
parentName: BetaHighResMeshes
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Beta_HighLimbsGeo
parentName: BetaHighResMeshes
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Beta_HighTorsoGeo
parentName: BetaHighResMeshes
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Hips
parentName: BetaRun(Clone)
position: {x: -0.00065880775, y: 0.99179804, z: -0.004908271}
rotation: {x: -0.000000011641532, y: 7.2759576e-10, z: 2.2737376e-11, w: 1}
scale: {x: 1, y: 0.9999999, z: 1}
- name: RightUpLeg
parentName: Hips
position: {x: 0.096338, y: -0.032732997, z: 0}
rotation: {x: -0.000000023283068, y: -7.2759576e-10, z: -2.2737402e-11, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RightLeg
parentName: RightUpLeg
position: {x: -0, y: -0.4173, z: -0.0173}
rotation: {x: 0.0000000349246, y: -0.000000005820765, z: 0.000000005820765,
w: 1}
scale: {x: 0.9999999, y: 1.0000004, z: 1}
- name: RightFoot
parentName: RightLeg
position: {x: -0.000126, y: -0.39189997, z: -0.008477}
rotation: {x: 0.0000000010913936, y: -8.881784e-16, z: -0.000000006184563, w: 1}
scale: {x: 1, y: 1, z: 1.0000001}
- name: RightToeBase
parentName: RightFoot
position: {x: 0.001833, y: -0.121930994, z: 0.082823}
rotation: {x: -0.0000000018189894, y: 0.000000005820766, z: -1.8189894e-10,
w: 1}
scale: {x: 1.0000001, y: 1, z: 0.9999999}
- name: RightFootToeBase_End
parentName: RightToeBase
position: {x: -0.000032, y: 0, z: 0.101681}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LeftUpLeg
parentName: Hips
position: {x: -0.096338, y: -0.032732997, z: 0}
rotation: {x: 0.000000034924597, y: 0.0000000021827868, z: -0.00000000293312,
w: 1}
scale: {x: 1, y: 1.0000002, z: 1.0000002}
- name: LeftLeg
parentName: LeftUpLeg
position: {x: -0, y: -0.4173, z: -0.0173}
rotation: {x: -0.000000021827873, y: 0.0000000033651308, z: -5.902024e-16, w: 1}
scale: {x: 0.9999999, y: 1.0000004, z: 1}
- name: LeftFoot
parentName: LeftLeg
position: {x: -0.000126, y: -0.39189997, z: -0.008477}
rotation: {x: -0.0000000043655737, y: -0.0000000059117156, z: 0.000000002910383,
w: 1}
scale: {x: 1.0000001, y: 1, z: 1}
- name: LeftToeBase
parentName: LeftFoot
position: {x: 0.001833, y: -0.121930994, z: 0.082823}
rotation: {x: 0.0000000058207656, y: -0.000000004911271, z: -0.000000005820765,
w: 1}
scale: {x: 1, y: 1.0000001, z: 1}
- name: LeftFootToeBase_End
parentName: LeftToeBase
position: {x: -0, y: 0, z: 0.101681}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Spine
parentName: Hips
position: {x: -0, y: 0.092263, z: 0.015771}
rotation: {x: 1.7763568e-15, y: -0.0000000014551916, z: -0.000000001841727,
w: 1}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Spine1
parentName: Spine
position: {x: -0, y: 0.16253999, z: -0.001656}
rotation: {x: -0.000000011641534, y: -7.2759554e-10, z: 0.0000000040017767,
w: 1}
scale: {x: 1, y: 0.9999999, z: 1}
- name: Spine2
parentName: Spine1
position: {x: -0, y: 0.13639599, z: -0.012922999}
rotation: {x: -0, y: 0.0000000014551913, z: -7.275953e-10, w: 1}
scale: {x: 1.0000001, y: 1.0000001, z: 1}
- name: RightShoulder
parentName: Spine2
position: {x: 0.061402, y: 0.10187, z: -0.037932}
rotation: {x: 0.000000023283064, y: -0.000000002910384, z: 0.000000016007109,
w: 1}
scale: {x: 0.9999999, y: 0.9999999, z: 1}
- name: RightArm
parentName: RightShoulder
position: {x: 0.123231, y: -0.01113, z: -0.017934998}
rotation: {x: 0.000000011641535, y: 0.0000000029103833, z: -0.000000016007109,
w: 1}
scale: {x: 1.0000002, y: 1.0000004, z: 1}
- name: RightForeArm
parentName: RightArm
position: {x: 0.27686998, y: 0, z: 0}
rotation: {x: -0.0000000058207683, y: -0.000000011641534, z: 0.00000003346941,
w: 1}
scale: {x: 1.0000005, y: 1.0000001, z: 1.0000005}
- name: RightHand
parentName: RightForeArm
position: {x: 0.278738, y: 0, z: 0}
rotation: {x: 0.000000008731149, y: 0.000000023283066, z: -0.000000023283068,
w: 1}
scale: {x: 1, y: 1.0000001, z: 1}
- name: RightHandPinky1
parentName: RightHand
position: {x: 0.099715, y: -0.001191, z: -0.03954}
rotation: {x: -0.000000026193447, y: -0.000000023283064, z: -0.000000005820766,
w: 1}
scale: {x: 1.0000002, y: 1.0000005, z: 1}
- name: RightHandPinky2
parentName: RightHandPinky1
position: {x: 0.036528, y: 0, z: 0}
rotation: {x: -0.000000017462298, y: 0.000000023283064, z: -0.000000011641531,
w: 1}
scale: {x: 1.0000011, y: 1.000001, z: 1.0000002}
- name: RightHandPinky3
parentName: RightHandPinky2
position: {x: 0.02782, y: 0, z: 0}
rotation: {x: 0.000000040745363, y: -0.000000011641532, z: 0.00000002910383,
w: 1}
scale: {x: 1.0000002, y: 0.99999994, z: 0.9999998}
- name: RightHandPinky4
parentName: RightHandPinky3
position: {x: 0.029000001, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RightHandRing1
parentName: RightHand
position: {x: 0.104701996, y: 0.003879, z: -0.019363}
rotation: {x: -0.000000002910383, y: -0.000000008003553, z: -0.00000001891749,
w: 1}
scale: {x: 0.9999998, y: 1.0000002, z: 1}
- name: RightHandRing2
parentName: RightHandRing1
position: {x: 0.054013, y: 0, z: 0}
rotation: {x: -0.000000011641532, y: -0.000000003637979, z: 0.000000018917493,
w: 1}
scale: {x: 1.0000005, y: 1.0000005, z: 1}
- name: RightHandRing3
parentName: RightHandRing2
position: {x: 0.033915997, y: 0, z: 0}
rotation: {x: 0.000000011641532, y: -1.355253e-16, z: -0.000000011641534, w: 1}
scale: {x: 1.0000008, y: 1.0000005, z: 1}
- name: RightHandRing4
parentName: RightHandRing3
position: {x: 0.022, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RightHandMiddle1
parentName: RightHand
position: {x: 0.107595995, y: 0.004896, z: 0.004278}
rotation: {x: -0.000000014551915, y: -0.000000008003553, z: -0.000000016007107,
w: 1}
scale: {x: 0.99999994, y: 1.0000001, z: 1}
- name: RightHandMiddle2
parentName: RightHandMiddle1
position: {x: 0.056167997, y: 0, z: 0}
rotation: {x: 0.000000011641532, y: -0.0000000036379781, z: 0.000000016007105,
w: 1}
scale: {x: 1.0000006, y: 1.0000006, z: 1}
- name: RightHandMiddle3
parentName: RightHandMiddle2
position: {x: 0.037364, y: 0, z: 0}
rotation: {x: -0.000000011641532, y: 0.000000017462298, z: 0.000000011641534,
w: 1}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: RightHandMiddle4
parentName: RightHandMiddle3
position: {x: 0.022999998, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RightHandIndex1
parentName: RightHand
position: {x: 0.104665, y: 0.004896, z: 0.027119998}
rotation: {x: -0.000000026193447, y: -0.000000012369128, z: -0.000000011641532,
w: 1}
scale: {x: 0.9999998, y: 1.0000002, z: 1.0000001}
- name: RightHandIndex2
parentName: RightHandIndex1
position: {x: 0.053767998, y: 0, z: 0}
rotation: {x: 0.000000023283064, y: -0.000000010913936, z: 0.000000011641532,
w: 1}
scale: {x: 1.0000002, y: 0.9999998, z: 0.99999994}
- name: RightHandIndex3
parentName: RightHandIndex2
position: {x: 0.033855, y: 0, z: 0}
rotation: {x: -0.000000023283064, y: 0.000000011641532, z: 0.000000011641529,
w: 1}
scale: {x: 1.0000011, y: 1.0000014, z: 1.0000002}
- name: RightHandIndex4
parentName: RightHandIndex3
position: {x: 0.025999999, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RightHandThumb1
parentName: RightHand
position: {x: 0.025178, y: -0.009366999, z: 0.025137}
rotation: {x: -0.043867398, y: -0.019023698, z: 0.041287407, w: 0.9980026}
scale: {x: 1, y: 1.0000002, z: 1}
- name: RightHandThumb2
parentName: RightHandThumb1
position: {x: 0.032638, y: -0.010869999, z: 0.029669}
rotation: {x: -0.028152127, y: -0.098991424, z: -0.005298927, w: 0.9946759}
scale: {x: 1, y: 1, z: 1.0000001}
- name: RightHandThumb3
parentName: RightHandThumb2
position: {x: 0.044165, y: -0.013703, z: 0.02135}
rotation: {x: -0.005991338, y: -0.008888915, z: 0.0066888295, w: 0.99992025}
scale: {x: 1, y: 0.9999998, z: 0.99999994}
- name: RightHandThumb4
parentName: RightHandThumb3
position: {x: 0.025999999, y: -0.01, z: 0.01}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LeftShoulder
parentName: Spine2
position: {x: -0.061442, y: 0.10187, z: -0.037932}
rotation: {x: 0.000000023283064, y: -5.4569693e-10, z: 0.0000000047293724, w: 1}
scale: {x: 0.9999999, y: 0.9999999, z: 1.0000001}
- name: LeftArm
parentName: LeftShoulder
position: {x: -0.123191, y: -0.01113, z: -0.017934998}
rotation: {x: -0.000000023283064, y: 5.4569776e-10, z: -0.00000004110916, w: 1}
scale: {x: 1.0000004, y: 1.0000008, z: 1.0000002}
- name: LeftForeArm
parentName: LeftArm
position: {x: -0.27686998, y: 0, z: 0}
rotation: {x: 0.000000034924597, y: -2.7105054e-16, z: 0.000000023283064, w: 1}
scale: {x: 1.0000005, y: 0.9999998, z: 1.0000001}
- name: LeftHand
parentName: LeftForeArm
position: {x: -0.278738, y: 0, z: 0}
rotation: {x: -0.000000011641535, y: 0.000000023283064, z: 0.000000023283064,
w: 1}
scale: {x: 1, y: 1.0000004, z: 1}
- name: LeftHandPinky1
parentName: LeftHand
position: {x: -0.10012999, y: -0.00078299997, z: -0.039670996}
rotation: {x: -0.000000046566136, y: -0.000000040745363, z: 0.000000034924597,
w: 1}
scale: {x: 1, y: 1.0000004, z: 1}
- name: LeftHandPinky2
parentName: LeftHandPinky1
position: {x: -0.036763, y: 0, z: 0}
rotation: {x: 0.000000055115386, y: 0.0000000174623, z: -0.000000053660187,
w: 1}
scale: {x: 1.0000006, y: 1.0000001, z: 1}
- name: LeftHandPinky3
parentName: LeftHandPinky2
position: {x: -0.028113, y: 0, z: 0}
rotation: {x: 0.00000003801688, y: -0.00000004656613, z: 0.000000018735593,
w: 1}
scale: {x: 1.000001, y: 1.0000011, z: 1}
- name: LeftHandPinky4
parentName: LeftHandPinky3
position: {x: -0.029000001, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LeftHandRing1
parentName: LeftHand
position: {x: -0.103252, y: 0.003211, z: -0.018755}
rotation: {x: 0.000000023283064, y: -0.000000072759576, z: -0.000000017462296,
w: 1}
scale: {x: 0.9999998, y: 0.99999994, z: 0.99999994}
- name: LeftHandRing2
parentName: LeftHandRing1
position: {x: -0.054452, y: 0, z: 0}
rotation: {x: -0.000000029103829, y: 0.000000072759576, z: 0.000000011641531,
w: 1}
scale: {x: 0.99999994, y: 0.9999998, z: 1.0000002}
- name: LeftHandRing3
parentName: LeftHandRing2
position: {x: -0.037132, y: 0, z: 0}
rotation: {x: -0.0000000174623, y: -0.0000000698492, z: -0.000000029103834,
w: 1}
scale: {x: 1.0000001, y: 1, z: 0.99999994}
- name: LeftHandRing4
parentName: LeftHandRing3
position: {x: -0.02, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LeftHandIndex1
parentName: LeftHand
position: {x: -0.103944995, y: 0.006148, z: 0.027054999}
rotation: {x: 0.00000004656613, y: -0.00000002910383, z: 2.6645353e-15, w: 1}
scale: {x: 1, y: 1.0000002, z: 1}
- name: LeftHandIndex2
parentName: LeftHandIndex1
position: {x: -0.055493, y: 0, z: 0}
rotation: {x: -0.000000061118044, y: 0.0000000174623, z: 0.0000000116415295,
w: 1}
scale: {x: 1.0000002, y: 1.0000001, z: 1.0000001}
- name: LeftHandIndex3
parentName: LeftHandIndex2
position: {x: -0.033910997, y: 0, z: 0}
rotation: {x: 0.000000026193444, y: -0.000000036379785, z: -0.000000014551915,
w: 1}
scale: {x: 1.0000012, y: 1.000001, z: 1.0000001}
- name: LeftHandIndex4
parentName: LeftHandIndex3
position: {x: -0.024999999, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LeftHandMiddle1
parentName: LeftHand
position: {x: -0.104638994, y: 0.006148, z: 0.004298}
rotation: {x: 1.5585405e-15, y: -0.000000017462298, z: -0.000000046566125, w: 1}
scale: {x: 0.9999997, y: 0.9999998, z: 1}
- name: LeftHandMiddle2
parentName: LeftHandMiddle1
position: {x: -0.057921, y: 0, z: 0}
rotation: {x: -0.000000032014214, y: -0.000000005820766, z: 0.000000026193444,
w: 1}
scale: {x: 1.000001, y: 1.0000006, z: 1}
- name: LeftHandMiddle3
parentName: LeftHandMiddle2
position: {x: -0.037132, y: 0, z: 0}
rotation: {x: 0.000000008731149, y: -1.1265538e-15, z: 0.000000020372681, w: 1}
scale: {x: 0.9999986, y: 0.99999875, z: 0.99999994}
- name: LeftHandMiddle4
parentName: LeftHandMiddle3
position: {x: -0.022999998, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LeftHandThumb1
parentName: LeftHand
position: {x: -0.023784999, y: -0.010029, z: 0.026208999}
rotation: {x: -0.04344012, y: 0.028133152, z: -0.04149885, w: 0.99779725}
scale: {x: 1, y: 0.9999998, z: 1}
- name: LeftHandThumb2
parentName: LeftHandThumb1
position: {x: -0.033624, y: -0.010029, z: 0.028397998}
rotation: {x: -0.02453028, y: 0.081990324, z: -0.00008901907, w: 0.9963313}
scale: {x: 1, y: 1, z: 1.0000002}
- name: LeftHandThumb3
parentName: LeftHandThumb2
position: {x: -0.045018, y: -0.013444999, z: 0.021782998}
rotation: {x: -0.0078123165, y: 0.010885431, z: -0.009426576, w: 0.99986583}
scale: {x: 0.99999994, y: 1.0000001, z: 0.99999994}
- name: LeftHandThumb4
parentName: LeftHandThumb3
position: {x: -0.025999999, y: -0.01, z: 0.01}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Neck
parentName: Spine2
position: {x: -0, y: 0.13877401, z: -0.043541998}
rotation: {x: 0.000000034924597, y: -0.0000000014551917, z: -0.0000000014551917,
w: 1}
scale: {x: 1, y: 1, z: 0.99999994}
- name: Neck1
parentName: Neck
position: {x: -0, y: 0.0434, z: 0.009269}
rotation: {x: -0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Head
parentName: Neck1
position: {x: -0, y: 0.040266, z: 0.0085849995}
rotation: {x: -0.000000034924597, y: 0.0000000010913939, z: -9.094946e-11, w: 1}
scale: {x: 0.99999976, y: 0.9999998, z: 1.0000002}
- name: HeadTop_End
parentName: Head
position: {x: -0, y: 0.23029698, z: 0.001231}
rotation: {x: 0, y: -0, z: -0, w: 1}
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:
|