herohouse_4.json
63.7 KB
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
{
"skeleton": { "hash": "oewJZPGjVVN7VdAheOZQd2U4aLk", "spine": "3.4.02", "width": 154.41, "height": 114.23 },
"bones": [
{ "name": "root", "scaleX": 0.33, "scaleY": 0.33 },
{ "name": "Eff_shandian", "parent": "root", "x": -269.6, "y": 651.97 },
{ "name": "ren", "parent": "root", "x": -16.39, "y": 86.8 },
{ "name": "images/body01", "parent": "ren", "length": 59.93, "rotation": 88.22, "x": -1.12, "y": 10.64 },
{ "name": "images/head01", "parent": "images/body01", "length": 82.36, "rotation": -2.94, "x": 65.48, "y": -5.52 },
{ "name": "images/hairstring", "parent": "images/head01", "length": 20.87, "rotation": 53.89, "x": 81.99, "y": 11.97 },
{ "name": "images/hair", "parent": "images/hairstring", "length": 35.63, "rotation": 109.56, "x": 29.9, "y": 3.28 },
{ "name": "bone", "parent": "images/hair", "length": 34.06, "rotation": -1.7, "x": 35.63 },
{ "name": "bone2", "parent": "bone", "length": 35.08, "rotation": 0.7, "x": 34.06 },
{ "name": "bone3", "parent": "bone2", "length": 35.01, "rotation": -6.74, "x": 35.08 },
{ "name": "bone4", "parent": "bone3", "length": 33.07, "rotation": -6.46, "x": 35.01 },
{ "name": "bone5", "parent": "bone4", "length": 24.79, "rotation": -18, "x": 33.07 },
{ "name": "bone6", "parent": "bone5", "length": 21.94, "rotation": -19.92, "x": 24.79 },
{ "name": "images/crotch01", "parent": "images/body01", "length": 19.21, "rotation": 179.62, "x": -7.63, "y": 2.3 },
{ "name": "bone7", "parent": "images/crotch01", "length": 14.64, "rotation": 4.02, "x": 19.21 },
{ "name": "bone8", "parent": "bone7", "length": 14.92, "rotation": 2.73, "x": 14.64 },
{ "name": "bone9", "parent": "bone8", "length": 17.04, "rotation": -2.99, "x": 14.92 },
{ "name": "images/cloak", "parent": "images/body01", "length": 26.15, "rotation": 175.34, "x": 49.28, "y": 33.49 },
{ "name": "bone10", "parent": "images/cloak", "length": 22.03, "rotation": 1.66, "x": 26.15 },
{ "name": "bone11", "parent": "bone10", "length": 21.24, "rotation": 2.78, "x": 22.03 },
{ "name": "bone12", "parent": "bone11", "length": 22.73, "rotation": 5.66, "x": 21.24 },
{ "name": "bone13", "parent": "bone12", "length": 20.82, "rotation": 6.43, "x": 22.73 },
{ "name": "bone14", "parent": "bone13", "length": 18.3, "rotation": 1.4, "x": 20.82 },
{ "name": "bone15", "parent": "bone14", "length": 18.9, "rotation": 3.03, "x": 18.3 },
{ "name": "images/ass01", "parent": "images/body01", "length": 32.19, "rotation": -172, "x": -12.66, "y": 0.67 },
{ "name": "images/belt01", "parent": "images/body01", "rotation": -88.22, "x": -4.64, "y": 2.92 },
{ "name": "images/body1", "parent": "images/body01", "x": 30.93, "y": 4.17 },
{ "name": "images/claw01", "parent": "ren", "x": 86.89, "y": -28.02 },
{ "name": "images/ear", "parent": "images/head01", "length": 33.91, "rotation": 63.56, "x": 15.53, "y": 23.03 },
{ "name": "images/helmet01", "parent": "images/head01", "x": 42.28, "y": -26.08 },
{ "name": "images/left_eye01", "parent": "images/head01", "x": 22.9, "y": -23.99 },
{ "name": "images/left_foot01", "parent": "ren", "x": 78.69, "y": -73.29 },
{ "name": "images/left_shouder1", "parent": "images/body01", "length": 37.23, "rotation": -131.99, "x": 50.45, "y": -55.61 },
{ "name": "images/right_foot01", "parent": "ren", "x": -60.37, "y": -72.77 },
{ "name": "images/right_shouder01", "parent": "images/body01", "length": 23.73, "rotation": 116.29, "x": 58.22, "y": 23.82 },
{ "name": "images/shou15", "parent": "ren", "rotation": 88.22, "x": -59.26, "y": -22.43 },
{ "name": "images/sword01", "parent": "images/shou15", "length": 260.95, "rotation": 103.7, "x": -0.64, "y": -10.86 },
{ "name": "images/sword1", "parent": "images/sword01", "x": -19.45, "y": 0.3 },
{ "name": "images/sword2", "parent": "root", "length": 260.95, "rotation": -87.33, "x": 323.97, "y": 325.33 },
{ "name": "images/sword3", "parent": "images/sword2", "x": -19.45, "y": 0.3 }
],
"slots": [
{ "name": "images/left_foot01", "bone": "images/left_foot01", "attachment": "images/left_foot01" },
{ "name": "images/right_foot01", "bone": "images/right_foot01", "attachment": "images/right_foot01" },
{ "name": "images/hair", "bone": "images/hair", "attachment": "images/hair" },
{ "name": "images/hairstring", "bone": "images/hairstring", "attachment": "images/hairstring" },
{ "name": "images/sword01", "bone": "images/sword01", "attachment": "images/sword01" },
{ "name": "images/sword1", "bone": "images/sword2" },
{ "name": "images/swordlight", "bone": "images/sword1", "color": "ffffff43", "attachment": "images/swordlight" },
{ "name": "images/swordlight2", "bone": "images/sword3", "color": "ffffff43" },
{ "name": "images/shou15", "bone": "images/shou15", "attachment": "images/shou15" },
{ "name": "images/ass01", "bone": "images/ass01", "attachment": "images/ass01" },
{ "name": "images/body01", "bone": "images/body1", "attachment": "images/body01" },
{ "name": "images/crotch01", "bone": "images/crotch01", "attachment": "images/crotch01" },
{ "name": "images/belt01", "bone": "images/belt01", "attachment": "images/belt01" },
{ "name": "images/cloak", "bone": "images/cloak", "attachment": "images/cloak" },
{ "name": "images/right_shouder01", "bone": "images/right_shouder01", "attachment": "images/right_shouder01" },
{ "name": "images/head01", "bone": "images/head01", "attachment": "images/head01" },
{ "name": "images/ear", "bone": "images/ear", "attachment": "images/ear" },
{ "name": "images/helmet01", "bone": "images/helmet01", "attachment": "images/helmet01" },
{ "name": "images/left_eye01", "bone": "images/left_eye01", "attachment": "images/left_eye01" },
{ "name": "images/left_shouder1", "bone": "images/left_shouder1", "attachment": "images/left_shouder1" },
{ "name": "images/claw01", "bone": "images/claw01", "attachment": "images/claw01" },
{ "name": "images/Eff/shandian0001", "bone": "Eff_shandian", "blend": "additive" }
],
"skins": {
"default": {
"images/Eff/shandian0001": {
"images/Eff/shandian0001": { "width": 283, "height": 309 },
"images/Eff/shandian0002": { "width": 283, "height": 309 },
"images/Eff/shandian0003": { "width": 283, "height": 309 },
"images/Eff/shandian0004": { "width": 283, "height": 309 },
"images/Eff/shandian0005": { "width": 283, "height": 309 },
"images/Eff/shandian0006": { "width": 283, "height": 309 },
"images/Eff/shandian0007": { "width": 283, "height": 309 }
},
"images/ass01": {
"images/ass01": { "x": 14.06, "y": 8.3, "rotation": 83.77, "width": 83, "height": 44 },
"images/ass03": { "x": 14.06, "y": 8.3, "rotation": 83.77, "width": 53, "height": 44 }
},
"images/belt01": {
"images/belt01": { "x": 11.54, "y": -0.22, "width": 68, "height": 42 },
"images/belt02": { "x": 11.54, "y": -0.22, "width": 68, "height": 42 },
"images/belt03": { "x": 11.54, "y": -0.22, "width": 54, "height": 42 },
"images/belt04": { "x": 11.54, "y": -0.22, "width": 59, "height": 20 }
},
"images/body01": {
"images/body01": { "x": 4.05, "y": -11.62, "rotation": -88.22, "width": 90, "height": 91 },
"images/body02": { "x": 4.05, "y": -11.62, "rotation": -88.22, "width": 92, "height": 95 },
"images/body03": {
"type": "mesh",
"uvs": [ 0.35675, 0.02076, 0.07328, 0.10033, 0, 0.33239, 0.26704, 0.87277, 0.31369, 0.96228, 0.59716, 1, 0.82322, 0.93245, 0.93445, 0.72359, 1, 0.36886, 0.94522, 0.19978, 0.78734, 0.04065, 0.57204, 0, 0.32445, 0.28266, 0.47157, 0.82967 ],
"triangles": [ 12, 1, 0, 2, 1, 12, 8, 11, 9, 9, 11, 10, 11, 12, 0, 11, 8, 12, 7, 13, 8, 8, 13, 12, 3, 2, 12, 3, 12, 13, 6, 13, 7, 4, 3, 13, 5, 13, 6, 4, 13, 5 ],
"vertices": [ 47.63, 5.46, 39.57, 29.31, 18.04, 34.88, -30.94, 10.66, -39.05, 6.44, -41.77, -17.74, -34.97, -36.75999, -15.47, -45.61, 17.31, -50.17, 32.72, -45.04, 46.94, -31.17, 50.11, -12.77, 23.46, 7.46, -26.44, -6.59 ],
"hull": 12
},
"images/body04": { "x": 4.05, "y": -11.62, "rotation": -88.22, "width": 90, "height": 91 }
},
"images/claw01": {
"images/claw01": { "x": -6.74, "y": -3.57, "width": 61, "height": 74 },
"images/claw02": { "x": -6.74, "y": -3.57, "rotation": -91.67, "width": 88, "height": 57 },
"images/claw03": { "x": -6.74, "y": -3.57, "rotation": -116.08, "width": 101, "height": 85 },
"images/claw04": { "x": -6.74, "y": -3.57, "rotation": -118.82, "width": 93, "height": 99 },
"images/claw05": { "x": -6.74, "y": -3.57, "rotation": 79.83, "width": 78, "height": 56 },
"images/claw06": { "x": 6.69, "y": -5.25, "rotation": -87.81, "width": 85, "height": 67 },
"images/claw07": { "x": 1.09, "y": -0.21, "rotation": -82.61, "width": 69, "height": 61 }
},
"images/cloak": {
"images/cloak": {
"type": "mesh",
"uvs": [ 0.51473, 0, 0.37754, 0.03707, 0.27133, 0.10117, 0.19167, 0.17312, 0.11643, 0.24768, 0.06333, 0.32094, 0.00137, 0.4099, 0, 0.48054, 0.08988, 0.51586, 0.25805, 0.54595, 0.21379, 0.6179, 0.18724, 0.68723, 0.16511, 0.74871, 0.15626, 0.81412, 0.28903, 0.77749, 0.43507, 0.73694, 0.51031, 0.78927, 0.52801, 0.84683, 0.52801, 0.91485, 0.58996, 0.93578, 0.66962, 0.907, 0.7183, 0.9541, 0.83337, 0.9868, 0.99269, 1, 1, 0.92663, 1, 0.84421, 1, 0.7631, 1, 0.68069, 1, 0.60089, 1, 0.52502, 0.98384, 0.45502, 0.97941, 0.36868, 0.97056, 0.28234, 0.96171, 0.196, 0.96171, 0.12405, 0.95728, 0.03771, 0.9263, 0, 0.7006, 0, 0.5196, 0.0731, 0.77847, 0.069, 0.45488, 0.12639, 0.79696, 0.12639, 0.43176, 0.18925, 0.74611, 0.19198, 0.40865, 0.26304, 0.70913, 0.27123, 0.38091, 0.32589, 0.69526, 0.34366, 0.28846, 0.41745, 0.69064, 0.42975, 0.38554, 0.50354, 0.67677, 0.5131, 0.45488, 0.42701, 0.44563, 0.58142, 0.67677, 0.58416, 0.43639, 0.63608, 0.71837, 0.64018, 0.42714, 0.69894, 0.58894, 0.7208, 0.77385, 0.72627, 0.73224, 0.78913, 0.67677, 0.84515, 0.8247, 0.86292, 0.83394, 0.92988 ],
"triangles": [ 39, 37, 36, 38, 0, 37, 1, 0, 38, 40, 1, 38, 2, 1, 40, 41, 39, 36, 41, 36, 35, 41, 35, 34, 38, 37, 39, 41, 38, 39, 40, 38, 41, 42, 2, 40, 43, 40, 41, 41, 34, 33, 44, 2, 42, 3, 2, 44, 45, 40, 43, 42, 40, 45, 43, 41, 33, 46, 3, 44, 45, 44, 42, 47, 44, 45, 48, 3, 46, 4, 3, 48, 52, 44, 47, 46, 44, 52, 32, 45, 43, 32, 43, 33, 32, 47, 45, 32, 31, 47, 5, 4, 48, 48, 46, 52, 49, 52, 47, 50, 48, 52, 51, 52, 49, 8, 5, 48, 6, 5, 8, 7, 6, 8, 9, 8, 48, 30, 47, 31, 30, 49, 47, 30, 51, 49, 9, 48, 50, 53, 50, 52, 53, 52, 51, 54, 53, 51, 29, 51, 30, 55, 50, 53, 28, 56, 29, 29, 56, 51, 54, 51, 56, 55, 9, 50, 55, 10, 9, 58, 53, 54, 59, 56, 28, 57, 10, 55, 58, 54, 56, 55, 53, 58, 57, 55, 58, 27, 59, 28, 15, 57, 58, 59, 27, 26, 14, 10, 57, 14, 57, 15, 11, 10, 14, 12, 11, 14, 58, 56, 60, 16, 15, 58, 13, 12, 14, 60, 56, 59, 62, 59, 26, 61, 58, 60, 17, 16, 58, 61, 17, 58, 25, 62, 26, 60, 59, 62, 61, 19, 17, 62, 61, 60, 19, 18, 17, 63, 62, 25, 24, 63, 25, 61, 20, 19, 62, 21, 61, 21, 62, 63, 20, 61, 21, 22, 21, 63, 23, 63, 24, 22, 63, 23 ],
"vertices": [ 1, 17, -5.77, -8.75, 1, 2, 18, -25.75, -13.76, 0.00296, 17, 0.8, -14.5, 0.99703, 2, 18, -15.18, -17.89, 0.10466, 17, 11.49, -18.32, 0.89533, 3, 19, -26.48, -19.4, 0.01516, 18, -3.47, -20.67, 0.43587, 17, 23.28, -20.76, 0.54895, 4, 20, -37.8, -18.89, 2.9E-4, 19, -14.51, -22.53, 0.16203, 18, 8.63, -23.21, 0.66818, 17, 35.45, -22.94, 0.16948, 4, 20, -26.33, -22.13, 0.02945, 19, -2.78, -24.62, 0.48752, 18, 20.45, -24.73, 0.46155, 17, 47.31, -24.12, 0.02146, 3, 20, -12.41, -25.94, 0.19468, 19, 11.45, -27.04, 0.69426, 18, 34.78, -26.45, 0.11105, 3, 20, -1.2, -26.73, 0.3773, 19, 22.67, -26.72, 0.60578, 18, 45.98, -25.58, 0.01691, 4, 21, -20.52, -20.70999, 0.00136, 20, 4.66, -22.88, 0.492, 19, 28.14, -22.3, 0.50498, 18, 51.23, -20.91, 0.00163, 3, 21, -14.42, -13.77, 0.08028, 20, 9.95, -15.3, 0.7126, 19, 32.65, -14.24, 0.2071, 3, 21, -3.52, -17.83, 0.54812, 20, 21.23, -18.11, 0.44278, 19, 44.15, -15.92, 0.00909, 2, 21, 7.1, -20.99, 0.88221, 20, 32.15, -20.06, 0.11778, 3, 22, -4.85, -23.62, 4.8E-4, 21, 16.54, -23.74, 0.98705, 20, 41.84, -21.73, 0.01245, 1, 21, 26.71, -25.97, 1, 3, 22, 0.79, -18.83, 0.00275, 21, 22.07, -18.81, 0.99398, 20, 46.78, -16.20999, 0.00326, 3, 22, -4.15, -10.82, 0.10867, 21, 16.93, -10.92, 0.88043, 20, 40.79, -8.95, 0.01089, 2, 22, 4.69999, -9.02, 0.79221, 21, 25.74, -8.89999, 0.20778, 3, 23, -4.98, -9.78, 0.21828, 22, 13.84, -10.03, 0.78167, 20, 58.5, -5.72, 4.0E-5, 4, 23, 5.47, -12.5, 0.77993, 22, 24.43, -12.19, 0.21935, 21, 45.55, -11.59, 7.0E-4, 20, 69.3, -6.41, 1.0E-5, 4, 23, 9.43, -10.52, 0.84284, 22, 28.28, -10.01, 0.15658, 21, 49.33, -9.31, 5.5E-4, 20, 72.81, -3.72, 0, 3, 23, 5.94, -5.75, 0.86826, 22, 24.54, -5.42, 0.13164, 21, 45.49, -4.82, 8.0E-5, 1, 23, 13.76, -5.42, 1, 1, 23, 20.16, -1.49, 1, 2, 23, 24.07, 5.21999, 0.99996, 20, 84.21, 14.5, 3.0E-5, 3, 23, 12.87, 8.49, 0.97817, 22, 30.7, 9.16, 0.02108, 20, 72.58999, 15.6, 7.4E-4, 2, 23, 0.19, 11.78, 0.32053, 22, 17.86, 11.78, 0.67946, 4, 23, -12.29, 15.03, 0.11045, 22, 5.23, 14.36, 0.56965, 21, 25.69, 14.48, 0.31153, 20, 46.65, 17.27, 0.00835, 4, 23, -24.97, 18.33, 0.01517, 22, -7.6, 16.98, 0.20459, 21, 12.79, 16.78, 0.66618, 20, 33.57, 18.11, 0.11404, 5, 23, -37.25, 21.52, 0.00785, 22, -20.03, 19.51, 0.00976, 21, 0.3, 19.01, 0.39099, 20, 20.91, 18.93, 0.56991, 19, 40.18, 20.9, 0.02147, 5, 23, -48.92, 24.56, 0.0025, 21, -11.56, 21.14, 0.0661, 20, 8.87, 19.70999, 0.72049, 19, 28.12, 20.49, 0.20945, 18, 49.13, 21.83, 0.00143, 5, 23, -59.89, 26.62, 6.2E-4, 21, -22.65, 22.34, 4.1E-4, 20, -2.27, 19.66, 0.39035, 19, 17.03, 19.34, 0.55597, 18, 38.09999, 20.15, 0.05262, 4, 23, -73.22, 29.87, 5.0E-5, 20, -15.99, 20.34, 0.0535, 19, 3.31, 18.66, 0.56589, 18, 24.44, 18.79999, 0.38055, 3, 19, -10.38, 17.77, 0.12103, 18, 10.79, 17.25, 0.78859, 17, 36.43, 17.54999, 0.09037, 2, 18, -2.85, 15.69, 0.40624, 17, 22.84, 15.6, 0.59375, 2, 18, -14.25, 14.74, 0.04232, 17, 11.47, 14.32, 0.95767, 1, 17, -2.14, 12.58, 1, 1, 17, -7.93, 10.46, 1, 2, 18, -32.88, 0.88, 0, 17, -6.75, -0.07, 0.99999, 2, 18, -20.59, -6.63, 9.4E-4, 17, 5.75, -7.22, 0.99905, 1, 17, 3.74, 4.78, 1, 2, 18, -11.9, -8.96, 0.15109, 17, 14.51, -9.3, 0.8489, 2, 18, -13.23, 7.06, 0.06682, 17, 12.71, 6.67, 0.93317, 2, 18, -1.85, -9.21, 0.33262, 17, 24.56, -9.26, 0.66737, 2, 18, -2.64, 5.54, 0.2877, 17, 23.34, 5.46, 0.71229, 3, 19, -12.54, -8.72, 0.12099, 18, 9.92, -9.32, 0.79519, 17, 36.34, -9.02, 0.08381, 3, 19, -11.72, 5.43, 0.03278, 18, 10.05, 4.86, 0.95391, 17, 36.06, 5.15, 0.01329, 3, 19, -2.51, -9.67, 0.33492, 18, 19.99, -9.79, 0.65978, 17, 46.42, -9.2, 0.00528, 4, 20, -20.82, 7.27, 5.3E-4, 19, -0.19, 5.17999, 0.3708, 18, 21.58, 5.16, 0.62815, 17, 47.57, 5.79, 4.9E-4, 3, 20, -10.34, -12.56, 0.11206, 19, 12.18, -13.52, 0.78029, 18, 34.86, -12.91, 0.10763, 4, 23, -67.24, 14.29, 6.0E-5, 20, -7.17, 6.17, 0.07504, 19, 13.48, 5.43, 0.85664, 18, 35.24, 6.08, 0.06824, 3, 21, -20, -6.68, 0.02753, 20, 3.6, -8.88, 0.73181, 19, 25.7, -8.47999, 0.24064, 3, 23, -54.58, 10.33, 3.2E-4, 20, 6, 4.67, 0.76174, 19, 26.75, 5.23999, 0.23792, 3, 20, -8.32, -4.85, 0.14159, 19, 13.43, -5.65, 0.85336, 18, 35.73, -4.98999, 0.00504, 3, 21, -7.31, -6.08, 0.11443, 20, 16.14, -6.86, 0.87559, 19, 37.98, -5.23, 0.00996, 3, 23, -43.65, 7.49, 0.00107, 21, -4.98, 4.53, 0.2336, 20, 17.28, 3.94, 0.76531, 2, 21, 1.16, -8.04, 0.64985, 20, 24.79, -7.86, 0.35014, 4, 23, -34.53, 7.14, 0.003, 22, -16.56, 5.3, 0.00249, 21, 4.13, 4.89, 0.57946, 20, 26.29, 5.32, 0.41502, 3, 22, -10.14, -9.97, 0.01916, 21, 10.92, -10.22, 0.94555, 20, 34.73, -8.93, 0.03527, 2, 22, -5.21, -3.22, 0.13075, 21, 15.68, -3.35, 0.86924, 3, 23, -20.62999, 6.22, 0.00827, 22, -2.63, 5.11, 0.46853, 21, 18.06, 5.05, 0.52318, 1, 22, 6.77, 1.2, 1, 3, 23, -3.48, -2.95, 0.09672, 22, 14.97, -3.13, 0.9009, 21, 35.87, -2.76, 0.00236, 4, 23, 0.99, 3.06, 0.48095, 22, 19.12999, 3.11, 0.51452, 21, 39.87, 3.58, 0.00351, 20, 61.95, 8.03, 0.00101, 1, 23, 11.4, 0.8, 1 ],
"hull": 38
}
},
"images/crotch01": {
"images/crotch01": {
"type": "mesh",
"uvs": [ 0.18693, 0, 0.03927, 0.02973, 0, 0.15178, 0, 0.29418, 0, 0.43103, 0, 0.59007, 0, 0.72322, 0, 0.84897, 0.22068, 0.94513, 0.4274, 1, 0.58771, 1, 0.7649, 0.92849, 1, 0.81753, 1, 0.69363, 0.95474, 0.56788, 0.9463, 0.43103, 0.92943, 0.28863, 0.93787, 0.13144, 0.90833, 0.01678, 0.66787, 0, 0.43584, 0, 0.26287, 0.14069, 0.64677, 0.13699, 0.31349, 0.26274, 0.6763, 0.25904, 0.33037, 0.40329, 0.64255, 0.40329, 0.35568, 0.56233, 0.65943, 0.55678, 0.31771, 0.70103, 0.6763, 0.69918, 0.34724, 0.82493, 0.6974, 0.81383, 0.52865, 0.91, 0.36834, 0.91185, 0.67208, 0.90445, 0.53342, 0.81903, 0.52021, 0.71212, 0.52021, 0.55863, 0.49912, 0.39959, 0.47802, 0.25164, 0.48232, 0.13857 ],
"triangles": [ 19, 41, 20, 22, 41, 19, 21, 0, 20, 21, 20, 41, 41, 23, 21, 22, 18, 17, 18, 22, 19, 24, 22, 17, 40, 23, 41, 16, 24, 17, 21, 3, 2, 40, 22, 24, 22, 40, 41, 24, 26, 40, 25, 23, 40, 3, 23, 4, 1, 0, 21, 1, 21, 2, 16, 26, 24, 21, 23, 3, 26, 39, 40, 25, 40, 39, 26, 15, 28, 15, 26, 16, 38, 39, 26, 38, 26, 28, 27, 25, 39, 25, 4, 23, 27, 4, 25, 27, 39, 38, 28, 15, 14, 5, 4, 27, 30, 28, 14, 30, 14, 13, 29, 5, 27, 37, 38, 28, 37, 28, 30, 27, 38, 37, 29, 27, 37, 6, 5, 29, 32, 30, 13, 31, 29, 37, 7, 6, 29, 32, 13, 12, 36, 37, 30, 36, 30, 32, 31, 37, 36, 7, 29, 31, 35, 36, 32, 36, 34, 31, 33, 36, 35, 33, 34, 36, 11, 32, 12, 35, 32, 11, 8, 7, 31, 8, 31, 34, 9, 34, 33, 8, 34, 9, 10, 33, 35, 9, 33, 10, 10, 35, 11 ],
"vertices": [ 2, 15, -39.58, -4.91, 0, 13, -4.9, -8.51, 0.99999, 2, 15, -37.8, -9.8, 0, 13, -2.56, -13.15, 0.99999, 3, 15, -29.02, -11.77, 0, 14, -13.78, -13.14, 0.02345, 13, 6.38, -14.07, 0.97654, 3, 15, -18.66, -12.6, 2.9E-4, 14, -3.39, -13.48, 0.34279, 13, 16.77, -13.68, 0.6569, 3, 15, -8.7, -13.41, 0.11681, 14, 6.59, -13.81, 0.74775, 13, 26.75, -13.31, 0.13541, 3, 16, -11.29, -14.95, 0.06083, 15, 2.86, -14.34, 0.62267, 14, 18.19, -14.19, 0.31648, 3, 16, -1.57, -15.22, 0.40579, 15, 12.55, -15.12, 0.56168, 14, 27.91, -14.51, 0.0325, 2, 16, 7.59, -15.48, 0.75264, 15, 21.7, -15.86, 0.24735, 2, 16, 14.81, -8.62, 0.95551, 15, 29.27, -9.38, 0.04448, 1, 16, 19, -2.11999, 1, 1, 16, 19.14, 3, 1, 2, 16, 14.08, 8.81, 0.98439, 15, 29.45, 8.06, 0.0156, 3, 16, 6.2, 16.56, 0.72326, 15, 21.99, 16.20999, 0.27388, 14, 35.84, 17.24, 0.00284, 3, 16, -2.83, 16.81, 0.37572, 15, 12.97, 16.94, 0.56098, 14, 26.8, 17.54, 0.06328, 4, 16, -12.05, 15.62, 0.07035, 15, 3.7, 16.23, 0.60098, 14, 17.57, 16.39, 0.31632, 13, 35.59, 17.59, 0.01232, 3, 15, -6.27, 16.77, 0.22191, 14, 7.58, 16.45, 0.59618, 13, 25.62, 16.94, 0.18188, 3, 15, -16.67, 17.06, 0.02117, 14, -2.82, 16.25, 0.31994, 13, 15.25, 16.01, 0.65887, 2, 14, -14.28, 16.9, 0.02912, 13, 3.77, 15.85, 0.97087, 2, 15, -36.50999, 17.99, 0, 13, -4.54, 14.59, 1, 2, 15, -38.34999, 10.42, 0, 13, -5.48, 6.86, 1, 2, 15, -38.93999, 3.01, 0, 13, -5.19999, -0.55, 0.99999, 3, 15, -29.15, -3.32, 0, 14, -14.31, -4.69999, 0.00195, 13, 5.26, -5.7, 0.99804, 2, 14, -14.18, 7.57, 0.01111, 13, 4.53, 6.56, 0.98888, 2, 14, -5.35, -3.38, 0.06607, 13, 14.1, -3.75, 0.93392, 3, 15, -19.48, 9.16, 0.00306, 14, -5.23999, 8.22999, 0.16271, 13, 13.4, 7.84, 0.83422, 3, 15, -9.87, -2.71, 0.00503, 14, 4.91, -3.17, 0.99048, 13, 24.33, -2.82, 0.00448, 3, 15, -9.07, 7.24, 0.0428, 14, 5.23999, 6.8, 0.78063, 13, 23.96, 7.15, 0.17656, 3, 16, -12.99, -3.52, 2.1E-4, 15, 1.76, -2.83, 0.87514, 14, 16.54, -2.74, 0.12463, 4, 16, -13.12, 6.2, 0.00785, 15, 2.14, 6.88, 0.61396, 14, 16.45, 6.97, 0.37254, 13, 35.14, 8.10999, 0.00562, 3, 16, -2.91, -5.02, 0.22866, 15, 11.75, -4.86, 0.75758, 14, 26.62, -4.29, 0.01375, 3, 16, -2.72, 6.45, 0.26075, 15, 12.54, 6.58, 0.69946, 14, 26.86, 7.17, 0.03977, 2, 16, 6.15, -4.33, 0.87908, 15, 20.84, -4.64, 0.12091, 3, 16, 5.66, 6.89, 0.79643, 15, 20.94, 6.58, 0.20282, 14, 35.25, 7.57, 7.3E-4, 1, 16, 12.52, 1.29, 1, 2, 16, 12.51, -3.83, 0.97789, 15, 27.22, -4.48, 0.0221, 2, 16, 12.25, 5.89, 0.9989, 15, 27.47, 5.23999, 0.00109, 2, 16, 5.89, 1.63, 0.99024, 15, 20.89, 1.32, 0.00975, 3, 16, -1.91, 1.43, 0.35716, 15, 13.08, 1.53, 0.64218, 14, 27.64, 2.15, 6.4E-4, 4, 16, -13.12, 1.74, 2.4E-4, 15, 1.91, 2.43, 0.68107, 14, 16.44, 2.52, 0.31858, 13, 35.43999, 3.66, 8.0E-5, 3, 15, -9.7, 2.69, 0.01842, 14, 4.82, 2.22, 0.91164, 13, 23.86, 2.55, 0.06993, 1, 13, 13.09, 1.48, 1, 1, 13, 4.84, 1.29999, 1 ],
"hull": 21
}
},
"images/ear": {
"images/ear": { "x": 14.49, "y": 3.47, "rotation": -148.85, "width": 45, "height": 35 }
},
"images/hair": {
"images/hair": {
"type": "mesh",
"uvs": [ 0.7869, 0, 0.69385, 0.0294, 0.65162, 0.08366, 0.63134, 0.13275, 0.59924, 0.1883, 0.55194, 0.23351, 0.49619, 0.27098, 0.43706, 0.30069, 0.38638, 0.32007, 0.31881, 0.33687, 0.35259, 0.36916, 0.39821, 0.38467, 0.46747, 0.39371, 0.42524, 0.42724, 0.39483, 0.47116, 0.3678, 0.53059, 0.34753, 0.58356, 0.34077, 0.63136, 0.33739, 0.6882, 0.33739, 0.72308, 0.383, 0.70887, 0.35935, 0.75796, 0.3205, 0.80964, 0.27657, 0.86206, 0.23265, 0.90081, 0.17014, 0.92923, 0.09919, 0.93828, 0.04175, 0.94086, 0, 0.94215, 0, 0.96928, 0.04513, 0.98866, 0.10088, 1, 0.20562, 1, 0.29684, 0.98091, 0.37962, 0.95249, 0.45903, 0.92019, 0.54349, 0.85818, 0.60769, 0.79875, 0.68214, 0.73158, 0.73958, 0.6799, 0.78858, 0.62564, 0.8325, 0.56363, 0.88487, 0.48353, 0.92204, 0.42023, 0.95414, 0.35822, 0.98961, 0.28329, 1, 0.22257, 1, 0.1554, 1, 0.0832, 1, 0.02765, 0.96258, 0.00956, 0.87305, 0, 0.5524, 0.2803, 0.68904, 0.27407, 0.51958, 0.49095, 0.38189, 0.6525, 0.4292, 0.85838, 0.47288, 0.84432, 0.51639, 0.78973, 0.87558, 0.16513, 0.75337, 0.25479, 0.88776, 0.35629, 0.45506, 0.33549, 0.54506, 0.34284, 0.7926, 0.48997, 0.44722, 0.64513, 0.72389, 0.32933, 0.92414, 0.19132, 0.49676, 0.55583, 0.41627, 0.79512, 0.82887, 0.40828, 0.62858, 0.44295, 0.48018, 0.71819, 0.70064, 0.58838, 0.54145, 0.43416, 0.61641, 0.27384, 0.91336, 0.1073, 0.71905, 0.50712, 0.40108, 0.58893, 0.91615, 0.27821, 0.72958, 0.11191, 0.68361, 0.20315, 0.83974, 0.21928, 0.72363, 0.42226, 0.54039, 0.64646, 0.81762, 0.31648, 0.46727, 0.47094, 0.36863, 0.87389, 0.64211, 0.35933, 0.82581, 0.06559, 0.82506, 0.1426, 0.57281, 0.50283, 0.60018, 0.57779, 0.76628, 0.18635, 0.57782, 0.72379, 0.77351, 0.3691, 0.64013, 0.65799, 0.2992, 0.91937, 0.75904, 0.05172, 0.24089, 0.94606, 0.66787, 0.30916, 0.58931, 0.39484, 0.65028, 0.51518, 0.76668, 0.55496, 0.68039, 0.4719, 0.8937, 0.04562, 0.42555, 0.52349 ],
"triangles": [ 105, 51, 50, 98, 1, 0, 89, 0, 51, 89, 51, 105, 98, 0, 89, 50, 49, 48, 76, 105, 50, 48, 76, 50, 80, 1, 98, 2, 1, 80, 89, 80, 98, 90, 80, 89, 89, 105, 76, 76, 48, 47, 76, 90, 89, 59, 90, 76, 93, 80, 90, 67, 76, 47, 59, 76, 67, 80, 3, 2, 81, 80, 93, 81, 3, 80, 4, 3, 81, 82, 90, 59, 93, 90, 82, 67, 47, 46, 60, 81, 93, 60, 93, 82, 75, 4, 81, 53, 81, 60, 67, 82, 59, 79, 67, 46, 79, 82, 67, 45, 79, 46, 85, 60, 82, 85, 82, 79, 44, 79, 45, 5, 4, 75, 75, 81, 53, 52, 5, 75, 6, 5, 52, 100, 75, 53, 66, 53, 60, 66, 60, 85, 100, 53, 66, 62, 7, 6, 63, 6, 52, 62, 6, 63, 61, 85, 79, 61, 79, 44, 88, 75, 100, 95, 66, 85, 10, 9, 8, 62, 11, 8, 62, 8, 7, 10, 8, 11, 12, 62, 63, 11, 62, 12, 63, 75, 88, 75, 63, 52, 101, 63, 88, 70, 85, 61, 95, 85, 70, 43, 61, 44, 70, 61, 43, 66, 88, 100, 83, 66, 95, 83, 88, 66, 71, 88, 83, 42, 70, 43, 70, 83, 95, 64, 70, 42, 64, 83, 70, 74, 12, 63, 74, 63, 101, 71, 101, 88, 74, 101, 71, 86, 13, 12, 86, 12, 74, 14, 13, 86, 104, 71, 83, 77, 104, 83, 54, 86, 74, 91, 74, 71, 54, 74, 91, 64, 77, 83, 102, 71, 104, 102, 104, 77, 91, 71, 102, 106, 14, 86, 15, 14, 106, 103, 77, 64, 68, 86, 54, 106, 86, 68, 41, 64, 42, 103, 64, 41, 92, 91, 102, 73, 102, 77, 73, 77, 103, 92, 102, 73, 40, 103, 41, 73, 103, 40, 68, 91, 92, 91, 68, 54, 39, 73, 40, 78, 15, 106, 78, 106, 68, 16, 15, 78, 65, 78, 68, 84, 68, 92, 65, 68, 84, 78, 17, 16, 55, 78, 65, 55, 17, 78, 96, 92, 73, 84, 92, 96, 96, 73, 39, 18, 17, 55, 20, 55, 65, 18, 55, 20, 72, 65, 84, 20, 65, 72, 19, 18, 20, 94, 84, 96, 72, 84, 94, 38, 96, 39, 94, 96, 38, 58, 72, 94, 37, 94, 38, 58, 94, 37, 69, 20, 72, 69, 72, 58, 21, 20, 69, 57, 69, 58, 36, 58, 37, 57, 58, 36, 56, 69, 57, 69, 22, 21, 87, 69, 56, 87, 22, 69, 35, 56, 57, 35, 57, 36, 35, 87, 56, 23, 22, 87, 97, 23, 87, 24, 23, 97, 99, 24, 97, 35, 34, 87, 97, 87, 34, 33, 99, 97, 33, 97, 34, 25, 24, 99, 29, 28, 27, 30, 27, 26, 29, 27, 30, 31, 26, 25, 30, 26, 31, 32, 25, 99, 31, 25, 32, 32, 99, 33 ],
"vertices": [ 1, 6, -18.08, -17.11, 1, 4, 10, -136.77, -57.46, 0, 9, -107.35, -41.68999, 0, 7, -42, -29.72, 5.6E-4, 6, -7.23, -28.46, 0.99943, 4, 10, -123.93, -56.4, 0, 9, -94.48, -42.08, 0, 7, -29.24, -31.47, 0.03155, 6, 5.46, -30.59, 0.96844, 4, 10, -113.94, -53.17, 0, 9, -84.18, -39.99, 0, 7, -18.78, -30.48, 0.12705, 6, 15.94, -29.91, 0.87293, 5, 10, -101.8, -50.67, 1.0E-5, 9, -71.85, -38.88, 0, 8, -40.83, -30.17, 0.01813, 7, -6.4, -30.67, 0.37356, 6, 28.32, -30.47, 0.60829, 5, 10, -90.01, -51.33, 3.0E-5, 9, -60.2, -40.86, 0, 8, -29.5, -33.50999, 0.0922, 7, 4.96999, -33.87, 0.61653, 6, 39.59, -34, 0.29122, 4, 10, -78.74, -53.98, 5.0E-5, 8, -19.12999, -38.66, 0.22862, 7, 15.4, -38.89, 0.67705, 6, 49.87, -39.34, 0.09426, 5, 10, -68.44999, -57.97, 8.0E-5, 9, -39.53, -49.89, 4.0E-4, 8, -10.03, -44.9, 0.3539, 7, 24.57, -45.02, 0.62346, 6, 58.86, -45.74, 0.02214, 4, 10, -60.64, -62.12, 9.0E-5, 8, -3.38, -50.73, 0.39805, 7, 31.3, -50.76, 0.59801, 6, 65.41, -51.67, 0.00383, 3, 10, -51.73, -68.72, 1.0E-4, 8, 3.77, -59.19, 0.40715, 7, 38.56, -59.13, 0.59274, 4, 10, -49.43, -60.6, 9.0E-5, 9, -20.92, -54.65, 1.4E-4, 8, 7.88, -51.81, 0.40997, 7, 42.58, -51.71, 0.58977, 5, 10, -50.98, -52.97, 9.0E-5, 9, -21.6, -46.89, 0.00561, 8, 8.10999, -44.03, 0.42433, 7, 42.71, -43.93, 0.56932, 6, 77.01999, -45.18, 6.2E-4, 5, 10, -55.74, -43.1, 6.0E-5, 9, -25.23, -36.55, 0.04334, 8, 5.73, -33.33, 0.51466, 7, 40.2, -33.25999, 0.43978, 6, 74.82, -34.43999, 0.00212, 4, 10, -46.35, -44.5, 6.0E-5, 9, -16.04999, -38.99, 0.16992, 8, 14.55, -36.84, 0.61881, 7, 49.07, -36.66, 0.21119, 3, 9, -5.92, -38.8, 0.3228, 8, 24.64, -37.84, 0.59331, 7, 59.17, -37.53, 0.08388, 4, 10, -23.98, -39.56, 0.00473, 9, 6.72, -36.61, 0.56199, 8, 37.46, -37.15, 0.41725, 7, 71.97, -36.68, 0.01601, 4, 10, -13.34, -35.87, 0.0424, 9, 17.70999, -34.14, 0.7233, 8, 48.66, -35.98, 0.23413, 7, 83.16, -35.38, 1.4E-4, 3, 10, -4.79, -31.07, 0.13362, 9, 26.75, -30.33, 0.75944, 8, 58.08, -33.27, 0.10692, 3, 10, 4.94999, -24.77, 0.33401, 9, 37.14, -25.17, 0.64309, 8, 69.01, -29.36, 0.02288, 3, 10, 10.75, -20.65, 0.39451, 9, 43.37, -21.73, 0.59447, 8, 75.6, -26.67, 0.01101, 3, 10, 4.26, -16.53, 0.4599, 9, 37.38, -16.91, 0.53138, 8, 70.22, -21.18, 0.00871, 2, 10, 14.55, -13.73, 0.92054, 9, 47.93, -15.28, 0.07944, 2, 11, -2.21, -13.91, 0.20068, 10, 26.66, -12.55, 0.79931, 2, 11, 9.64999, -9.39999, 0.85172, 10, 39.34, -11.92, 0.14827, 2, 12, -2.2, -8.38, 0.26072, 11, 19.86, -7.13, 0.73927, 2, 12, 8.79, -5.61, 0.91378, 11, 31.15, -8.27, 0.08621, 1, 12, 19.93, -7.01, 1, 1, 12, 28.66, -9.06, 1, 1, 12, 34.98, -10.67, 1, 1, 12, 36.56, -5.37, 1, 1, 12, 30.94, 0.42, 1, 1, 12, 23.27, 5.13, 1, 2, 12, 7.61, 9.8, 0.84106, 11, 35.29, 6.61, 0.15893, 2, 12, -7.13, 10.13, 0.22221, 11, 21.54, 11.96, 0.77778, 2, 11, 7.71, 14.98, 0.81385, 10, 45.04, 11.86, 0.18614, 2, 11, -6.15, 17.06, 0.30675, 10, 32.49, 18.12999, 0.69324, 3, 11, -24.27, 14.74, 0.01902, 10, 14.54, 21.52, 0.8831, 9, 51.89, 19.75, 0.09785, 2, 10, -1.14, 22.65, 0.48416, 9, 36.43, 22.63, 0.51582, 3, 10, -19.04, 24.15, 0.07571, 9, 18.81, 26.15, 0.81851, 8, 56.84, 23.75, 0.10577, 4, 10, -32.82, 25.34, 0.00349, 9, 5.25, 28.87, 0.61477, 8, 43.69, 28.06, 0.379, 7, 77.4, 28.59, 0.00272, 3, 9, -8.13, 30.19, 0.30261, 8, 30.55, 30.94, 0.65701, 7, 64.23, 31.31, 0.04036, 3, 9, -22.51, 30.05, 0.08915, 8, 16.25, 32.49, 0.72359, 7, 49.91, 32.68999, 0.18724, 5, 10, -78.6, 20.56, 0, 9, -40.77, 29.28, 0.00317, 8, -1.96, 33.87, 0.44958, 7, 31.68, 33.84, 0.52517, 6, 68.3, 32.88, 0.02207, 4, 10, -92.48, 17.79, 0, 8, -16.11, 34.34, 0.18117, 7, 17.52, 34.14, 0.68451, 6, 54.16, 33.59999, 0.13431, 5, 10, -105.69, 14.52, 0, 9, -68.36, 26.34, 2.0E-5, 8, -29.71, 34.18999, 0.04548, 7, 3.92, 33.82, 0.57099, 6, 40.56, 33.68999, 0.38349, 5, 10, -121.35, 10.16, 0, 9, -84.42, 23.77, 2.0E-5, 8, -45.95, 33.52, 0.00124, 7, -12.3, 32.95, 0.26844, 6, 24.31, 33.3, 0.73029, 4, 10, -132.38, 4.3, 0, 9, -96.03, 19.18, 1.0E-5, 7, -24.34, 29.61, 0.09014, 6, 12.18, 30.32, 0.90983, 4, 10, -143.54, -3.64, 0, 9, -108.02, 12.54, 0, 7, -36.96, 24.27, 0.00904, 6, -0.58999, 25.36, 0.99095, 3, 10, -155.54, -12.19, 0, 9, -120.9, 5.4, 0, 6, -14.31, 20.02, 0.99999, 3, 10, -164.77, -18.76, 0, 9, -130.81, -0.09, 0, 6, -24.87, 15.91, 0.99999, 2, 10, -164.38, -25.66, 0, 6, -26.2, 9.14, 1, 2, 10, -157.87, -38.16999, 0, 6, -22.95, -4.58, 1, 4, 10, -82.28, -45.73, 4.0E-5, 8, -20.69, -29.83, 0.15535, 7, 13.73, -30.08, 0.67579, 6, 48.46, -30.47, 0.1688, 4, 10, -95.68, -29.11, 1.0E-5, 8, -29.94, -10.58, 0.01847, 7, 4.23999, -10.95, 0.62991, 6, 39.55, -11.07, 0.35158, 3, 9, -11.82, -19.82, 0.25597, 8, 21.01, -18.29, 0.71408, 7, 55.29, -18.03, 0.02993, 3, 10, -5, -23.34, 0.21514, 9, 27.41, -22.63, 0.73978, 8, 59.64, -25.7, 0.04507, 2, 11, -9.92, 4.16, 0.13664, 10, 24.92, 7.02, 0.86335, 3, 11, -17.1, 5.91, 0.04474, 10, 18.62999, 10.91, 0.93574, 9, 54.75, 8.74, 0.0195, 2, 10, 5.62, 9.97999, 0.69232, 9, 41.72, 9.28, 0.30767, 3, 9, -96.88, -3.47, 0, 7, -27.56, 7.17, 5.0E-4, 6, 8.29, 7.99, 0.99949, 3, 10, -104.7, -23.22, 0, 7, -3.28, -3.24, 0.37571, 6, 32.25, -3.14, 0.62427, 5, 10, -100, 5.86, 0, 9, -63.69, 17.09, 0, 8, -26.15, 24.45, 0.05274, 7, 7.6, 24.13, 0.63519, 6, 43.95, 23.89, 0.31205, 5, 10, -64.29, -51.57, 8.0E-5, 9, -34.68, -44, 0.00819, 8, -4.52, -39.62, 0.40948, 7, 30.02, -39.66999, 0.57286, 6, 64.46, -40.55, 0.00938, 5, 10, -71.22, -39.25999, 5.0E-5, 9, -40.16999, -30.99, 0.00589, 8, -8.45, -26.06, 0.3505, 7, 25.92, -26.16, 0.61725, 6, 60.77, -26.92, 0.02627, 5, 10, -69.18, 9.59, 0, 9, -32.64, 17.33, 0.00639, 8, 4.69999, 21.04, 0.5339, 7, 38.5, 21.1, 0.45447, 6, 74.74, 19.94, 0.00521, 3, 10, -12.14, -15.92, 0.07951, 9, 21.15, -14.45, 0.86507, 8, 54.39, -16.83, 0.05541, 1, 7, 12.5, -1.55, 1, 3, 9, -95.87, 5.74, 0, 7, -25.59, 16.23, 0.01249, 6, 10.52, 16.98, 0.98749, 3, 9, 1.47, -16.52, 0.50208, 8, 34.59999, -16.58, 0.49722, 7, 68.87, -16.15, 6.8E-4, 2, 10, 15.58, -2.09999, 0.98328, 9, 50.26, -3.84, 0.01671, 4, 10, -86.03, 4.53, 0, 8, -12.86, 19.96999, 0.17195, 7, 20.95, 19.81, 0.7569, 6, 57.16, 19.17, 0.07114, 3, 10, -62.15, -16.79999, 0, 8, 5.51, -6.26, 0.83052, 7, 39.64, -6.2, 0.16947, 2, 10, -2.98, -3.08, 0.5, 9, 31.7, -2.73, 0.5, 3, 9, -8.13, 14.51, 0.15887, 8, 28.71, 15.36, 0.79288, 7, 62.58, 15.72, 0.04824, 4, 10, -55.72, -28.91, 2.0E-5, 9, -23.6, -22.45, 0.04602, 8, 8.99, -19.52, 0.68345, 7, 43.3, -19.41, 0.27049, 4, 10, -89.14, -38.36, 2.0E-5, 8, -25.69, -21.08, 0.09962, 7, 8.62, -21.4, 0.69151, 6, 43.61, -21.64, 0.20882, 2, 9, -110.05, -4.03, 0, 6, -4.83, 9.21, 0.99999, 3, 9, -24.02, 8.97999, 0.02938, 8, 12.28, 11.74, 0.85222, 7, 46.2, 11.89, 0.11838, 4, 10, -17.29999, -28.43, 0.01365, 9, 14.61, -26.3, 0.66135, 8, 46.51, -27.84, 0.32153, 7, 80.91, -27.26, 0.00345, 5, 10, -115.54, 0.23, 0, 9, -79.76999, 13.24, 1.0E-5, 8, -42.57, 22.52, 0.00314, 7, -8.79, 22, 0.30662, 6, 27.5, 22.25, 0.6902, 4, 10, -126.29, -43.15, 0, 9, -95.33, -28.65, 0, 7, -28.67, -18.03, 0.01232, 6, 6.42, -17.16, 0.98767, 5, 10, -106.97, -38.18999, 0, 9, -75.58, -25.9, 0, 8, -43.01, -16.84, 0.00527, 7, -8.74, -17.37, 0.30188, 6, 26.37, -17.1, 0.69281, 3, 9, -84.5, -3, 0, 7, -15.21, 6.33, 0.04374, 6, 20.61, 6.78, 0.95625, 2, 8, -4, 5.85, 0.28584, 7, 29.98, 5.8, 0.71415, 1, 9, 14.35, -1.6, 1, 4, 9, -65.49, 3.58, 0, 8, -29.53, 11.25, 0.01713, 7, 4.39, 10.89, 0.72131, 6, 40.34, 10.75, 0.26154, 3, 9, -11.43, -28.94, 0.2485, 8, 20.32, -27.39, 0.64951, 7, 54.72, -27.14, 0.10196, 2, 11, -0.44, 1.08, 0.5, 10, 32.98, 1.16, 0.5, 4, 10, -77.26, -24.98, 1.0E-5, 8, -11.07, -10.77, 0.14049, 7, 23.11, -10.9, 0.83933, 6, 58.41, -11.59, 0.02014, 1, 6, -7.81, -6.6, 1, 2, 10, -129.83, -27.39, 0, 6, 6.86, -1.01, 1, 4, 10, -47.15, -16.79999, 0, 9, -13.73, -11.38, 0.1189, 8, 20.11, -9.68999, 0.85174, 7, 54.29, -9.43999, 0.02934, 2, 9, -2.42, -0.24, 0.5, 8, 32.64, 0.04, 0.5, 3, 10, -117.24, -29.68, 0, 7, -16.92, -6.83, 0.01906, 6, 18.5, -6.32, 0.98093, 2, 10, -10.89, 9.97999, 0.26277, 9, 25.31, 11.14, 0.73722, 3, 8, -16.99, 8.95, 0.06922, 7, 16.95999, 8.74, 0.89954, 6, 52.84, 8.22999, 0.03122, 3, 10, -27.46, 10.10999, 0.02163, 9, 8.85999, 13.14, 0.81392, 8, 45.43, 12, 0.16444, 1, 11, 13.77, 2.08999, 1, 3, 10, -138.96, -46.53, 0, 9, -108.3, -30.58, 0, 6, -6.67, -17.33, 0.99999, 2, 12, -0.79, 0.82, 0.5, 11, 24.32, 1.04999, 0.5, 4, 10, -87.93, -27.65, 0, 8, -22.07, -10.93, 0.01782, 7, 12.12, -11.2, 0.92737, 6, 47.42, -11.55, 0.05479, 5, 10, -66.58, -27.49, 3.0E-5, 9, -34.24, -19.81, 0.01742, 8, -1.25, -15.65, 0.52993, 7, 33, -15.67, 0.45042, 6, 68.15, -16.64, 0.00218, 1, 8, 17.86, 2.44, 1, 4, 10, -56.03, 13.99, 0, 9, -19.08, 20.20999, 0.09597, 8, 18.5, 22.32, 0.76497, 7, 52.28, 22.54, 0.13903, 2, 8, 7.91, 3.44, 0.92849, 7, 41.93, 3.54, 0.0715, 2, 9, -119.57, -12.81, 0, 6, -15.45, 1.79, 1, 3, 9, 1.09, -29.43, 0.4804, 8, 32.71, -29.36, 0.49908, 7, 67.12999, -28.95, 0.02051 ],
"hull": 52
}
},
"images/hairstring": {
"images/hairstring": { "x": 7.9, "rotation": -139.18, "width": 34, "height": 35 }
},
"images/head01": {
"images/head01": { "x": 38.15, "y": -1.97, "rotation": -85.28, "width": 96, "height": 113 },
"images/head02": { "x": 38.15, "y": -1.97, "rotation": -85.28, "width": 96, "height": 112 },
"images/head03": {
"type": "mesh",
"uvs": [ 0.4516, 0.00101, 0.1174, 0.10087, 0, 0.35883, 0.04209, 0.66257, 0.18801, 0.77907, 0.39982, 0.88308, 0.66342, 0.99126, 0.81405, 1, 0.95526, 0.76242, 1, 0.37132, 0.91289, 0.17576, 0.68696, 0.01765, 0.40169, 0.11667, 0.3081, 0.375, 0.36071, 0.7136, 0.6281, 0.15844, 0.60851, 0.39493, 0.63811, 0.74307 ],
"triangles": [ 12, 1, 0, 15, 0, 11, 12, 0, 15, 15, 11, 10, 13, 1, 12, 2, 1, 13, 16, 12, 15, 13, 12, 16, 3, 2, 13, 14, 13, 16, 3, 13, 14, 16, 10, 9, 10, 16, 15, 8, 17, 16, 14, 16, 17, 9, 8, 16, 4, 3, 14, 5, 14, 17, 4, 14, 5, 7, 6, 17, 5, 17, 6, 8, 7, 17 ],
"vertices": [ 93.45, 7.38, 79.58999, 39.43999, 49.84, 48.65, 16.28, 41.7, 0.74, 20.32, -5.42, 4.38, -15.35, -22.62, -15.1, -37.56, 12.56, -49.3, 56.57, -50.12, 77.69, -39.73, 93.51, -15.98, 79.64, 10.45, 48.84, 15.4, 12.45, 8.66, 76.97, -12.01, 50.35, -12.36, 11.96, -18.11 ],
"hull": 12
},
"images/head04": { "x": 58.21, "y": -13.37, "rotation": -85.28, "width": 131, "height": 148 }
},
"images/helmet01": {
"images/helmet01": { "x": 22.8, "y": 8.7, "rotation": -85.28, "width": 102, "height": 119 },
"images/helmet02": { "x": 23.1, "y": 5.08, "rotation": -85.28, "width": 93, "height": 119 },
"images/helmet03": { "x": 27.52, "y": -5.57, "rotation": -85.28, "width": 92, "height": 119 },
"images/helmet04": { "x": -0.46, "y": -14.69, "rotation": -85.28, "width": 31, "height": 51 }
},
"images/left_eye01": {
"images/left_eye01": { "x": 0.76, "y": 6.06, "rotation": -85.28, "width": 70, "height": 28 },
"images/left_eye02": { "x": 1.06, "y": 2.45, "rotation": -85.28, "width": 69, "height": 29 },
"images/left_eye03": { "x": 4.1, "y": -5.64, "rotation": -85.28, "width": 57, "height": 32 },
"images/left_eye04": { "x": 16.42, "y": -20.94, "rotation": -85.28, "width": 13, "height": 21 }
},
"images/left_foot01": {
"images/foot02": { "width": 57, "height": 62 },
"images/left_foot01": { "x": -0.9, "y": 0.79, "width": 53, "height": 28 }
},
"images/left_shouder1": {
"images/left_shouder1": { "x": 15.24, "y": -1.02, "rotation": 43.76, "width": 73, "height": 64 },
"images/left_shouder2": { "x": 15.59, "y": -2.45, "rotation": 50.5, "width": 70, "height": 67 },
"images/left_shouder3": { "x": 12.22, "y": -1.53, "rotation": 53.74, "width": 61, "height": 60 },
"images/left_shouder4": { "x": 20.58, "y": -5.94, "rotation": -19.38, "width": 64, "height": 60 }
},
"images/right_foot01": {
"images/foot03": { "scaleX": -1, "width": 60, "height": 56 },
"images/right_foot01": { "x": -1.46, "y": 1.04, "width": 55, "height": 30 }
},
"images/right_shouder01": {
"images/right_shouder01": {
"type": "mesh",
"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
"triangles": [ 1, 2, 3, 1, 3, 0 ],
"vertices": [ 4.41, 24.18, 34.43999, 10.49, 17.42, -26.81, -12.59, -13.11 ],
"hull": 4
},
"images/right_shouder02": { "x": 10.92, "y": -1.31, "rotation": 158.71, "width": 50, "height": 44 }
},
"images/shou15": {
"images/lieren shou03": { "rotation": -82.73, "width": 49, "height": 57 },
"images/lieren shou04": { "rotation": -143.04, "width": 58, "height": 45 },
"images/shou01": { "x": 2.38, "y": -4.31, "rotation": -153.32, "width": 56, "height": 48 },
"images/shou02": { "x": 2.8, "y": 0.14, "scaleY": -1, "rotation": -158.17, "width": 59, "height": 48 },
"images/shou05": { "x": 2.38, "y": -4.31, "rotation": 150.61, "width": 69, "height": 66 },
"images/shou06": { "x": 2.38, "y": -4.31, "scaleY": -1, "rotation": -175.04, "width": 68, "height": 52 },
"images/shou07": { "x": 2.38, "y": -4.31, "rotation": 19.29, "width": 58, "height": 61 },
"images/shou08": { "x": 0.91, "y": 7.31, "rotation": -12.78, "width": 58, "height": 63 },
"images/shou09": { "x": 2.38, "y": -4.31, "rotation": -17.06, "width": 66, "height": 47 },
"images/shou10": { "x": -1.15, "y": 2.24, "rotation": -5.76, "width": 61, "height": 44 },
"images/shou11": { "x": 2.38, "y": -4.31, "rotation": -177.65, "width": 55, "height": 44 },
"images/shou12": { "x": 2.38, "y": -4.31, "rotation": -168.82, "width": 48, "height": 65 },
"images/shou13": { "x": 3.35, "y": 0.16, "scaleY": -1, "rotation": -1.01, "width": 78, "height": 39 },
"images/shou14": { "x": 2.09, "y": 5.12, "scaleY": -1, "rotation": 26.56, "width": 67, "height": 52 },
"images/shou15": { "x": 4.02, "y": 1.84, "scaleY": -1, "rotation": 114.31, "width": 48, "height": 59 },
"images/shou16": { "x": -3.58, "y": 4.03, "scaleY": -1, "rotation": -159.97, "width": 52, "height": 55 },
"images/shou17": { "x": 1.92, "y": 4.89, "scaleY": -1, "rotation": -170.9, "width": 50, "height": 68 },
"images/shou18": { "x": 3.75, "y": 12.56, "scaleY": -1, "rotation": 177.41, "width": 50, "height": 77 }
},
"images/sword01": {
"images/sword01": { "x": 125.77, "y": 1.66, "rotation": -179.42, "width": 346, "height": 99 }
},
"images/sword1": {
"images/sword01": { "x": 125.77, "y": 1.66, "rotation": -179.42, "width": 346, "height": 99 },
"images/sword1": {
"type": "mesh",
"path": "images/sword01",
"uvs": [ 1, 0, 0.24867, 0, 0.24867, 1, 1, 1 ],
"triangles": [ 2, 1, 0, 2, 0, 3 ],
"vertices": [ -46.71, -49.56, 213.23, -46.95, 212.23, 52.03, -47.7, 49.43 ],
"hull": 4
}
},
"images/swordlight": {
"images/swordlight": { "x": 142.67, "y": 3.34, "rotation": -179.42, "width": 362, "height": 114 }
},
"images/swordlight2": {
"images/swordlight": { "x": 142.67, "y": 3.34, "rotation": -179.42, "width": 362, "height": 114 },
"images/swordlight2": {
"type": "mesh",
"path": "images/swordlight",
"uvs": [ 0.29846, 0.00103, 0.30017, 1, 1, 1, 1, 0 ],
"triangles": [ 1, 0, 3, 1, 3, 2 ],
"vertices": [ 216.2, -52.8, 214.44, 61.06, -38.88, 58.52, -37.74, -55.47 ],
"hull": 4
}
}
}
},
"events": {
"atk1": {},
"atk2": {},
"atk3": {},
"atk4": {},
"atk5": {},
"atk6": {},
"atk7": {},
"atk8": {},
"atk9": {},
"chargeAtk1": {},
"chargeAtk2": {},
"chargeAtk3": {},
"rush1": {},
"skillA1": {},
"skillA2": {},
"skillA3": {},
"skillB1": {},
"skillB2": {},
"skillB3": {},
"skillC1": {},
"skillC2": {},
"skillC3": {},
"skillD1": {},
"weaponatk": {}
},
"animations": {
"idle1": {
"slots": {
"images/Eff/shandian0001": {
"color": [
{ "time": 0, "color": "b30005ff", "curve": "stepped" },
{ "time": 0.3, "color": "b30005ff", "curve": "stepped" },
{ "time": 1.3333, "color": "b30005ff" }
],
"attachment": [
{ "time": 0, "name": "images/Eff/shandian0001" },
{ "time": 0.0333, "name": null },
{ "time": 0.0666, "name": "images/Eff/shandian0003" },
{ "time": 0.1, "name": null },
{ "time": 0.1333, "name": "images/Eff/shandian0005" },
{ "time": 0.1666, "name": "images/Eff/shandian0006" },
{ "time": 0.2, "name": null },
{ "time": 0.2333, "name": "images/Eff/shandian0007" },
{ "time": 0.2666, "name": null },
{ "time": 0.3, "name": "images/Eff/shandian0001" },
{ "time": 0.3333, "name": null },
{ "time": 0.3666, "name": "images/Eff/shandian0003" },
{ "time": 0.4, "name": null },
{ "time": 0.4333, "name": "images/Eff/shandian0005" },
{ "time": 0.4666, "name": "images/Eff/shandian0006" },
{ "time": 0.5, "name": null },
{ "time": 0.5333, "name": "images/Eff/shandian0007" },
{ "time": 0.5666, "name": null },
{ "time": 1.3333, "name": "images/Eff/shandian0001" }
]
},
"images/ass01": {
"attachment": [
{ "time": 0, "name": "images/ass01" },
{ "time": 1.3333, "name": "images/ass01" }
]
},
"images/belt01": {
"attachment": [
{ "time": 0, "name": "images/belt01" },
{ "time": 1.3333, "name": "images/belt01" }
]
},
"images/body01": {
"attachment": [
{ "time": 0, "name": "images/body01" },
{ "time": 1.3333, "name": "images/body01" }
]
},
"images/claw01": {
"attachment": [
{ "time": 0, "name": "images/claw04" },
{ "time": 0.5666, "name": "images/claw04" },
{ "time": 1.3333, "name": "images/claw04" }
]
},
"images/crotch01": {
"attachment": [
{ "time": 0, "name": "images/crotch01" },
{ "time": 1.3333, "name": "images/crotch01" }
]
},
"images/hairstring": {
"attachment": [
{ "time": 0, "name": "images/hairstring" },
{ "time": 1.3333, "name": "images/hairstring" }
]
},
"images/head01": {
"attachment": [
{ "time": 0, "name": "images/head01" },
{ "time": 0.6666, "name": "images/head01" },
{ "time": 1.3333, "name": "images/head01" }
]
},
"images/helmet01": {
"attachment": [
{ "time": 0, "name": "images/helmet01" },
{ "time": 1.3333, "name": "images/helmet01" }
]
},
"images/left_eye01": {
"color": [
{ "time": 0, "color": "636363ff" },
{ "time": 0.6666, "color": "000000ff" },
{ "time": 1.3333, "color": "636363ff" }
],
"attachment": [
{ "time": 0, "name": "images/left_eye01" },
{ "time": 1.3333, "name": "images/left_eye01" }
]
},
"images/left_shouder1": {
"attachment": [
{ "time": 0, "name": "images/left_shouder1" },
{ "time": 1.3333, "name": "images/left_shouder1" }
]
},
"images/right_shouder01": {
"attachment": [
{ "time": 0, "name": "images/right_shouder01" },
{ "time": 1.3333, "name": "images/right_shouder01" }
]
},
"images/swordlight": {
"color": [
{ "time": 0, "color": "ffffff43" },
{ "time": 0.6666, "color": "ffffffd9" },
{ "time": 1.3333, "color": "ffffff43" }
]
}
},
"bones": {
"root": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"ren": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/sword01": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/body01": {
"rotate": [
{ "time": 0, "angle": -4.76 },
{ "time": 0.6666, "angle": -1.75 },
{ "time": 1.3333, "angle": -4.76 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/right_foot01": {
"rotate": [
{ "time": 0, "angle": 36.11, "curve": "stepped" },
{ "time": 0.6666, "angle": 36.11, "curve": "stepped" },
{ "time": 1.3333, "angle": 36.11 }
],
"translate": [
{ "time": 0, "x": -34.88, "y": 6.78, "curve": "stepped" },
{ "time": 0.6666, "x": -34.88, "y": 6.78, "curve": "stepped" },
{ "time": 1.3333, "x": -34.88, "y": 6.78 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/left_foot01": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": -82.7, "y": -1.16, "curve": "stepped" },
{ "time": 0.6666, "x": -82.7, "y": -1.16, "curve": "stepped" },
{ "time": 1.3333, "x": -82.7, "y": -1.16 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/sword1": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/head01": {
"rotate": [
{ "time": 0, "angle": -154.14 },
{ "time": 0.6666, "angle": -158.09 },
{ "time": 1.3333, "angle": -154.14 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": -1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": -1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": -1, "y": 1 }
]
},
"images/ear": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/helmet01": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/left_eye01": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/right_shouder01": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3, "angle": 2 },
{ "time": 0.6666, "angle": -4.12 },
{ "time": 1, "angle": -11.75 },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/left_shouder1": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.3, "angle": -3.5 },
{ "time": 0.6666, "angle": 2.31 },
{ "time": 1, "angle": 8.3 },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.3, "x": -1.63, "y": 1.58 },
{ "time": 0.6666, "x": 0, "y": 0 },
{ "time": 1, "x": 0.53, "y": 0 },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/body1": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/ass01": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/crotch01": {
"rotate": [
{ "time": 0, "angle": -357.71 },
{ "time": 0.6666, "angle": -352.51 },
{ "time": 1.3333, "angle": -357.71 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone7": {
"rotate": [
{
"time": 0,
"angle": -4.34,
"curve": [ 0.379, 0.6, 0.724, 1 ]
},
{
"time": 0.1666,
"angle": -7.01,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 0.8333,
"angle": 0.31,
"curve": [ 0.242, 0, 0.666, 0.66 ]
},
{ "time": 1.3333, "angle": -4.34 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone8": {
"rotate": [
{
"time": 0,
"angle": -0.72,
"curve": [ 0.378, 0.52, 0.746, 1 ]
},
{
"time": 0.3,
"angle": -7.01,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 0.9666,
"angle": 2.5,
"curve": [ 0.247, 0, 0.63, 0.52 ]
},
{ "time": 1.3333, "angle": -0.72 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone9": {
"rotate": [
{
"time": 0,
"angle": 3.06,
"curve": [ 0.354, 0.41, 0.756, 1 ]
},
{
"time": 0.4333,
"angle": -7.01,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 1.1,
"angle": 9.37,
"curve": [ 0.262, 0, 0.617, 0.43 ]
},
{ "time": 1.3333, "angle": 3.06 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/belt01": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.6666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.6666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/hair": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.6666, "angle": 1.51 },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone": {
"rotate": [
{
"time": 0,
"angle": 0.71,
"curve": [ 0.379, 0.6, 0.724, 1 ]
},
{
"time": 0.1666,
"angle": 0,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 0.8333,
"angle": 3.87,
"curve": [ 0.242, 0, 0.666, 0.66 ]
},
{ "time": 1.3333, "angle": 0.71 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone2": {
"rotate": [
{
"time": 0,
"angle": 3.87,
"curve": [ 0.375, 0.5, 0.75, 1 ]
},
{
"time": 0.3333,
"angle": 0,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 1,
"angle": 7.74,
"curve": [ 0.25, 0, 0.625, 0.5 ]
},
{ "time": 1.3333, "angle": 3.87 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone3": {
"rotate": [
{
"time": 0,
"angle": 8.3,
"curve": [ 0.333, 0.33, 0.757, 1 ]
},
{
"time": 0.5,
"angle": 0,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 1.1666,
"angle": 10.18,
"curve": [ 0.275, 0, 0.62, 0.4 ]
},
{ "time": 1.3333, "angle": 8.3 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone4": {
"rotate": [
{
"time": 0,
"angle": 14.73,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 0.6666,
"angle": 0,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{ "time": 1.3333, "angle": 14.73 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone5": {
"rotate": [
{
"time": 0,
"angle": 20.38,
"curve": [ 0.379, 0.6, 0.724, 1 ]
},
{
"time": 0.1666,
"angle": 24.99,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 0.8333,
"angle": 0,
"curve": [ 0.242, 0, 0.666, 0.66 ]
},
{ "time": 1.3333, "angle": 20.38 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone6": {
"rotate": [
{
"time": 0,
"angle": 17.11,
"curve": [ 0.375, 0.5, 0.75, 1 ]
},
{
"time": 0.3333,
"angle": 34.23,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 1,
"angle": 0,
"curve": [ 0.25, 0, 0.625, 0.5 ]
},
{ "time": 1.3333, "angle": 17.11 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/cloak": {
"rotate": [
{
"time": 0,
"angle": 0.53,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 0.6666,
"angle": -4.07,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{ "time": 1.3333, "angle": 0.53 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.6666, "x": 0, "y": 1.23 },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone10": {
"rotate": [
{
"time": 0,
"angle": 3.81,
"curve": [ 0.374, 0.61, 0.715, 1 ]
},
{
"time": 0.1333,
"angle": 4.88,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 0.8,
"angle": -3.36,
"curve": [ 0.242, 0, 0.679, 0.71 ]
},
{ "time": 1.3333, "angle": 3.81 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone11": {
"rotate": [
{
"time": 0,
"angle": 0.46,
"curve": [ 0.381, 0.54, 0.742, 1 ]
},
{
"time": 0.2666,
"angle": 4.88,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 1,
"angle": -7.12,
"curve": [ 0.245, 0, 0.637, 0.55 ]
},
{ "time": 1.3333, "angle": 0.46 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone12": {
"rotate": [
{
"time": 0,
"angle": -4.56,
"curve": [ 0.362, 0.44, 0.754, 1 ]
},
{
"time": 0.4333,
"angle": 4.88,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 1.2,
"angle": -10.05,
"curve": [ 0.257, 0, 0.618, 0.45 ]
},
{ "time": 1.3333, "angle": -4.56 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone13": {
"rotate": [
{
"time": 0,
"angle": -9.88,
"curve": [ 0.32, 0.28, 0.757, 1 ]
},
{
"time": 0.4333,
"angle": 4.88,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 1.2,
"angle": -12.09,
"curve": [ 0.284, 0, 0.625, 0.38 ]
},
{ "time": 1.3333, "angle": -9.88 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone14": {
"rotate": [
{
"time": 0,
"angle": -14.95,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 0.6666,
"angle": 4.88,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{ "time": 1.3333, "angle": -14.95 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"bone15": {
"rotate": [
{
"time": 0,
"angle": -14.81,
"curve": [ 0.374, 0.61, 0.715, 1 ]
},
{
"time": 0.1333,
"angle": -17.76,
"curve": [ 0.25, 0, 0.75, 1 ]
},
{
"time": 0.8,
"angle": 4.88,
"curve": [ 0.242, 0, 0.679, 0.71 ]
},
{ "time": 1.3333, "angle": -14.81 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/shou15": {
"rotate": [
{ "time": 0, "angle": -184.73, "curve": "stepped" },
{ "time": 0.6666, "angle": -184.73, "curve": "stepped" },
{ "time": 1.3333, "angle": -184.73 }
],
"translate": [
{ "time": 0, "x": -55.9, "y": 28.56, "curve": "stepped" },
{ "time": 0.6666, "x": -55.9, "y": 28.56, "curve": "stepped" },
{ "time": 1.3333, "x": -55.9, "y": 28.56 }
],
"scale": [
{ "time": 0, "x": -1, "y": 1, "curve": "stepped" },
{ "time": 0.6666, "x": -1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": -1, "y": 1 }
]
},
"images/claw01": {
"rotate": [
{ "time": 0, "angle": 82.24 },
{ "time": 0.5666, "angle": 84.25 },
{ "time": 1.3333, "angle": 82.24 }
],
"translate": [
{ "time": 0, "x": 45.11, "y": 92.5, "curve": "stepped" },
{ "time": 0.5666, "x": 45.11, "y": 92.5, "curve": "stepped" },
{ "time": 1.3333, "x": 45.11, "y": 92.5 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"images/hairstring": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1.3333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
},
"Eff_shandian": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.3, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 1.3333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 346.52, "y": -592.32, "curve": "stepped" },
{ "time": 0.1, "x": 346.52, "y": -592.32 },
{ "time": 0.1333, "x": 304.7, "y": -592.32, "curve": "stepped" },
{ "time": 0.2666, "x": 304.7, "y": -592.32 },
{ "time": 0.3, "x": 346.52, "y": -592.32, "curve": "stepped" },
{ "time": 0.4, "x": 346.52, "y": -592.32 },
{ "time": 0.4333, "x": 304.7, "y": -592.32, "curve": "stepped" },
{ "time": 0.5666, "x": 304.7, "y": -592.32 },
{ "time": 1.3333, "x": 346.52, "y": -592.32 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1.3333, "x": 1, "y": 1 }
]
}
},
"deform": {
"default": {
"images/right_shouder01": {
"images/right_shouder01": [
{ "time": 0, "curve": "stepped" },
{ "time": 1.3333 }
]
}
}
},
"drawOrder": [
{ "time": 0 },
{ "time": 0.3 },
{ "time": 0.5666 },
{ "time": 0.6666 },
{ "time": 1.3333 }
]
}
}
}