-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPlayer_Graphics.png.meta
More file actions
2742 lines (2742 loc) · 63.4 KB
/
Player_Graphics.png.meta
File metadata and controls
2742 lines (2742 loc) · 63.4 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
fileFormatVersion: 2
guid: a4daef0e4486885449cab30d8ab24a45
TextureImporter:
internalIDToNameTable:
- first:
213: -3318188226485093758
second: Warrior_Sheet-Effect_0
- first:
213: -1938354968663525734
second: Warrior_Sheet-Effect_1
- first:
213: -4486162353907066099
second: Warrior_Sheet-Effect_2
- first:
213: -7105675749794256429
second: Warrior_Sheet-Effect_3
- first:
213: 932576740597027765
second: Warrior_Sheet-Effect_4
- first:
213: 8053934741035486310
second: Warrior_Sheet-Effect_5
- first:
213: 4312510042007804440
second: Warrior_Sheet-Effect_6
- first:
213: -3637831218265681369
second: Warrior_Sheet-Effect_7
- first:
213: 7890055846987212836
second: Warrior_Sheet-Effect_8
- first:
213: -1755831512471263806
second: Warrior_Sheet-Effect_9
- first:
213: -7157502479376193569
second: Warrior_Sheet-Effect_10
- first:
213: -6179113146597259875
second: Warrior_Sheet-Effect_11
- first:
213: -7195227389596926799
second: Warrior_Sheet-Effect_12
- first:
213: -7083850147136336687
second: Warrior_Sheet-Effect_13
- first:
213: -7879541775824577086
second: Warrior_Sheet-Effect_14
- first:
213: -6442761953431332421
second: Warrior_Sheet-Effect_15
- first:
213: -7823500323640422531
second: Warrior_Sheet-Effect_16
- first:
213: 3272844186751121127
second: Warrior_Sheet-Effect_17
- first:
213: 8629003983396144442
second: Warrior_Sheet-Effect_18
- first:
213: -6211648682532063752
second: Warrior_Sheet-Effect_19
- first:
213: 4804923502247703499
second: Warrior_Sheet-Effect_20
- first:
213: -6253208296904073923
second: Warrior_Sheet-Effect_21
- first:
213: -381468241496348146
second: Warrior_Sheet-Effect_22
- first:
213: -2164224423321271568
second: Warrior_Sheet-Effect_23
- first:
213: 7378919880078719499
second: Warrior_Sheet-Effect_24
- first:
213: -50406204238961237
second: Warrior_Sheet-Effect_25
- first:
213: 2833012263988642564
second: Warrior_Sheet-Effect_26
- first:
213: 1619122817114066791
second: Warrior_Sheet-Effect_27
- first:
213: -3728085103066422436
second: Warrior_Sheet-Effect_28
- first:
213: 5309330118571133426
second: Warrior_Sheet-Effect_29
- first:
213: 2138419889203400846
second: Warrior_Sheet-Effect_30
- first:
213: -3793288683446833867
second: Warrior_Sheet-Effect_31
- first:
213: 7809884292531708377
second: Warrior_Sheet-Effect_32
- first:
213: 8758733799639075308
second: Warrior_Sheet-Effect_33
- first:
213: 4273360486593703493
second: Warrior_Sheet-Effect_34
- first:
213: 8740081516789230483
second: Warrior_Sheet-Effect_35
- first:
213: 4245071895355107723
second: Warrior_Sheet-Effect_36
- first:
213: 8207571220096118977
second: Warrior_Sheet-Effect_37
- first:
213: 7910466545735013580
second: Warrior_Sheet-Effect_38
- first:
213: -4360246032673291897
second: Warrior_Sheet-Effect_39
- first:
213: -6130774247032492815
second: Warrior_Sheet-Effect_40
- first:
213: -7784280053648753441
second: Warrior_Sheet-Effect_41
- first:
213: -8105224185696963899
second: Warrior_Sheet-Effect_42
- first:
213: 565109345717033213
second: Warrior_Sheet-Effect_43
- first:
213: 3578844115799939244
second: Warrior_Sheet-Effect_44
- first:
213: -8346973252730123848
second: Warrior_Sheet-Effect_45
- first:
213: 3675700599212663255
second: Warrior_Sheet-Effect_46
- first:
213: -6199907869733816761
second: Warrior_Sheet-Effect_47
- first:
213: -9068822172998705990
second: Warrior_Sheet-Effect_48
- first:
213: 4778756267546337206
second: Warrior_Sheet-Effect_49
- first:
213: -5417263232604538632
second: Warrior_Sheet-Effect_50
- first:
213: -8179423753346160949
second: Warrior_Sheet-Effect_51
- first:
213: -1605837713619785204
second: Warrior_Sheet-Effect_52
- first:
213: 8858915403469927737
second: Warrior_Sheet-Effect_53
- first:
213: 5335032761891035287
second: Warrior_Sheet-Effect_54
- first:
213: 8562263981820643917
second: Warrior_Sheet-Effect_55
- first:
213: 7739141928638578783
second: Warrior_Sheet-Effect_56
- first:
213: -1765949524758486658
second: Warrior_Sheet-Effect_57
- first:
213: -1406694122392401829
second: Warrior_Sheet-Effect_58
- first:
213: 3914160388638673933
second: Warrior_Sheet-Effect_59
- first:
213: 709901728315876072
second: Warrior_Sheet-Effect_60
- first:
213: -5647377392427310024
second: Warrior_Sheet-Effect_61
- first:
213: -5110843521143403644
second: Warrior_Sheet-Effect_62
- first:
213: -8626763743991069669
second: Warrior_Sheet-Effect_63
- first:
213: -8669300221853394086
second: Warrior_Sheet-Effect_64
- first:
213: -8606690382453196554
second: Warrior_Sheet-Effect_65
- first:
213: -1003838945947052602
second: Warrior_Sheet-Effect_66
- first:
213: 1786230212584650817
second: Warrior_Sheet-Effect_67
- first:
213: 2896272659956946786
second: Warrior_Sheet-Effect_68
- first:
213: 2127461698910248042
second: Warrior_Sheet-Effect_69
- first:
213: 8874842850510428824
second: Warrior_Sheet-Effect_70
- first:
213: -1175057978942713942
second: Warrior_Sheet-Effect_71
- first:
213: 8396084745013482390
second: Warrior_Sheet-Effect_72
- first:
213: -5219189033981844993
second: Warrior_Sheet-Effect_73
- first:
213: 8048201136183370311
second: Warrior_Sheet-Effect_74
- first:
213: -5008098951225157325
second: Warrior_Sheet-Effect_75
- first:
213: 3500951761227251082
second: Warrior_Sheet-Effect_76
- first:
213: -848416997838638187
second: Warrior_Sheet-Effect_77
- first:
213: -1594377132886445991
second: Warrior_Sheet-Effect_78
- first:
213: -7939720171757009327
second: Warrior_Sheet-Effect_79
- first:
213: 4278741268874708782
second: Warrior_Sheet-Effect_80
- first:
213: -5551026827497223419
second: Warrior_Sheet-Effect_81
- first:
213: -2437237654950474820
second: Warrior_Sheet-Effect_82
- first:
213: -5853263684127566195
second: Warrior_Sheet-Effect_83
- first:
213: 806391716420303315
second: Warrior_Sheet-Effect_84
- first:
213: -7703501868747715773
second: Warrior_Sheet-Effect_85
- first:
213: -5742998253431553049
second: Warrior_Sheet-Effect_86
- first:
213: 1550331120443448429
second: Warrior_Sheet-Effect_87
- first:
213: -3380132617870049673
second: Warrior_Sheet-Effect_88
- first:
213: -6656010539272679822
second: Warrior_Sheet-Effect_89
- first:
213: -6761883565659206456
second: Warrior_Sheet-Effect_90
- first:
213: -2106872485169043283
second: Warrior_Sheet-Effect_91
- first:
213: -5691269341329648135
second: Warrior_Sheet-Effect_92
- first:
213: -8491356359149837760
second: Warrior_Sheet-Effect_93
- first:
213: -4479905760731915366
second: Warrior_Sheet-Effect_94
- first:
213: -7781806043594523482
second: Warrior_Sheet-Effect_95
- first:
213: -2493374651010981141
second: Warrior_Sheet-Effect_96
- first:
213: -7685447711378399537
second: Warrior_Sheet-Effect_97
- first:
213: 787512443710130017
second: Warrior_Sheet-Effect_98
- first:
213: 1667360231840587918
second: Warrior_Sheet-Effect_99
- first:
213: -8135003661806278683
second: Warrior_Sheet-Effect_100
- first:
213: 115473478628274326
second: Warrior_Sheet-Effect_101
- first:
213: -5072038167401593141
second: Warrior_Sheet-Effect_102
- first:
213: 1209288620382777180
second: Warrior_Sheet-Effect_103
- first:
213: 6288422297757579082
second: Warrior_Sheet-Effect_104
- first:
213: 8763952654032722262
second: Warrior_Sheet-Effect_105
- first:
213: 7710581811681040085
second: Warrior_Sheet-Effect_106
- first:
213: -4208995097174423316
second: Warrior_Sheet-Effect_107
- first:
213: 3452050695099243210
second: Warrior_Sheet-Effect_108
- first:
213: 2129506922609220151
second: Warrior_Sheet-Effect_109
- first:
213: -8959543402948288788
second: Warrior_Sheet-Effect_110
- first:
213: -3871296790637727015
second: Warrior_Sheet-Effect_111
- first:
213: 486981873210602661
second: Warrior_Sheet-Effect_112
- first:
213: 5596750852176582002
second: Warrior_Sheet-Effect_113
- first:
213: -147368431713602355
second: Warrior_Sheet-Effect_114
- first:
213: 6509321921613263128
second: Warrior_Sheet-Effect_115
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 0
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 16
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: Player_Graphics_0
rect:
serializedVersion: 2
x: 0
y: 704
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: a533f97f9b5720a4b897ed45b6c42e0f
internalID: -696404033
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_1
rect:
serializedVersion: 2
x: 69
y: 704
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 7714ec06b18ba9f498f8ddb7dbb289b0
internalID: 648376376
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_2
rect:
serializedVersion: 2
x: 138
y: 704
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 1bd0c8bdbe8d4f04badf1c87610113a7
internalID: -2121454553
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_3
rect:
serializedVersion: 2
x: 207
y: 704
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: fa0a8007deae82447b474551aeb6d94b
internalID: 1573533415
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_4
rect:
serializedVersion: 2
x: 276
y: 704
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: f0e8284803666384187f055b9811dc36
internalID: -1343358889
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_5
rect:
serializedVersion: 2
x: 345
y: 704
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: f55132ed4e273184e99e77159852655c
internalID: 490731096
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_6
rect:
serializedVersion: 2
x: 0
y: 660
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 403947185a5e47b479024ff7ac8c30cc
internalID: 1972339208
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_7
rect:
serializedVersion: 2
x: 69
y: 660
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 2d75857ad0816bf4086cefdcd31da44b
internalID: 338611074
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_8
rect:
serializedVersion: 2
x: 138
y: 660
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 1f5e7be7b068dc94dbdef24f94fb361e
internalID: -2030823058
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_9
rect:
serializedVersion: 2
x: 207
y: 660
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: c98cf5350dca8924baeef857546c7a99
internalID: 215983294
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_10
rect:
serializedVersion: 2
x: 276
y: 660
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: f7094c8acefd38f4196c2b6f8a714400
internalID: -1950336718
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_11
rect:
serializedVersion: 2
x: 345
y: 660
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 2f7a2055e4142dc4db9e171aaba1f7ec
internalID: 1039278799
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_12
rect:
serializedVersion: 2
x: 0
y: 616
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: e6a0ff920901c7a4aacf281b053edb88
internalID: -1540794940
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_13
rect:
serializedVersion: 2
x: 69
y: 616
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: c338770f144dfb64699c131f2c2546f6
internalID: -1681992783
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_14
rect:
serializedVersion: 2
x: 138
y: 616
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: f1eebc188c2cf7e4c98d7389f4e05e46
internalID: -1737303576
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_15
rect:
serializedVersion: 2
x: 207
y: 616
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 8b51b63e522377f42a2eb983ee105114
internalID: 1328300113
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_16
rect:
serializedVersion: 2
x: 276
y: 616
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 31ac6a9463e05534aa51bce01874c843
internalID: -515185606
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_17
rect:
serializedVersion: 2
x: 345
y: 616
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 8f3f5d9f90de845448957fa8e7253ab1
internalID: -1461204101
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_18
rect:
serializedVersion: 2
x: 0
y: 572
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: a05ccc45a52e8f6419e0d3961cbf7557
internalID: 1946106644
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_19
rect:
serializedVersion: 2
x: 69
y: 572
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 648823a3f0dc133458cbfe0b9ae8c851
internalID: 1473823041
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_20
rect:
serializedVersion: 2
x: 138
y: 572
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: c990bdb66d9cff44e918544dedc50917
internalID: 1752407202
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_21
rect:
serializedVersion: 2
x: 207
y: 572
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 983e8ed357dc2bb4cae665eabbc514df
internalID: 1504306695
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_22
rect:
serializedVersion: 2
x: 276
y: 572
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: d52d1b75781cfbf4bbdfc61c8cf31a9b
internalID: 590404401
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_23
rect:
serializedVersion: 2
x: 345
y: 572
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 9de79ad632589d04db40e8018315cf71
internalID: 1485758991
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_24
rect:
serializedVersion: 2
x: 0
y: 528
width: 69
height: 44
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 3b7eecd8c080613409c96eff5aa996a9
internalID: 2018000806
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Player_Graphics_25
rect:
serializedVersion: 2