-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathspineboy-pro.json
More file actions
4943 lines (4943 loc) · 172 KB
/
spineboy-pro.json
File metadata and controls
4943 lines (4943 loc) · 172 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
{
"skeleton": { "hash": "PAYbOkc7GRcWIZQTjcDV7U+dhD8", "spine": "3.7.90", "width": 419.84, "height": 686.08, "images": "./images/", "audio": "" },
"bones": [
{ "name": "root", "rotation": 0.28 },
{ "name": "hip", "parent": "root", "y": 247.27 },
{ "name": "crosshair", "parent": "root", "x": 1115.23, "y": 565.42, "color": "ff3f00ff" },
{
"name": "aim-constraint-target",
"parent": "hip",
"length": 26.24,
"rotation": 19.61,
"x": 1.02,
"y": 5.62,
"color": "abe323ff"
},
{ "name": "rear-foot-target", "parent": "root", "x": 61.91, "y": 0.42, "color": "ff3f00ff" },
{ "name": "rear-leg-target", "parent": "rear-foot-target", "x": -33.91, "y": 37.34, "color": "ff3f00ff" },
{
"name": "rear-thigh",
"parent": "hip",
"length": 85.72,
"rotation": -72.54,
"x": 8.91,
"y": -5.63,
"color": "ff000dff"
},
{
"name": "rear-shin",
"parent": "rear-thigh",
"length": 121.88,
"rotation": -19.83,
"x": 86.1,
"y": -1.33,
"color": "ff000dff"
},
{
"name": "rear-foot",
"parent": "rear-shin",
"length": 51.58,
"rotation": 45.78,
"x": 121.46,
"y": -0.76,
"color": "ff000dff"
},
{
"name": "back-foot-tip",
"parent": "rear-foot",
"length": 50.3,
"rotation": -0.85,
"x": 51.17,
"y": 0.24,
"transform": "noRotationOrReflection",
"color": "ff000dff"
},
{ "name": "board-ik", "parent": "root", "x": -131.78, "y": 69.09, "color": "4c56ffff" },
{ "name": "clipping", "parent": "root" },
{ "name": "hoverboard-controller", "parent": "root", "rotation": -0.28, "x": -329.69, "y": 69.82, "color": "ff0004ff" },
{ "name": "exhaust1", "parent": "hoverboard-controller", "rotation": 3.02, "x": -249.68, "y": 53.39 },
{ "name": "exhaust2", "parent": "hoverboard-controller", "rotation": 26.34, "x": -191.6, "y": -22.92 },
{
"name": "exhaust3",
"parent": "hoverboard-controller",
"rotation": -12.34,
"x": -236.03,
"y": 80.54,
"scaleX": 0.785,
"scaleY": 0.785
},
{ "name": "portal-root", "parent": "root", "x": 12.9, "y": 328.54, "scaleX": 2.033, "scaleY": 2.033 },
{ "name": "flare1", "parent": "portal-root", "x": -6.34, "y": -161.57 },
{ "name": "flare10", "parent": "portal-root", "x": -6.34, "y": -161.57 },
{ "name": "flare2", "parent": "portal-root", "x": -6.34, "y": -161.57 },
{ "name": "flare3", "parent": "portal-root", "x": -6.34, "y": -161.57 },
{ "name": "flare4", "parent": "portal-root", "x": -6.34, "y": -161.57 },
{ "name": "flare5", "parent": "portal-root", "x": -6.34, "y": -161.57 },
{ "name": "flare6", "parent": "portal-root", "x": -6.34, "y": -161.57 },
{ "name": "flare7", "parent": "portal-root", "x": -6.34, "y": -161.57 },
{ "name": "flare8", "parent": "portal-root", "x": -6.34, "y": -161.57 },
{ "name": "flare9", "parent": "portal-root", "x": -6.34, "y": -161.57 },
{
"name": "torso",
"parent": "hip",
"length": 42.52,
"rotation": 103.82,
"x": -1.62,
"y": 4.9,
"color": "e0da19ff"
},
{ "name": "torso2", "parent": "torso", "length": 42.52, "x": 42.52, "color": "e0da19ff" },
{ "name": "torso3", "parent": "torso2", "length": 42.52, "x": 42.52, "color": "e0da19ff" },
{
"name": "front-upper-arm",
"parent": "torso3",
"length": 69.45,
"rotation": 168.38,
"x": 18.72,
"y": 19.33,
"color": "00ff04ff"
},
{
"name": "front-bracer",
"parent": "front-upper-arm",
"length": 40.57,
"rotation": 18.3,
"x": 68.8,
"y": -0.68,
"color": "00ff04ff"
},
{
"name": "front-fist",
"parent": "front-bracer",
"length": 65.39,
"rotation": 12.43,
"x": 40.57,
"y": 0.2,
"color": "00ff04ff"
},
{ "name": "front-foot-target", "parent": "root", "x": -13.53, "y": 0.04, "color": "ff3f00ff" },
{ "name": "front-leg-target", "parent": "front-foot-target", "x": -28.4, "y": 29.06, "color": "ff3f00ff" },
{
"name": "front-thigh",
"parent": "hip",
"length": 74.81,
"rotation": -95.51,
"x": -17.46,
"y": -11.64,
"color": "00ff04ff"
},
{
"name": "front-shin",
"parent": "front-thigh",
"length": 128.77,
"rotation": -2.21,
"x": 78.69,
"y": 1.6,
"color": "00ff04ff"
},
{
"name": "front-foot",
"parent": "front-shin",
"length": 41.01,
"rotation": 51.27,
"x": 128.76,
"y": -0.34,
"color": "00ff04ff"
},
{
"name": "front-foot-tip",
"parent": "front-foot",
"length": 56.03,
"rotation": -1.68,
"x": 41.42,
"y": -0.09,
"transform": "noRotationOrReflection",
"color": "00ff04ff"
},
{
"name": "rear-upper-arm",
"parent": "torso3",
"length": 51.94,
"rotation": -169.56,
"x": 7.32,
"y": -19.22,
"color": "ff000dff"
},
{ "name": "rear-bracer", "parent": "rear-upper-arm", "length": 34.56, "rotation": 23.15, "x": 51.36, "color": "ff000dff" },
{
"name": "gun",
"parent": "rear-bracer",
"length": 43.11,
"rotation": -5.43,
"x": 34.42,
"y": -0.45,
"color": "ff000dff"
},
{ "name": "gun-tip", "parent": "gun", "rotation": 7.1, "x": 200.78, "y": 52.5, "color": "ff0000ff" },
{
"name": "neck",
"parent": "torso3",
"length": 25.45,
"rotation": -31.54,
"x": 42.46,
"y": -0.31,
"color": "e0da19ff"
},
{
"name": "head",
"parent": "neck",
"length": 131.79,
"rotation": 26.1,
"x": 27.66,
"y": -0.26,
"color": "e0da19ff"
},
{
"name": "hair1",
"parent": "head",
"length": 47.23,
"rotation": -49.1,
"x": 149.83,
"y": -59.77,
"color": "e0da19ff"
},
{
"name": "hair2",
"parent": "hair1",
"length": 55.57,
"rotation": 50.42,
"x": 47.23,
"y": 0.19,
"color": "e0da19ff"
},
{
"name": "hair3",
"parent": "head",
"length": 62.22,
"rotation": -32.17,
"x": 164.14,
"y": 3.68,
"color": "e0da19ff"
},
{
"name": "hair4",
"parent": "hair3",
"length": 80.28,
"rotation": 83.71,
"x": 62.22,
"y": -0.04,
"color": "e0da19ff"
},
{ "name": "hoverboard-thruster-front", "parent": "hoverboard-controller", "rotation": -29.2, "x": 95.77, "y": -2.99, "transform": "noRotationOrReflection" },
{ "name": "hoverboard-thruster-rear", "parent": "hoverboard-controller", "rotation": -29.2, "x": -76.47, "y": -4.88, "transform": "noRotationOrReflection" },
{ "name": "hoverglow-front", "parent": "hoverboard-thruster-front", "rotation": 0.17, "x": -1.78, "y": -37.79 },
{ "name": "hoverglow-rear", "parent": "hoverboard-thruster-rear", "rotation": 0.17, "x": 1.06, "y": -35.66 },
{ "name": "muzzle", "parent": "rear-bracer", "rotation": 3.06, "x": 242.34, "y": 34.26, "color": "ffb900ff" },
{ "name": "muzzle-ring", "parent": "muzzle", "color": "ffb900ff" },
{ "name": "muzzle-ring2", "parent": "muzzle", "color": "ffb900ff" },
{ "name": "muzzle-ring3", "parent": "muzzle", "color": "ffb900ff" },
{ "name": "muzzle-ring4", "parent": "muzzle", "color": "ffb900ff" },
{ "name": "portal", "parent": "portal-root" },
{ "name": "portal-shade", "parent": "portal-root" },
{ "name": "portal-streaks1", "parent": "portal-root" },
{ "name": "portal-streaks2", "parent": "portal-root" },
{ "name": "side-glow1", "parent": "hoverboard-controller", "x": -110.56, "y": 2.62, "color": "000effff" },
{
"name": "side-glow2",
"parent": "hoverboard-controller",
"x": -110.56,
"y": 2.62,
"scaleX": 0.738,
"scaleY": 0.738,
"color": "000effff"
}
],
"slots": [
{ "name": "portal-bg", "bone": "portal" },
{ "name": "portal-shade", "bone": "portal-shade" },
{ "name": "portal-streaks2", "bone": "portal-streaks2", "blend": "additive" },
{ "name": "portal-streaks1", "bone": "portal-streaks1", "blend": "additive" },
{ "name": "portal-flare8", "bone": "flare8", "color": "c3cbffff", "blend": "additive" },
{ "name": "portal-flare9", "bone": "flare9", "color": "c3cbffff", "blend": "additive" },
{ "name": "portal-flare10", "bone": "flare10", "color": "c3cbffff", "blend": "additive" },
{ "name": "clipping", "bone": "clipping" },
{ "name": "exhaust3", "bone": "exhaust3", "color": "5eb4ffff", "blend": "additive" },
{ "name": "hoverboard-thruster-rear", "bone": "hoverboard-thruster-rear" },
{ "name": "hoverboard-thruster-front", "bone": "hoverboard-thruster-front" },
{ "name": "hoverboard-board", "bone": "hoverboard-controller" },
{ "name": "side-glow1", "bone": "side-glow1", "color": "ff8686ff", "blend": "additive" },
{ "name": "side-glow3", "bone": "side-glow1", "color": "ff8686ff", "blend": "additive" },
{ "name": "side-glow2", "bone": "side-glow2", "color": "ff8686ff", "blend": "additive" },
{ "name": "hoverglow-front", "bone": "hoverglow-front", "color": "5eb4ffff", "blend": "additive" },
{ "name": "hoverglow-rear", "bone": "hoverglow-rear", "color": "5eb4ffff", "blend": "additive" },
{ "name": "exhaust1", "bone": "exhaust2", "color": "5eb4ffff", "blend": "additive" },
{ "name": "exhaust2", "bone": "exhaust1", "color": "5eb4ffff", "blend": "additive" },
{ "name": "rear-upper-arm", "bone": "rear-upper-arm", "attachment": "rear-upper-arm" },
{ "name": "rear-bracer", "bone": "rear-bracer", "attachment": "rear-bracer" },
{ "name": "gun", "bone": "gun", "attachment": "gun" },
{ "name": "rear-foot", "bone": "rear-foot", "attachment": "rear-foot" },
{ "name": "rear-thigh", "bone": "rear-thigh", "attachment": "rear-thigh" },
{ "name": "rear-shin", "bone": "rear-shin", "attachment": "rear-shin" },
{ "name": "neck", "bone": "neck", "attachment": "neck" },
{ "name": "torso", "bone": "torso", "attachment": "torso" },
{ "name": "front-upper-arm", "bone": "front-upper-arm", "attachment": "front-upper-arm" },
{ "name": "head", "bone": "head", "attachment": "head" },
{ "name": "eye", "bone": "head", "attachment": "eye-indifferent" },
{ "name": "front-thigh", "bone": "front-thigh", "attachment": "front-thigh" },
{ "name": "front-foot", "bone": "front-foot", "attachment": "front-foot" },
{ "name": "front-shin", "bone": "front-shin", "attachment": "front-shin" },
{ "name": "mouth", "bone": "head", "attachment": "mouth-smile" },
{ "name": "goggles", "bone": "head", "attachment": "goggles" },
{ "name": "front-bracer", "bone": "front-bracer", "attachment": "front-bracer" },
{ "name": "front-fist", "bone": "front-fist", "attachment": "front-fist-closed" },
{ "name": "muzzle", "bone": "muzzle" },
{ "name": "head-bb", "bone": "head" },
{ "name": "portal-flare1", "bone": "flare1", "color": "c3cbffff", "blend": "additive" },
{ "name": "portal-flare2", "bone": "flare2", "color": "c3cbffff", "blend": "additive" },
{ "name": "portal-flare3", "bone": "flare3", "color": "c3cbffff", "blend": "additive" },
{ "name": "portal-flare4", "bone": "flare4", "color": "c3cbffff", "blend": "additive" },
{ "name": "portal-flare5", "bone": "flare5", "color": "c3cbffff", "blend": "additive" },
{ "name": "portal-flare6", "bone": "flare6", "color": "c3cbffff", "blend": "additive" },
{ "name": "portal-flare7", "bone": "flare7", "color": "c3cbffff", "blend": "additive" },
{ "name": "crosshair", "bone": "crosshair" },
{ "name": "muzzle-glow", "bone": "gun-tip", "color": "ffffff00", "blend": "additive" },
{ "name": "muzzle-ring", "bone": "muzzle-ring", "color": "d8baffff", "blend": "additive" },
{ "name": "muzzle-ring2", "bone": "muzzle-ring2", "color": "d8baffff", "blend": "additive" },
{ "name": "muzzle-ring3", "bone": "muzzle-ring3", "color": "d8baffff", "blend": "additive" },
{ "name": "muzzle-ring4", "bone": "muzzle-ring4", "color": "d8baffff", "blend": "additive" }
],
"ik": [
{
"name": "aim-ik",
"order": 12,
"bones": [ "rear-upper-arm" ],
"target": "crosshair",
"mix": 0
},
{
"name": "aim-torso-ik",
"order": 7,
"bones": [ "aim-constraint-target" ],
"target": "crosshair"
},
{
"name": "board-ik",
"order": 0,
"bones": [ "hoverboard-controller" ],
"target": "board-ik"
},
{
"name": "front-foot-ik",
"order": 5,
"bones": [ "front-foot" ],
"target": "front-foot-target"
},
{
"name": "front-leg-ik",
"order": 3,
"bones": [ "front-thigh", "front-shin" ],
"target": "front-leg-target",
"bendPositive": false
},
{
"name": "rear-foot-ik",
"order": 6,
"bones": [ "rear-foot" ],
"target": "rear-foot-target"
},
{
"name": "rear-leg-ik",
"order": 4,
"bones": [ "rear-thigh", "rear-shin" ],
"target": "rear-leg-target",
"bendPositive": false
}
],
"transform": [
{
"name": "aim-front-arm-transform",
"order": 10,
"bones": [ "front-upper-arm" ],
"target": "aim-constraint-target",
"rotation": -180,
"rotateMix": 0,
"translateMix": 0,
"scaleMix": 0,
"shearMix": 0
},
{
"name": "aim-head-transform",
"order": 9,
"bones": [ "head" ],
"target": "aim-constraint-target",
"rotation": 84.3,
"rotateMix": 0,
"translateMix": 0,
"scaleMix": 0,
"shearMix": 0
},
{
"name": "aim-rear-arm-transform",
"order": 11,
"bones": [ "rear-upper-arm" ],
"target": "aim-constraint-target",
"x": 57.7,
"y": 56.4,
"rotateMix": 0,
"translateMix": 0,
"scaleMix": 0,
"shearMix": 0
},
{
"name": "aim-torso-transform",
"order": 8,
"bones": [ "torso" ],
"target": "aim-constraint-target",
"rotation": 69.5,
"shearY": -36,
"rotateMix": 0,
"translateMix": 0,
"scaleMix": 0,
"shearMix": 0
},
{
"name": "front-foot-board-transform",
"order": 1,
"bones": [ "front-foot-target" ],
"target": "hoverboard-controller",
"x": -69.8,
"y": 20.7,
"rotateMix": 0,
"translateMix": 0,
"scaleMix": 0,
"shearMix": 0
},
{
"name": "rear-foot-board-transform",
"order": 2,
"bones": [ "rear-foot-target" ],
"target": "hoverboard-controller",
"x": 86.6,
"y": 21.3,
"rotateMix": 0,
"translateMix": 0,
"scaleMix": 0,
"shearMix": 0
},
{
"name": "toes-board",
"order": 13,
"bones": [ "front-foot-tip", "back-foot-tip" ],
"target": "hoverboard-controller",
"rotateMix": 0,
"translateMix": 0,
"scaleMix": 0,
"shearMix": 0
}
],
"skins": {
"default": {
"clipping": {
"clipping": {
"type": "clipping",
"end": "head-bb",
"vertexCount": 9,
"vertices": [ 66.76, 509.48, 19.98, 434.54, 5.34, 336.28, 22.19, 247.93, 77.98, 159.54, 182.21, -97.56, 1452.26, -99.8, 1454.33, 843.61, 166.57, 841.02 ],
"color": "ce3a3aff"
}
},
"crosshair": {
"crosshair": { "width": 89, "height": 89 }
},
"exhaust1": {
"hoverglow-small": { "scaleX": 0.463, "scaleY": 0.813, "rotation": -83.07, "width": 274, "height": 75 }
},
"exhaust2": {
"hoverglow-small": {
"x": 0.01,
"y": -0.76,
"scaleX": 0.421,
"scaleY": 0.84,
"rotation": -89.25,
"width": 274,
"height": 75
}
},
"exhaust3": {
"hoverglow-small": { "scaleX": 0.463, "scaleY": 0.813, "rotation": -83.07, "width": 274, "height": 75 }
},
"eye": {
"eye-indifferent": {
"type": "mesh",
"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
"triangles": [ 1, 3, 0, 1, 2, 3 ],
"vertices": [ 73.41, -91.35, 23.16, -13.11, 98.03, 34.99, 148.28, -43.25 ],
"hull": 4,
"edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
"width": 93,
"height": 89
},
"eye-surprised": { "x": 85.72, "y": -28.18, "rotation": -70.63, "width": 93, "height": 89 }
},
"front-bracer": {
"front-bracer": { "x": 12.03, "y": -1.68, "rotation": 79.6, "width": 58, "height": 80 }
},
"front-fist": {
"front-fist-closed": { "x": 35.5, "y": 6, "rotation": 67.16, "width": 75, "height": 82 },
"front-fist-open": { "x": 39.57, "y": 7.76, "rotation": 67.16, "width": 86, "height": 87 }
},
"front-foot": {
"front-foot": {
"type": "mesh",
"uvs": [ 0.59417, 0.23422, 0.62257, 0.30336, 0.6501, 0.37036, 0.67637, 0.38404, 0.72068, 0.4071, 0.76264, 0.42894, 1, 0.70375, 1, 1, 0.65517, 1, 0.46923, 0.99999, 0, 1, 0, 0.39197, 0.17846, 0, 0.49796, 0 ],
"triangles": [ 8, 6, 7, 6, 8, 5, 5, 8, 4, 4, 8, 3, 8, 9, 3, 9, 10, 2, 1, 2, 10, 9, 2, 3, 0, 1, 11, 0, 11, 12, 0, 12, 13, 11, 1, 10 ],
"vertices": [ 2, 37, 18.17, 41.57, 0.7896, 38, 12.46, 46.05, 0.2104, 2, 37, 24.08, 40.76, 0.71228, 38, 16.12, 41.34, 0.28772, 2, 37, 29.81, 39.98, 0.55344, 38, 19.67, 36.78, 0.44656, 2, 37, 32.81, 41.67, 0.38554, 38, 23, 35.89, 0.61446, 2, 37, 37.86, 44.52, 0.25567, 38, 28.61, 34.4, 0.74433, 2, 37, 42.65, 47.22, 0.17384, 38, 33.92, 32.99, 0.82616, 1, 38, 64.15, 14.56, 1, 1, 38, 64.51, -5.87, 1, 1, 38, 21.08, -6.64, 1, 2, 37, 44.67, -6.77, 0.5684, 38, -2.34, -6.97, 0.4316, 1, 37, 3.1, -48.81, 1, 1, 37, -26.73, -19.31, 1, 1, 37, -30.15, 15.69, 1, 1, 37, -1.84, 44.32, 1 ],
"hull": 14,
"edges": [ 14, 16, 16, 18, 18, 20, 4, 18, 20, 22, 24, 26, 22, 24, 12, 14, 10, 12, 2, 4, 2, 20, 4, 6, 6, 16, 2, 0, 0, 26, 6, 8, 8, 10 ],
"width": 126,
"height": 69
}
},
"front-shin": {
"front-shin": {
"type": "mesh",
"uvs": [ 0.90031, 0.05785, 1, 0.12828, 1, 0.21619, 0.9025, 0.31002, 0.78736, 0.35684, 0.78081, 0.39874, 0.77215, 0.45415, 0.77098, 0.51572, 0.84094, 0.63751, 0.93095, 0.7491, 0.95531, 0.7793, 0.78126, 0.87679, 0.5613, 1, 0.2687, 1, 0, 1, 0.00279, 0.96112, 0.01358, 0.81038, 0.02822, 0.60605, 0.08324, 0.45142, 0.18908, 0.31882, 0.29577, 0.2398, 0.30236, 0.14941, 0.37875, 0.05902, 0.53284, 0, 0.70538, 0, 0.41094, 0.71968, 0.40743, 0.54751, 0.41094, 0.4536, 0.4724, 0.35186, 0.33367, 0.27829, 0.50226, 0.31664, 0.65328, 0.67507, 0.60762, 0.52716, 0.6006, 0.45125, 0.62747, 0.37543, 0.6573, 0.3385, 0.27843, 0.32924, 0.18967, 0.45203, 0.16509, 0.58586, 0.18265, 0.7682, 0.50532, 0.24634, 0.59473, 0.17967, 0.60161, 0.10611, 0.51392, 0.04327, 0.72198, 0.28849, 0.82343, 0.20266, 0.86814, 0.11377, 0.79592, 0.04634, 0.44858, 0.15515, 0.25466, 0.96219, 0.53169, 0.9448, 0.7531, 0.8324 ],
"triangles": [ 24, 0, 47, 43, 23, 24, 47, 43, 24, 43, 22, 23, 42, 43, 47, 46, 47, 0, 42, 47, 46, 46, 0, 1, 48, 22, 43, 48, 43, 42, 21, 22, 48, 41, 48, 42, 45, 42, 46, 41, 42, 45, 46, 1, 2, 45, 46, 2, 40, 48, 41, 48, 20, 21, 29, 48, 40, 29, 20, 48, 44, 41, 45, 40, 41, 44, 3, 45, 2, 44, 45, 3, 30, 29, 40, 35, 30, 40, 36, 19, 20, 36, 20, 29, 44, 35, 40, 28, 29, 30, 4, 44, 3, 35, 44, 4, 34, 30, 35, 5, 35, 4, 34, 28, 30, 33, 28, 34, 37, 19, 36, 18, 19, 37, 27, 29, 28, 27, 28, 33, 36, 29, 27, 37, 36, 27, 5, 34, 35, 6, 34, 5, 33, 34, 6, 6, 32, 33, 7, 32, 6, 26, 37, 27, 38, 18, 37, 38, 37, 26, 17, 18, 38, 31, 32, 7, 31, 7, 8, 32, 25, 26, 38, 26, 25, 27, 33, 32, 32, 26, 27, 39, 38, 25, 17, 38, 39, 16, 17, 39, 51, 31, 8, 51, 8, 9, 11, 51, 9, 11, 9, 10, 31, 50, 25, 31, 25, 32, 50, 31, 51, 49, 39, 25, 49, 25, 50, 15, 16, 39, 49, 15, 39, 13, 49, 50, 14, 15, 49, 13, 14, 49, 12, 50, 51, 12, 51, 11, 13, 50, 12 ],
"vertices": [ -23.66, 19.37, -11.73, 28.98, 4.34, 30.83, 22.41, 24.87, 32.05, 16.48, 39.77, 16.83, 49.98, 17.3, 61.25, 18.5, 82.85, 26.78, 102.4, 36.46, 107.69, 39.09, 127.15, 26.97, 151.74, 11.65, 154.49, -12.18, 157.02, -34.07, 149.89, -34.66, 122.23, -36.97, 84.75, -40.09, 55.97, -38.88, 30.73, -33.05, 15.29, -26.03, -1.3, -27.41, -18.54, -23.09, -30.78, -11.79, -32.4, 2.27, 101.92, -6.52, 70.48, -10.44, 53.28, -12.14, 34.11, -9.28, 21.96, -22.13, 27.39, -7.59, 91.48, 12.28, 64.88, 5.44, 51.07, 3.26, 36.95, 3.85, 29.92, 5.5, 31.8, -25.56, 55.08, -30.19, 79.77, -29.37, 112.93, -24.09, 14.51, -8.83, 1.48, -2.95, -12.03, -3.94, -22.69, -12.41, 20.17, 9.71, 3.53, 16.16, -13.14, 17.93, -24.78, 10.62, -1.62, -15.37, 147.71, -14.13, 141.93, 8.07, 119.3, 23.74 ],
"hull": 25,
"edges": [ 8, 6, 6, 4, 4, 2, 2, 0, 0, 48, 46, 48, 46, 44, 44, 42, 42, 40, 40, 38, 38, 36, 36, 34, 32, 34, 50, 52, 52, 54, 54, 56, 40, 58, 58, 60, 8, 10, 20, 22, 22, 24, 62, 64, 64, 66, 66, 68, 8, 70, 70, 60, 68, 70, 58, 72, 72, 74, 74, 76, 76, 78, 24, 26, 26, 28, 58, 80, 80, 82, 82, 84, 84, 86, 86, 44, 70, 88, 88, 90, 90, 92, 92, 94, 94, 48, 80, 88, 88, 6, 82, 90, 90, 4, 84, 92, 92, 2, 86, 94, 94, 0, 56, 60, 10, 12, 12, 14, 14, 16, 28, 30, 30, 32, 26, 98, 98, 78, 30, 98, 24, 100, 100, 50, 98, 100, 22, 102, 102, 62, 100, 102, 16, 18, 18, 20, 102, 18 ],
"width": 82,
"height": 184
}
},
"front-thigh": {
"front-thigh": { "x": 42.48, "y": 4.45, "rotation": 84.87, "width": 45, "height": 112 }
},
"front-upper-arm": {
"front-upper-arm": { "x": 28.31, "y": 7.37, "rotation": 97.9, "width": 46, "height": 97 }
},
"goggles": {
"goggles": {
"type": "mesh",
"uvs": [ 0.53653, 0.04114, 0.72922, 0.16036, 0.91667, 0.33223, 0.97046, 0.31329, 1, 0.48053, 0.95756, 0.5733, 0.88825, 0.6328, 0.86878, 0.78962, 0.77404, 0.8675, 0.72628, 1, 0.60714, 0.93863, 0.49601, 0.88138, 0.41558, 0.75027, 0.32547, 0.70084, 0.2782, 0.58257, 0.1721, 0.63281, 0.17229, 0.75071, 0.10781, 0.79898, 0, 0.32304, 0, 0.12476, 0.07373, 0.07344, 0.15423, 0.10734, 0.23165, 0.13994, 0.30313, 0.02256, 0.34802, 0, 0.42979, 0.69183, 0.39476, 0.51042, 0.39488, 0.31512, 0.45878, 0.23198, 0.56501, 0.28109, 0.69961, 0.39216, 0.82039, 0.54204, 0.85738, 0.62343, 0.91107, 0.51407, 0.72639, 0.32147, 0.58764, 0.19609, 0.48075, 0.11269, 0.37823, 0.05501, 0.3287, 0.17866, 0.319, 0.305, 0.36036, 0.53799, 0.40327, 0.70072, 0.30059, 0.55838, 0.21957, 0.2815, 0.09963, 0.28943, 0.56863, 0.4368, 0.4911, 0.37156, 0.51185, 0.52093, 0.67018, 0.59304, 0.7619, 0.68575, 0.73296, 0.43355 ],
"triangles": [ 49, 8, 48, 9, 48, 8, 12, 25, 11, 48, 9, 10, 47, 48, 10, 47, 10, 25, 25, 10, 11, 8, 49, 7, 17, 15, 16, 17, 18, 15, 49, 32, 7, 7, 32, 6, 41, 42, 40, 12, 41, 25, 41, 12, 42, 13, 14, 42, 12, 13, 42, 41, 40, 25, 40, 26, 25, 25, 26, 47, 49, 31, 32, 31, 49, 50, 18, 44, 15, 42, 14, 44, 14, 15, 44, 5, 6, 33, 6, 32, 33, 32, 31, 33, 47, 45, 48, 49, 48, 50, 50, 45, 30, 50, 48, 45, 42, 44, 43, 5, 33, 4, 42, 39, 40, 42, 43, 39, 31, 50, 33, 40, 39, 26, 45, 47, 46, 33, 2, 4, 2, 33, 34, 47, 26, 46, 26, 27, 46, 26, 39, 27, 2, 3, 4, 30, 45, 29, 30, 34, 50, 33, 50, 34, 45, 46, 29, 30, 29, 34, 27, 28, 46, 46, 28, 29, 18, 19, 44, 29, 35, 34, 2, 34, 1, 34, 35, 1, 28, 27, 38, 27, 39, 38, 39, 43, 38, 44, 19, 21, 44, 21, 43, 21, 19, 20, 43, 22, 38, 43, 21, 22, 29, 28, 35, 28, 36, 35, 28, 38, 36, 36, 0, 35, 35, 0, 1, 22, 23, 38, 38, 37, 36, 37, 23, 24, 37, 38, 23, 36, 37, 0, 37, 24, 0 ],
"vertices": [ 172.09, 22.81, 170.1, -31.19, 159.41, -86.8, 167.03, -99.01, 143.4, -115.48, 125.21, -110.14, 109.89, -96.35, 83.65, -100.19, 63.25, -81.16, 38.37, -76.69, 37.67, -43.98, 37.01, -13.47, 50.58, 13.55, 50.52, 38.45, 64.95, 56.6, 47.9, 79.96, 29.45, 73.42, 16.31, 86.64, 81.51, 139.38, 112.56, 150.3, 126.97, 134.97, 128.63, 113.28, 130.23, 92.43, 154.79, 81.29, 162.21, 71.48, 60.96, 13.27, 86.33, 31.88, 116.93, 42.6, 135.47, 31.44, 136.98, 2.59, 131.23, -36.66, 118.22, -74.65, 108.69, -88.24, 130.46, -95.44, 144.63, -39.36, 152.25, 1.7, 156.06, 32.6, 156.22, 61.02, 132.57, 66.41, 111.94, 61.84, 79.04, 38.83, 57.27, 19.31, 70.67, 52.42, 107.02, 87.61, 95.4, 116.7, 112.91, -6.87, 116.42, 15.8, 94.82, 2.47, 97.24, -40.48, 90.66, -68.16, 127.65, -47.15 ],
"hull": 25,
"edges": [ 36, 34, 34, 32, 32, 30, 30, 28, 28, 26, 26, 24, 24, 22, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 48, 48, 46, 46, 44, 36, 38, 40, 38, 24, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 62, 64, 64, 12, 8, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 24, 24, 84, 84, 86, 86, 44, 40, 42, 42, 44, 42, 88, 88, 30, 58, 90, 90, 92, 92, 94, 18, 20, 20, 22, 94, 20, 18, 96, 96, 98, 60, 100, 100, 62, 98, 100 ],
"width": 261,
"height": 166
}
},
"gun": {
"gun": { "x": 77.3, "y": 16.4, "rotation": 60.83, "width": 210, "height": 203 }
},
"head": {
"head": {
"type": "mesh",
"uvs": [ 0.75919, 0.06107, 0.88392, 0.17893, 0.90174, 0.30856, 0.94224, 0.1966, 1, 0.26584, 1, 0.422, 0.95864, 0.46993, 0.92118, 0.51333, 0.85957, 0.5347, 0.78388, 0.65605, 0.74384, 0.74838, 0.85116, 0.75151, 0.84828, 0.82564, 0.81781, 0.85367, 0.75599, 0.85906, 0.76237, 0.90468, 0.65875, 1, 0.38337, 1, 0.1858, 0.85404, 0.12742, 0.81091, 0.06025, 0.69209, 0, 0.58552, 0, 0.41021, 0.0853, 0.20692, 0.24243, 0.14504, 0.5, 0.1421, 0.50324, 0.07433, 0.41738, 0, 0.57614, 0, 0.85059, 0.36087, 0.73431, 0.43206, 0.68481, 0.31271, 0.72165, 0.16718, 0.55931, 0.04154, 0.44764, 0.22895, 0.23926, 0.26559, 0.71272, 0.44036, 0.56993, 0.383, 0.41678, 0.33511, 0.293, 0.31497, 0.70802, 0.44502, 0.56676, 0.38976, 0.41521, 0.34416, 0.28754, 0.33017, 0.88988, 0.50177, 0.30389, 0.73463, 0.2646, 0.65675, 0.21414, 0.61584, 0.14613, 0.62194, 0.10316, 0.66636, 0.10358, 0.72557, 0.14505, 0.79164, 0.20263, 0.81355, 0.27873, 0.80159, 0.34947, 0.7376, 0.23073, 0.57073, 0.08878, 0.60707, 0.29461, 0.8129, 0.73006, 0.87883, 0.69805, 0.87348, 0.66166, 0.79681 ],
"triangles": [ 36, 37, 31, 30, 31, 29, 37, 41, 38, 31, 37, 34, 31, 32, 29, 37, 38, 34, 34, 25, 31, 2, 32, 1, 31, 25, 32, 33, 32, 25, 33, 25, 26, 32, 0, 1, 32, 33, 0, 0, 33, 28, 26, 27, 33, 33, 27, 28, 6, 29, 5, 29, 2, 5, 2, 4, 5, 2, 29, 32, 2, 3, 4, 36, 30, 44, 44, 30, 6, 30, 29, 6, 30, 36, 31, 16, 58, 15, 16, 59, 58, 59, 16, 60, 18, 57, 17, 57, 54, 17, 16, 17, 60, 17, 54, 60, 58, 14, 15, 58, 59, 14, 59, 60, 14, 60, 10, 14, 14, 10, 13, 18, 53, 57, 18, 52, 53, 19, 51, 18, 18, 51, 52, 13, 10, 12, 12, 10, 11, 53, 52, 45, 57, 45, 54, 57, 53, 45, 20, 50, 19, 46, 45, 52, 47, 46, 50, 50, 48, 47, 19, 50, 51, 46, 52, 51, 54, 41, 60, 10, 60, 9, 60, 41, 40, 46, 51, 50, 9, 60, 40, 55, 42, 41, 54, 55, 41, 46, 54, 45, 20, 49, 50, 50, 49, 48, 20, 56, 49, 20, 21, 56, 49, 56, 48, 47, 55, 46, 42, 55, 43, 55, 54, 46, 9, 40, 8, 47, 48, 55, 55, 48, 56, 55, 56, 22, 56, 21, 22, 55, 22, 43, 8, 44, 7, 40, 36, 8, 8, 36, 44, 7, 44, 6, 41, 37, 40, 40, 37, 36, 43, 22, 39, 22, 23, 35, 41, 42, 38, 43, 39, 42, 42, 39, 38, 38, 39, 34, 39, 22, 35, 39, 35, 34, 35, 24, 34, 35, 23, 24, 34, 24, 25 ],
"vertices": [ 1, 48, 41.97, -41.8, 1, 3, 46, 73.47, 27.55, 0.18925, 48, -5.75, -51.71, 0.72419, 47, 112.98, -11.43, 0.08656, 3, 46, 38.23, 10.99, 0.84284, 48, -41.02, -35.22, 0.09706, 47, 92.72, -44.68, 0.06011, 1, 46, 73.36, 10.89, 1, 1, 46, 58.59, -10.38, 1, 2, 45, 75.49, -4.56, 0.10258, 46, 14.36, -24.8, 0.89742, 2, 45, 59.82, -13.73, 0.41734, 46, -2.7, -18.57, 0.58266, 1, 44, 163.07, -108.68, 1, 1, 44, 151.52, -95.05, 1, 1, 44, 110.61, -87.69, 1, 1, 44, 81.05, -86.58, 1, 1, 44, 89.82, -114.32, 1, 1, 44, 68.72, -120.91, 1, 1, 44, 58.1, -115.89, 1, 1, 44, 51.03, -100.63, 1, 1, 44, 38.79, -106.76, 1, 1, 44, 2.68, -89.7, 1, 1, 44, -22.07, -19.3, 1, 1, 44, 1.2, 45.63, 1, 1, 44, 8.07, 64.82, 1, 1, 44, 35.44, 93.73, 1, 1, 44, 59.98, 119.66, 1, 1, 44, 109.26, 136.99, 1, 1, 44, 174.07, 135.27, 1, 2, 44, 205.59, 101.22, 0.83763, 47, -16.8, 104.64, 0.16237, 2, 48, 58.94, 30.5, 0.60736, 47, 38.37, 61.9, 0.39264, 1, 48, 75.56, 19.01, 1, 1, 48, 106.7, 26.9, 1, 1, 48, 83.79, -9.51, 1, 4, 45, 44.52, 27.24, 0.19601, 46, 19.12, 19.33, 0.58067, 48, -46.83, -15.19, 0.07455, 47, 72.17, -48.25, 0.14877, 2, 45, 7.42, 19.08, 0.79203, 47, 34.31, -45.25, 0.20797, 1, 47, 45.94, -9.06, 1, 1, 48, 20.62, -16.35, 1, 1, 48, 75.74, 0.94, 1, 3, 44, 200.44, 40.47, 0.4822, 48, 44.59, 56.29, 0.1495, 47, 11.17, 50.47, 0.3683, 1, 44, 171.41, 90.12, 1, 2, 45, 1.07, 18.93, 0.79203, 47, 28.19, -43.54, 0.20797, 3, 44, 168.13, -6.01, 0.11484, 45, -28.64, 49.04, 0.13133, 47, 8.54, -6.09, 0.75382, 2, 44, 167.83, 37.87, 0.27101, 47, -15.06, 30.91, 0.72899, 1, 44, 162.36, 71.5, 1, 1, 44, 163.11, -47.44, 1, 1, 44, 165.94, -5.87, 1, 1, 44, 165.14, 37.38, 1, 1, 44, 157.6, 71.4, 1, 1, 44, 163.5, -99.54, 1, 1, 44, 45.38, 27.24, 1, 1, 44, 63.74, 44.98, 1, 1, 44, 70.7, 61.93, 1, 1, 44, 62.88, 78.71, 1, 1, 44, 46.53, 85.3, 1, 1, 44, 29.92, 79.34, 1, 1, 44, 15.08, 62.21, 1, 1, 44, 14.09, 45.33, 1, 1, 44, 24.3, 27.06, 1, 1, 44, 48.64, 15.3, 1, 1, 44, 84.87, 62.14, 1, 1, 44, 61.9, 94.84, 1, 1, 44, 22.54, 21.88, 1, 1, 44, 43.15, -95.95, 1, 1, 44, 41.77, -87.24, 1, 1, 44, 60.05, -70.36, 1 ],
"hull": 29,
"edges": [ 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 56, 54, 56, 54, 52, 52, 50, 50, 48, 48, 46, 46, 44, 42, 44, 32, 34, 4, 58, 58, 60, 62, 64, 64, 66, 66, 54, 50, 68, 68, 70, 70, 44, 60, 72, 62, 74, 72, 74, 74, 76, 76, 78, 78, 44, 16, 80, 80, 82, 82, 84, 84, 86, 86, 44, 14, 88, 88, 72, 14, 16, 10, 12, 12, 14, 12, 60, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 90, 108, 110, 110, 112, 38, 40, 40, 42, 112, 40, 34, 36, 36, 38, 36, 114, 114, 108, 30, 32, 30, 28, 24, 26, 28, 26, 22, 24, 22, 20, 20, 18, 18, 16, 28, 116, 116, 118, 118, 120, 120, 20 ],
"width": 271,
"height": 298
}
},
"head-bb": {
"head": {
"type": "boundingbox",
"vertexCount": 6,
"vertices": [ -19.14, -70.3, 40.8, -118.08, 257.78, -115.62, 285.17, 57.18, 120.77, 164.95, -5.07, 76.95 ]
}
},
"hoverboard-board": {
"hoverboard-board": {
"type": "mesh",
"uvs": [ 0.13865, 0.56624, 0.11428, 0.51461, 0.07619, 0.52107, 0.02364, 0.52998, 0.01281, 0.53182, 0, 0.37979, 0, 0.2206, 0.00519, 0.10825, 0.01038, 0.10726, 0.03834, 0.10194, 0.05091, 0, 0.08326, 0, 0.10933, 0.04206, 0.1382, 0.08865, 0.18916, 0.24067, 0.22234, 0.4063, 0.23886, 0.44063, 0.83412, 0.44034, 0.88444, 0.38296, 0.92591, 0.32639, 0.95996, 0.28841, 0.98612, 0.28542, 1, 0.38675, 0.99494, 0.47104, 0.97883, 0.53251, 0.94409, 0.62135, 0.90206, 0.69492, 0.86569, 0.71094, 0.82822, 0.70791, 0.81286, 0.77127, 0.62931, 0.77266, 0.61364, 0.70645, 0.47166, 0.70664, 0.45901, 0.77827, 0.27747, 0.76986, 0.2658, 0.70372, 0.24976, 0.71381, 0.24601, 0.77827, 0.23042, 0.84931, 0.20926, 0.90956, 0.17299, 1, 0.15077, 0.99967, 0.12906, 0.90192, 0.10369, 0.73693, 0.10198, 0.62482, 0.09131, 0.47272, 0.09133, 0.41325, 0.15082, 0.41868, 0.21991, 0.51856, 0.06331, 0.10816, 0.08383, 0.21696, 0.08905, 0.37532, 0.15903, 0.58726, 0.17538, 0.65706, 0.20118, 0.8029, 0.17918, 0.55644, 0.22166, 0.5802, 0.86259, 0.57962, 0.92346, 0.48534, 0.96691, 0.36881, 0.0945, 0.13259, 0.12688, 0.17831, 0.15986, 0.24682, 0.18036, 0.31268, 0.20607, 0.4235, 0.16074, 0.85403, 0.13624, 0.70122, 0.12096, 0.64049, 0.02396, 0.21811, 0.02732, 0.37839, 0.02557, 0.4972, 0.14476, 0.45736, 0.18019, 0.51689, 0.19692, 0.56636 ],
"triangles": [ 10, 11, 12, 9, 10, 12, 49, 9, 12, 60, 49, 12, 13, 60, 12, 61, 60, 13, 50, 49, 60, 50, 60, 61, 68, 8, 9, 68, 9, 49, 68, 49, 50, 7, 8, 68, 6, 7, 68, 61, 13, 14, 62, 61, 14, 50, 61, 62, 63, 62, 14, 59, 20, 21, 19, 20, 59, 51, 50, 62, 51, 62, 63, 51, 69, 68, 51, 68, 50, 6, 68, 69, 5, 6, 69, 18, 19, 59, 15, 63, 14, 59, 21, 22, 47, 51, 63, 47, 46, 51, 47, 63, 64, 15, 64, 63, 64, 15, 16, 71, 46, 47, 23, 59, 22, 69, 51, 70, 45, 46, 71, 70, 51, 2, 58, 18, 59, 58, 59, 23, 17, 18, 58, 70, 5, 69, 2, 51, 46, 1, 45, 71, 47, 48, 71, 47, 64, 48, 48, 72, 71, 1, 71, 72, 16, 48, 64, 45, 2, 46, 2, 45, 1, 70, 4, 5, 3, 70, 2, 3, 4, 70, 24, 58, 23, 72, 0, 1, 73, 55, 72, 55, 0, 72, 48, 73, 72, 57, 17, 58, 25, 57, 58, 56, 48, 16, 73, 48, 56, 56, 16, 17, 56, 17, 57, 52, 0, 55, 24, 25, 58, 44, 0, 52, 67, 44, 52, 52, 56, 53, 73, 52, 55, 56, 52, 73, 67, 52, 53, 26, 57, 25, 66, 67, 53, 56, 32, 35, 53, 56, 35, 56, 57, 32, 28, 31, 57, 57, 31, 32, 57, 27, 28, 26, 27, 57, 36, 53, 35, 43, 44, 67, 43, 67, 66, 34, 35, 32, 29, 31, 28, 30, 31, 29, 53, 54, 66, 53, 36, 54, 33, 34, 32, 37, 54, 36, 65, 43, 66, 38, 54, 37, 54, 65, 66, 39, 65, 54, 42, 43, 65, 38, 39, 54, 40, 42, 65, 40, 41, 42, 65, 39, 40 ],
"vertices": [ -189.36, 15.62, -201.35, 23.47, -220.09, 22.49, -245.95, 21.13, -251.28, 20.86, -257.58, 43.96, -257.57, 68.16, -255.02, 85.24, -252.47, 85.39, -238.71, 86.2, -232.52, 101.69, -216.61, 101.69, -203.78, 95.3, -189.58, 88.21, -164.51, 65.1, -148.19, 39.93, -140.06, 34.71, 152.82, 34.73, 177.57, 43.45, 197.97, 52.05, 214.72, 57.82, 227.6, 58.27, 234.42, 42.87, 231.94, 30.06, 224.01, 20.72, 206.91, 7.21, 186.23, -3.97, 168.34, -6.4, 149.9, -5.94, 142.35, -15.57, 52.04, -15.77, 44.33, -5.71, -25.52, -5.73, -31.75, -16.62, -121.07, -15.34, -126.81, -5.28, -134.7, -6.81, -136.54, -16.61, -144.22, -27.41, -154.63, -36.57, -172.47, -50.31, -183.41, -50.26, -194.09, -35.4, -206.56, -10.32, -207.4, 6.72, -212.65, 29.84, -212.64, 38.88, -183.37, 38.05, -149.38, 22.86, -226.43, 85.25, -216.33, 68.71, -213.76, 44.64, -179.34, 12.42, -171.29, 1.81, -158.6, -20.36, -169.42, 17.11, -148.52, 13.49, 166.82, 13.56, 196.76, 27.89, 218.14, 45.6, -211.08, 81.54, -195.15, 74.59, -178.93, 64.17, -168.84, 54.16, -156.19, 37.31, -178.5, -28.13, -190.55, -4.9, -198.07, 4.33, -245.79, 68.54, -244.14, 44.18, -245, 26.12, -186.36, 32.17, -168.92, 23.12, -160.69, 15.6 ],
"hull": 45,
"edges": [ 0, 2, 8, 10, 10, 12, 12, 14, 18, 20, 20, 22, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 80, 82, 82, 84, 84, 86, 86, 88, 0, 88, 2, 90, 90, 92, 92, 94, 94, 96, 96, 32, 18, 98, 98, 100, 100, 102, 2, 4, 102, 4, 92, 102, 0, 104, 104, 106, 106, 108, 78, 80, 108, 78, 74, 76, 76, 78, 62, 56, 64, 70, 0, 110, 112, 114, 114, 116, 116, 118, 118, 42, 50, 116, 114, 34, 98, 120, 120, 122, 22, 24, 24, 26, 120, 24, 122, 124, 124, 126, 126, 128, 128, 96, 80, 130, 130, 132, 132, 134, 134, 88, 14, 16, 16, 18, 136, 16, 136, 138, 138, 140, 4, 6, 6, 8, 140, 6, 96, 112, 92, 142, 142, 144, 110, 146, 146, 112, 144, 146 ],
"width": 492,
"height": 152
}
},
"hoverboard-thruster-front": {
"hoverboard-thruster": { "x": 0.02, "y": -7.08, "rotation": 0.17, "width": 60, "height": 64 }
},
"hoverboard-thruster-rear": {
"hoverboard-thruster": { "x": 1.1, "y": -6.29, "rotation": 0.17, "width": 60, "height": 64 }
},
"hoverglow-front": {
"hoverglow-small": {
"x": 2.13,
"y": -2,
"scaleX": 0.303,
"scaleY": 0.495,
"rotation": 0.15,
"width": 274,
"height": 75
}
},
"hoverglow-rear": {
"hoverglow-small": {
"x": 1.39,
"y": -2.09,
"scaleX": 0.303,
"scaleY": 0.495,
"rotation": 0.61,
"width": 274,
"height": 75
}
},
"mouth": {
"mouth-grind": {
"type": "mesh",
"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
"triangles": [ 1, 3, 0, 1, 2, 3 ],
"vertices": [ 11.28, -85.88, -19.56, 1.84, 36.09, 21.41, 66.93, -66.32 ],
"hull": 4,
"edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
"width": 93,
"height": 59
},
"mouth-oooo": { "x": 23.69, "y": -32.24, "rotation": -70.63, "width": 93, "height": 59 },
"mouth-smile": {
"type": "mesh",
"uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
"triangles": [ 1, 2, 3, 1, 3, 0 ],
"vertices": [ 11.28, -85.89, -19.56, 1.85, 36.1, 21.42, 66.94, -66.32 ],
"hull": 4,
"edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
"width": 93,
"height": 59
}
},
"muzzle": {
"muzzle01": {
"x": 151.97,
"y": 5.81,
"scaleX": 3.736,
"scaleY": 3.736,
"rotation": 0.15,
"width": 133,
"height": 79
},
"muzzle02": {
"x": 187.25,
"y": 5.9,
"scaleX": 4.062,
"scaleY": 4.062,
"rotation": 0.15,
"width": 135,
"height": 84
},
"muzzle03": {
"x": 231.96,
"y": 6.02,
"scaleX": 4.132,
"scaleY": 4.132,
"rotation": 0.15,
"width": 166,
"height": 106
},
"muzzle04": {
"x": 231.96,
"y": 6.02,
"scaleX": 4.005,
"scaleY": 4.005,
"rotation": 0.15,
"width": 149,
"height": 90
},
"muzzle05": {
"x": 293.8,
"y": 6.19,
"scaleX": 4.467,
"scaleY": 4.467,
"rotation": 0.15,
"width": 135,
"height": 75
}
},
"muzzle-glow": {
"muzzle-glow": { "width": 50, "height": 50 }
},
"muzzle-ring": {
"muzzle-ring": { "x": -1.3, "y": 0.32, "scaleX": 0.315, "scaleY": 0.315, "width": 49, "height": 209 }
},
"muzzle-ring2": {
"muzzle-ring": { "x": -1.3, "y": 0.32, "scaleX": 0.315, "scaleY": 0.315, "width": 49, "height": 209 }
},
"muzzle-ring3": {
"muzzle-ring": { "x": -1.3, "y": 0.32, "scaleX": 0.315, "scaleY": 0.315, "width": 49, "height": 209 }
},
"muzzle-ring4": {
"muzzle-ring": { "x": -1.3, "y": 0.32, "scaleX": 0.315, "scaleY": 0.315, "width": 49, "height": 209 }
},
"neck": {
"neck": { "x": 9.77, "y": -3.01, "rotation": -55.22, "width": 36, "height": 41 }
},
"portal-bg": {
"portal-bg": { "x": -3.1, "y": 7.25, "scaleX": 1.049, "scaleY": 1.049, "width": 266, "height": 266 }
},
"portal-flare1": {
"portal-flare1": { "width": 111, "height": 60 },
"portal-flare2": { "width": 114, "height": 61 },
"portal-flare3": { "width": 115, "height": 59 }
},
"portal-flare10": {
"portal-flare1": { "width": 111, "height": 60 },
"portal-flare2": { "width": 114, "height": 61 },
"portal-flare3": { "width": 115, "height": 59 }
},
"portal-flare2": {
"portal-flare1": { "width": 111, "height": 60 },
"portal-flare2": { "width": 114, "height": 61 },
"portal-flare3": { "width": 115, "height": 59 }
},
"portal-flare3": {
"portal-flare1": { "width": 111, "height": 60 },
"portal-flare2": { "width": 114, "height": 61 },
"portal-flare3": { "width": 115, "height": 59 }
},
"portal-flare4": {
"portal-flare1": { "width": 111, "height": 60 },
"portal-flare2": { "width": 114, "height": 61 },
"portal-flare3": { "width": 115, "height": 59 }
},
"portal-flare5": {
"portal-flare1": { "width": 111, "height": 60 },
"portal-flare2": { "width": 114, "height": 61 },
"portal-flare3": { "width": 115, "height": 59 }
},
"portal-flare6": {
"portal-flare1": { "width": 111, "height": 60 },
"portal-flare2": { "width": 114, "height": 61 },
"portal-flare3": { "width": 115, "height": 59 }
},
"portal-flare7": {
"portal-flare1": { "width": 111, "height": 60 },
"portal-flare2": { "width": 114, "height": 61 },
"portal-flare3": { "width": 115, "height": 59 }
},
"portal-flare8": {
"portal-flare1": { "width": 111, "height": 60 },
"portal-flare2": { "width": 114, "height": 61 },
"portal-flare3": { "width": 115, "height": 59 }
},
"portal-flare9": {
"portal-flare1": { "width": 111, "height": 60 },
"portal-flare2": { "width": 114, "height": 61 },
"portal-flare3": { "width": 115, "height": 59 }
},
"portal-shade": {
"portal-shade": { "width": 266, "height": 266 }
},
"portal-streaks1": {
"portal-streaks1": { "scaleX": 0.977, "scaleY": 0.977, "width": 252, "height": 256 }
},
"portal-streaks2": {
"portal-streaks2": { "x": -1.64, "y": 2.79, "width": 250, "height": 249 }
},
"rear-bracer": {
"rear-bracer": { "x": 11.15, "y": -2.2, "rotation": 66.17, "width": 56, "height": 72 }
},
"rear-foot": {
"rear-foot": {
"type": "mesh",
"uvs": [ 0.48368, 0.1387, 0.51991, 0.21424, 0.551, 0.27907, 0.58838, 0.29816, 0.63489, 0.32191, 0.77342, 0.39267, 1, 0.73347, 1, 1, 0.54831, 0.99883, 0.31161, 1, 0, 1, 0, 0.41397, 0.13631, 0, 0.41717, 0 ],
"triangles": [ 8, 6, 7, 8, 5, 6, 8, 4, 5, 8, 3, 4, 3, 8, 9, 2, 9, 10, 1, 11, 0, 0, 11, 12, 12, 13, 0, 2, 10, 1, 3, 9, 2, 11, 1, 10 ],
"vertices": [ 2, 8, 10.45, 29.41, 0.90802, 9, -6.74, 49.62, 0.09198, 2, 8, 16.56, 29.27, 0.84259, 9, -2.65, 45.09, 0.15741, 2, 8, 21.8, 29.15, 0.69807, 9, 0.85, 41.2, 0.30193, 2, 8, 25.53, 31.43, 0.52955, 9, 5.08, 40.05, 0.47045, 2, 8, 30.18, 34.27, 0.39303, 9, 10.33, 38.62, 0.60697, 2, 8, 44.02, 42.73, 0.27525, 9, 25.98, 34.36, 0.72475, 2, 8, 76.47, 47.28, 0.21597, 9, 51.56, 13.9, 0.78403, 2, 8, 88.09, 36.29, 0.28719, 9, 51.55, -2.09, 0.71281, 2, 8, 52.94, -0.73, 0.47576, 9, 0.52, -1.98, 0.52424, 2, 8, 34.63, -20.23, 0.68757, 9, -26.23, -2.03, 0.31243, 2, 8, 10.44, -45.81, 0.84141, 9, -61.43, -2, 0.15859, 2, 8, -15.11, -21.64, 0.93283, 9, -61.4, 33.15, 0.06717, 1, 8, -22.57, 6.61, 1, 1, 8, -0.76, 29.67, 1 ],
"hull": 14,
"edges": [ 14, 12, 10, 12, 14, 16, 16, 18, 18, 20, 4, 18, 20, 22, 24, 26, 22, 24, 4, 2, 2, 20, 4, 6, 6, 16, 6, 8, 8, 10, 2, 0, 0, 26 ],
"width": 113,
"height": 60
}
},
"rear-shin": {
"rear-shin": { "x": 58.29, "y": -2.75, "rotation": 92.37, "width": 75, "height": 178 }
},
"rear-thigh": {
"rear-thigh": { "x": 33.11, "y": -4.11, "rotation": 72.54, "width": 55, "height": 94 }
},
"rear-upper-arm": {
"rear-upper-arm": { "x": 21.13, "y": 4.09, "rotation": 89.33, "width": 40, "height": 87 }
},
"side-glow1": {
"hoverglow-small": { "x": 2.09, "scaleX": 0.235, "scaleY": 0.413, "width": 274, "height": 75 }
},
"side-glow2": {
"hoverglow-small": { "x": 2.09, "scaleX": 0.235, "scaleY": 0.413, "width": 274, "height": 75 }
},
"side-glow3": {
"hoverglow-small": { "x": 2.09, "scaleX": 0.359, "scaleY": 0.63, "width": 274, "height": 75 }
},
"torso": {
"torso": {
"type": "mesh",
"uvs": [ 0.6251, 0.12672, 1, 0.26361, 1, 0.28871, 1, 0.66021, 1, 0.68245, 0.92324, 0.69259, 0.95116, 0.84965, 0.77124, 1, 0.49655, 1, 0.27181, 1, 0.13842, 0.77196, 0.09886, 0.6817, 0.05635, 0.58471, 0, 0.45614, 0, 0.33778, 0, 0.19436, 0.14463, 0, 0.27802, 0, 0.72525, 0.27835, 0.76091, 0.46216, 0.84888, 0.67963, 0.68257, 0.63249, 0.53986, 0.3847, 0.25443, 0.3217, 0.30063, 0.55174, 0.39553, 0.79507, 0.26389, 0.17007, 0.5241, 0.18674, 0.71492, 0.76655, 0.82151, 0.72956, 0.27626, 0.4304, 0.62327, 0.52952, 0.3455, 0.66679, 0.53243, 0.2914 ],
"triangles": [ 27, 26, 16, 17, 27, 16, 0, 27, 17, 15, 16, 26, 18, 0, 1, 27, 0, 18, 18, 1, 2, 33, 27, 18, 23, 15, 26, 33, 23, 26, 33, 26, 27, 14, 15, 23, 22, 33, 18, 23, 33, 22, 13, 14, 23, 19, 18, 2, 30, 23, 22, 13, 23, 30, 22, 18, 19, 31, 22, 19, 24, 30, 22, 24, 22, 31, 12, 13, 30, 12, 30, 24, 21, 31, 19, 19, 2, 3, 32, 24, 31, 32, 31, 21, 3, 20, 19, 11, 12, 24, 11, 24, 32, 20, 21, 19, 5, 20, 3, 4, 5, 3, 29, 21, 20, 29, 20, 5, 28, 21, 29, 10, 11, 32, 25, 32, 21, 25, 21, 28, 10, 32, 25, 29, 5, 6, 9, 10, 25, 8, 25, 28, 9, 25, 8, 7, 28, 29, 7, 29, 6, 8, 28, 7 ],
"vertices": [ 1, 29, 44.59, -10.39, 1, 2, 28, 59.65, -45.08, 0.31254, 29, 17.13, -45.08, 0.68746, 2, 28, 55.15, -44.72, 0.34488, 29, 12.63, -44.72, 0.65512, 2, 27, 31.01, -39.45, 0.62357, 28, -11.51, -39.45, 0.37643, 2, 27, 27.01, -39.14, 0.65234, 28, -15.5, -39.14, 0.34766, 2, 27, 25.79, -31.5, 0.75532, 28, -16.73, -31.5, 0.24468, 1, 27, -2.61, -32, 1, 1, 27, -28.2, -12.29, 1, 1, 27, -26.08, 14.55, 1, 1, 27, -24.35, 36.5, 1, 2, 27, 17.6, 46.3, 0.8332, 28, -24.92, 46.3, 0.1668, 2, 27, 34.1, 48.89, 0.59943, 28, -8.42, 48.89, 0.40058, 3, 27, 51.83, 51.67, 0.29262, 28, 9.32, 51.67, 0.63181, 29, -33.2, 51.67, 0.07557, 3, 27, 75.34, 55.35, 0.06656, 28, 32.82, 55.35, 0.62298, 29, -9.7, 55.35, 0.31046, 2, 28, 54.06, 53.67, 0.37296, 29, 11.54, 53.67, 0.62704, 2, 28, 79.79, 51.64, 0.10373, 29, 37.27, 51.64, 0.89627, 1, 29, 71.04, 34.76, 1, 1, 29, 70.01, 21.72, 1, 2, 28, 59.13, -18.02, 0.12067, 29, 16.61, -18.02, 0.87933, 2, 28, 25.87, -18.9, 0.91272, 29, -16.65, -18.9, 0.08728, 2, 27, 28.69, -24.42, 0.77602, 28, -13.83, -24.42, 0.22398, 2, 27, 38.43, -8.84, 0.7254, 28, -4.09, -8.84, 0.2746, 2, 28, 41.48, 1.59, 0.75167, 29, -1.04, 1.59, 0.24833, 2, 28, 54.98, 28.59, 0.27889, 29, 12.46, 28.59, 0.72111, 2, 27, 55.87, 27.33, 0.21124, 28, 13.35, 27.33, 0.78876, 1, 27, 11.47, 21.51, 1, 1, 29, 39.6, 25.51, 1, 1, 29, 34.6, 0.33, 1, 1, 27, 14.12, -10.1, 1, 2, 27, 19.94, -21.03, 0.92029, 28, -22.58, -21.03, 0.07971, 2, 28, 35.31, 27.99, 0.69833, 29, -7.21, 27.99, 0.30167, 1, 28, 14.84, -4.5, 1, 2, 27, 34.87, 24.58, 0.67349, 28, -7.64, 24.58, 0.32651, 1, 29, 15.76, 1, 1 ],
"hull": 18,
"edges": [ 14, 12, 12, 10, 10, 8, 18, 20, 32, 34, 30, 32, 2, 4, 36, 4, 36, 38, 38, 40, 4, 6, 6, 8, 40, 6, 40, 42, 14, 16, 16, 18, 50, 16, 46, 52, 54, 36, 2, 0, 0, 34, 54, 0, 54, 32, 20, 50, 14, 56, 56, 42, 50, 56, 56, 58, 58, 40, 58, 10, 46, 60, 60, 48, 26, 60, 60, 44, 24, 26, 24, 48, 42, 62, 62, 44, 48, 62, 48, 64, 64, 50, 42, 64, 20, 22, 22, 24, 64, 22, 26, 28, 28, 30, 28, 46, 44, 66, 66, 54, 46, 66, 66, 36, 62, 38 ],
"width": 98,
"height": 180
}
}
}
},
"events": {
"footstep": {}
},
"animations": {
"aim": {
"slots": {
"crosshair": {
"attachment": [
{ "time": 0, "name": "crosshair" }
]
}
},
"bones": {
"front-fist": {
"rotate": [
{ "time": 0, "angle": 36.08 }
]
},
"rear-bracer": {
"rotate": [
{ "time": 0, "angle": -26.55 }
]
},
"rear-upper-arm": {
"rotate": [
{ "time": 0, "angle": 62.31 }
]
},
"front-bracer": {
"rotate": [
{ "time": 0, "angle": 9.11 }
]
},
"gun": {
"rotate": [
{ "time": 0, "angle": -0.31 }
]
}
},
"ik": {
"aim-ik": [
{ "time": 0, "mix": 0.995 }
]
},
"transform": {
"aim-front-arm-transform": [
{ "time": 0, "rotateMix": 0.784, "translateMix": 0, "scaleMix": 0, "shearMix": 0 }
],
"aim-head-transform": [
{ "time": 0, "rotateMix": 0.659, "translateMix": 0, "scaleMix": 0, "shearMix": 0 }
],
"aim-torso-transform": [
{ "time": 0, "rotateMix": 0.423, "translateMix": 0, "scaleMix": 0, "shearMix": 0 }
]
},
"deform": {
"default": {
"eye": {
"eye-indifferent": [
{
"time": 0,
"vertices": [ -0.68777, -17.26618, -0.68777, -17.26618, -0.68777, -17.26618, -0.68777, -17.26618 ]
}
]
},
"goggles": {
"goggles": [
{
"time": 0,
"offset": 16,
"vertices": [ -0.18341, -4.60426, -0.25211, -6.33094 ]
}
]
},
"head": {
"head": [
{
"time": 0,
"offset": 34,
"vertices": [ -0.22919, -5.75542, -0.22919, -5.75542, -0.22919, -5.75542 ]
}
]
},
"mouth": {
"mouth-smile": [
{
"time": 0,
"vertices": [ 5.66431, 2.18625, 0.48294, -15.04339, 0.53525, -20.30316, -7.72803, -7.72495 ]
}
]
}
}
}
},
"death": {
"slots": {
"eye": {
"attachment": [
{ "time": 0, "name": "eye-surprised" },
{ "time": 0.4667, "name": "eye-indifferent" },
{ "time": 2.2333, "name": "eye-surprised" },
{ "time": 4.5333, "name": "eye-indifferent" }
]
},
"front-fist": {
"attachment": [
{ "time": 0, "name": "front-fist-open" }
]
},
"mouth": {
"attachment": [
{ "time": 0, "name": "mouth-oooo" },
{ "time": 2.2333, "name": "mouth-grind" },
{ "time": 4.5333, "name": "mouth-oooo" }
]
}
},
"bones": {
"head": {
"rotate": [
{ "time": 0, "angle": -2.83 },
{ "time": 0.1333, "angle": -28.74 },
{ "time": 0.2333, "angle": 11.43 },
{ "time": 0.3333, "angle": -50.25 },
{ "time": 0.4, "angle": -72.67, "curve": "stepped" },
{ "time": 0.4333, "angle": -72.67 },
{ "time": 0.5, "angle": -20.25 },
{ "time": 0.5667, "angle": -85.29, "curve": "stepped" },
{ "time": 2.2333, "angle": -85.29 },
{ "time": 2.5, "angle": -51.96, "curve": "stepped" },
{ "time": 4.5333, "angle": -51.96 },
{ "time": 4.6667, "angle": -85.29 }
]
},
"neck": {
"rotate": [
{ "time": 0, "angle": -2.83 },
{ "time": 0.1333, "angle": 12.35 },
{ "time": 0.2333, "angle": 29.89 },
{ "time": 0.3, "angle": 70.36 },
{ "time": 0.4, "angle": -10.22, "curve": "stepped" },
{ "time": 0.4333, "angle": -10.22 },
{ "time": 0.5, "angle": 2.93 },
{ "time": 0.5667, "angle": 47.95, "curve": "stepped" },
{ "time": 2.2333, "angle": 47.95 },
{ "time": 2.5, "angle": 18.51, "curve": "stepped" },
{ "time": 4.5333, "angle": 18.51 },
{ "time": 4.6667, "angle": 47.95 }
]
},
"torso": {
"rotate": [
{ "time": 0, "angle": -8.62 },
{ "time": 0.1333, "angle": 28.2 },
{ "time": 0.2667, "angle": -280.19 },
{ "time": 0.4, "angle": -237.23, "curve": "stepped" },
{ "time": 0.4333, "angle": -237.23 },
{ "time": 0.5, "angle": 76.03 }
]
},
"front-upper-arm": {
"rotate": [
{ "time": 0, "angle": -38.86 },
{ "time": 0.1333, "angle": -299.59 },
{ "time": 0.2667, "angle": -244.75 },
{ "time": 0.4, "angle": -292.36 },
{ "time": 0.4333, "angle": -315.85 },
{ "time": 0.5, "angle": -347.94 },
{ "time": 0.7, "angle": -347.33, "curve": "stepped" },
{ "time": 2.2333, "angle": -347.33 },
{ "time": 2.7, "angle": -290.68 },
{ "time": 2.7667, "angle": -285.11 },
{ "time": 4.6667, "angle": -290.68 },
{ "time": 4.8, "angle": 8.61 },
{ "time": 4.8667, "angle": 10.94 }
]
},
"rear-upper-arm": {
"rotate": [
{ "time": 0, "angle": -44.7 },
{ "time": 0.1333, "angle": 112.26 },
{ "time": 0.2667, "angle": 129.08 },
{ "time": 0.4, "angle": 134.94, "curve": "stepped" },
{ "time": 0.4333, "angle": 134.94 },
{ "time": 0.5667, "angle": 172.6 }
]
},
"front-bracer": {
"rotate": [
{ "time": 0, "angle": 21.88 },
{ "time": 0.1333, "angle": 11.49 },
{ "time": 0.2667, "angle": -18.82 },
{ "time": 0.4, "angle": -18.93 },
{ "time": 0.4333, "angle": -18.28 },
{ "time": 0.5, "angle": 60.62 },
{ "time": 0.7, "angle": -18.88, "curve": "stepped" },
{ "time": 2.2333, "angle": -18.88 },
{ "time": 2.7, "angle": -1.96, "curve": "stepped" },
{ "time": 4.6667, "angle": -1.96 },
{ "time": 4.8, "angle": 34.55 },
{ "time": 4.9333, "angle": -18.75 }
]
},
"front-fist": {
"rotate": [
{ "time": 0, "angle": -2.33 },
{ "time": 0.2667, "angle": 26.35 },
{ "time": 0.7, "angle": -6.08, "curve": "stepped" },
{ "time": 2.2333, "angle": -6.08 },
{ "time": 2.7, "angle": 5.73, "curve": "stepped" },
{ "time": 4.6667, "angle": 5.73 },