Compare commits
99 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0886afd1db | |||
| fa6d73f7f4 | |||
| 38c18ae676 | |||
| 2cbe16dcba | |||
| 22c4724125 | |||
| b8980d1b0b | |||
| db719245a3 | |||
| 591932a928 | |||
| e6b3d5ea13 | |||
| a57a19ca4a | |||
| 6bdce7ac68 | |||
| 2e65ec722b | |||
| a1c2df27c9 | |||
| 681e39644d | |||
| 2921952ea5 | |||
| 852e734cd1 | |||
| 39c7fbc3b9 | |||
| 053992de98 | |||
| 5be93dd27f | |||
| 585443418c | |||
| 383d8423f1 | |||
| efeed945e7 | |||
| d5dfc952c2 | |||
| 7288792940 | |||
| 8160ddc14a | |||
| ddd54fdd3f | |||
| 07a9ba5b87 | |||
| 5c68006cb5 | |||
| 986d7fd04a | |||
| 4d462e6564 | |||
| 3f3f50a583 | |||
| cf3116bc46 | |||
| 3b159feef0 | |||
| b1411b04f5 | |||
| 365639bc95 | |||
| 91412889c3 | |||
| bb9228d672 | |||
| 089f0276c8 | |||
| 0850b17c90 | |||
| 8a899251ea | |||
| f6a233546e | |||
| 41d72d48d5 | |||
| 6f621987c5 | |||
| 8fc40d07f7 | |||
| 532bf7deac | |||
| 15c2e27459 | |||
| a3ac1a94ca | |||
| 5bde75fc2f | |||
| f5af6d9425 | |||
| b67f2eb015 | |||
| 47f5639578 | |||
| 0c35ae3b72 | |||
| b88df7c9e6 | |||
| dea16e0004 | |||
| 8a4d2a541d | |||
| 66840ebf11 | |||
| a5d79a0323 | |||
| 86b7b5e122 | |||
| b63fe30253 | |||
| b44869341c | |||
| f3aeed9428 | |||
| bfb2610f6f | |||
| 03fedbe3b0 | |||
| e7cc5b49ea | |||
| 13046d5dcf | |||
| 1b5bd667ac | |||
| b117223756 | |||
| 5a74a99fcb | |||
| e1c302e0fc | |||
| d76958d9bb | |||
| c2882da40b | |||
| 93bf8cecb7 | |||
| 06cb1e748d | |||
| 8125e47d17 | |||
| e2bb20052c | |||
| a0c60ec2e5 | |||
| 8e7b807fa8 | |||
| 9ea184946d | |||
| 3b3b807c5a | |||
| 0064bebcc3 | |||
| bc2cc28e76 | |||
| 2967ccdae7 | |||
| 8ad496b510 | |||
| d53f2695a0 | |||
| a3d0eccbb9 | |||
| d5e5d142a4 | |||
| 2ff12f7db1 | |||
| 7776d61747 | |||
| 86ae67eff7 | |||
| 464d8194d4 | |||
| b8fe11fb63 | |||
| 762071a0ae | |||
| bc5ceeef1d | |||
| 0684a0f0c1 | |||
| 415080ba8f | |||
| 6b7769ca3c | |||
| c5aa28d738 | |||
| 561f957bca | |||
| f9eb36f529 |
3
.gitignore
vendored
@@ -1,7 +1,6 @@
|
||||
.vscode
|
||||
bin
|
||||
data/config.bin
|
||||
data/score.bin
|
||||
*config.txt
|
||||
dll
|
||||
docs
|
||||
icon
|
||||
|
||||
14
Makefile
@@ -1,12 +1,18 @@
|
||||
executable = jaildoctors_dilemma
|
||||
source = source/*.cpp source/common/*.cpp
|
||||
|
||||
windows:
|
||||
mkdir bin
|
||||
g++ -std=c++11 -Wall -O2 -lSDL2 -lmingw32 -lSDL2main -mwindows source/*.cpp -o bin/$(executable).exe
|
||||
@echo off
|
||||
if not exist bin\ (mkdir bin)
|
||||
if not exist data\config (mkdir data\config)
|
||||
g++ $(source) -std=c++11 -Wall -O2 -lmingw32 -lSDL2main -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -static-libstdc++ -Wl,-subsystem,windows -o bin/$(executable).exe
|
||||
strip -s -R .comment -R .gnu.version bin/$(executable).exe --strip-unneeded
|
||||
macos:
|
||||
mkdir -p bin
|
||||
g++ -std=c++11 -Wall -O2 source/*.cpp -o bin/$(executable)_macos -lSDL2
|
||||
mkdir -p data/config
|
||||
g++ $(source) -std=c++11 -Wall -O2 -lSDL2 -ffunction-sections -fdata-sections -o bin/$(executable)_macos
|
||||
linux:
|
||||
mkdir -p bin
|
||||
g++ source/*.cpp -std=c++11 -Os -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -o bin/$(executable)_linux
|
||||
mkdir -p data/config
|
||||
g++ $(source) -std=c++11 -Wall -Os -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -o bin/$(executable)_linux
|
||||
strip -s -R .comment -R .gnu.version bin/$(executable)_linux --strip-unneeded
|
||||
9
data/enemies/abad.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=8
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2
|
||||
[/animation]
|
||||
BIN
data/enemies/abad.png
Normal file
|
After Width: | Height: | Size: 267 B |
9
data/enemies/amstrad_character_set.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=8
|
||||
frameHeight=8
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,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
|
||||
[/animation]
|
||||
BIN
data/enemies/amstrad_character_set.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
9
data/enemies/arounder_fly.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=7
|
||||
frameHeight=7
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=10
|
||||
loop=0
|
||||
frames=0
|
||||
[/animation]
|
||||
BIN
data/enemies/arounder_fly.png
Normal file
|
After Width: | Height: | Size: 122 B |
9
data/enemies/arounder_stop.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=7
|
||||
frameHeight=8
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=10
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/arounder_stop.png
Normal file
|
After Width: | Height: | Size: 139 B |
9
data/enemies/arounder_walk.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=5
|
||||
frameHeight=8
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1
|
||||
[/animation]
|
||||
BIN
data/enemies/arounder_walk.png
Normal file
|
After Width: | Height: | Size: 129 B |
9
data/enemies/arounders_door.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3,3,3,3,3,3,3,3,3,3,3,3,2,1,0,0,0
|
||||
[/animation]
|
||||
BIN
data/enemies/arounders_door.png
Normal file
|
After Width: | Height: | Size: 250 B |
9
data/enemies/arounders_machine.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/arounders_machine.png
Normal file
|
After Width: | Height: | Size: 234 B |
9
data/enemies/bat.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=9
|
||||
frameHeight=7
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=3
|
||||
loop=0
|
||||
frames=0,1
|
||||
[/animation]
|
||||
BIN
data/enemies/bat.png
Normal file
|
After Width: | Height: | Size: 134 B |
9
data/enemies/batman.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=8
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/batman.png
Normal file
|
After Width: | Height: | Size: 241 B |
9
data/enemies/bin.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=8
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=10
|
||||
loop=0
|
||||
frames=0,1,2,3,4
|
||||
[/animation]
|
||||
BIN
data/enemies/bin.png
Normal file
|
After Width: | Height: | Size: 174 B |
9
data/enemies/bird.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/bird.png
Normal file
|
After Width: | Height: | Size: 306 B |
9
data/enemies/breakout.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=24
|
||||
frameHeight=32
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5,6,7,6,5,4,3,2,1
|
||||
[/animation]
|
||||
BIN
data/enemies/breakout.png
Normal file
|
After Width: | Height: | Size: 180 B |
9
data/enemies/bry.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=10
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5
|
||||
[/animation]
|
||||
BIN
data/enemies/bry.png
Normal file
|
After Width: | Height: | Size: 253 B |
@@ -1,6 +1,5 @@
|
||||
frames_per_row=4
|
||||
frame_width=8
|
||||
frame_height=16
|
||||
frameWidth=8
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
|
Before Width: | Height: | Size: 208 B After Width: | Height: | Size: 208 B |
9
data/enemies/code.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/code.png
Normal file
|
After Width: | Height: | Size: 319 B |
9
data/enemies/demon.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/demon.png
Normal file
|
After Width: | Height: | Size: 329 B |
9
data/enemies/dimallas.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/dimallas.png
Normal file
|
After Width: | Height: | Size: 298 B |
9
data/enemies/dimallas_v.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/dimallas_v.png
Normal file
|
After Width: | Height: | Size: 285 B |
@@ -1,6 +1,5 @@
|
||||
frames_per_row=4
|
||||
frame_width=16
|
||||
frame_height=16
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
|
Before Width: | Height: | Size: 271 B After Width: | Height: | Size: 271 B |
9
data/enemies/heavy.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/heavy.png
Normal file
|
After Width: | Height: | Size: 306 B |
9
data/enemies/jailbattle_alien.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=13
|
||||
frameHeight=15
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1
|
||||
[/animation]
|
||||
BIN
data/enemies/jailbattle_alien.png
Normal file
|
After Width: | Height: | Size: 205 B |
9
data/enemies/jailbattle_human.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=11
|
||||
frameHeight=13
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1
|
||||
[/animation]
|
||||
BIN
data/enemies/jailbattle_human.png
Normal file
|
After Width: | Height: | Size: 189 B |
9
data/enemies/jailer.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/jailer.png
Normal file
|
After Width: | Height: | Size: 351 B |
9
data/enemies/jailer2.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,1,3,5,1,3,5,1,3,5
|
||||
[/animation]
|
||||
BIN
data/enemies/jailer2.png
Normal file
|
After Width: | Height: | Size: 323 B |
9
data/enemies/jailer3.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/jailer3.png
Normal file
|
After Width: | Height: | Size: 378 B |
9
data/enemies/lamp.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1
|
||||
[/animation]
|
||||
BIN
data/enemies/lamp.png
Normal file
|
After Width: | Height: | Size: 160 B |
9
data/enemies/macaronni_ted.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=32
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/macaronni_ted.png
Normal file
|
After Width: | Height: | Size: 414 B |
9
data/enemies/matatunos.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5
|
||||
[/animation]
|
||||
BIN
data/enemies/matatunos.png
Normal file
|
After Width: | Height: | Size: 332 B |
9
data/enemies/mummy.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=8
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=12
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/mummy.png
Normal file
|
After Width: | Height: | Size: 228 B |
@@ -1,6 +1,5 @@
|
||||
frames_per_row=4
|
||||
frame_width=16
|
||||
frame_height=16
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
|
Before Width: | Height: | Size: 239 B After Width: | Height: | Size: 239 B |
9
data/enemies/printer.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5
|
||||
[/animation]
|
||||
BIN
data/enemies/printer.png
Normal file
|
After Width: | Height: | Size: 310 B |
9
data/enemies/qvoid.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5,6,7
|
||||
[/animation]
|
||||
BIN
data/enemies/qvoid.png
Normal file
|
After Width: | Height: | Size: 441 B |
9
data/enemies/sam.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=5
|
||||
loop=0
|
||||
frames=0,1
|
||||
[/animation]
|
||||
BIN
data/enemies/sam.png
Normal file
|
After Width: | Height: | Size: 205 B |
@@ -1,6 +1,5 @@
|
||||
frames_per_row=4
|
||||
frame_width=16
|
||||
frame_height=16
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
|
Before Width: | Height: | Size: 241 B After Width: | Height: | Size: 241 B |
9
data/enemies/spider.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=8
|
||||
frameHeight=8
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/spider.png
Normal file
|
After Width: | Height: | Size: 177 B |
9
data/enemies/tuno.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3,3,2,1,0
|
||||
[/animation]
|
||||
BIN
data/enemies/tuno.png
Normal file
|
After Width: | Height: | Size: 317 B |
9
data/enemies/tv.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/tv.png
Normal file
|
After Width: | Height: | Size: 300 B |
9
data/enemies/tv_panel.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=24
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
BIN
data/enemies/tv_panel.png
Normal file
|
After Width: | Height: | Size: 413 B |
@@ -1,6 +1,5 @@
|
||||
frames_per_row=4
|
||||
frame_width=8
|
||||
frame_height=8
|
||||
frameWidth=8
|
||||
frameHeight=8
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
|
Before Width: | Height: | Size: 149 B After Width: | Height: | Size: 149 B |
9
data/enemies/wave_v.ani
Normal file
@@ -0,0 +1,9 @@
|
||||
frameWidth=8
|
||||
frameHeight=8
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5,4,3,2,1
|
||||
[/animation]
|
||||
BIN
data/enemies/wave_v.png
Normal file
|
After Width: | Height: | Size: 163 B |
|
Before Width: | Height: | Size: 689 B After Width: | Height: | Size: 689 B |
BIN
data/font/smb2.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
data/items/items.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 717 B After Width: | Height: | Size: 717 B |
|
Before Width: | Height: | Size: 690 B After Width: | Height: | Size: 690 B |
|
Before Width: | Height: | Size: 561 B After Width: | Height: | Size: 561 B |
@@ -1,6 +1,5 @@
|
||||
frames_per_row=4
|
||||
frame_width=8
|
||||
frame_height=16
|
||||
frameWidth=8
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=stand
|
||||
|
Before Width: | Height: | Size: 219 B After Width: | Height: | Size: 219 B |
@@ -1,6 +1,5 @@
|
||||
frames_per_row=8
|
||||
frame_width=8
|
||||
frame_height=16
|
||||
frameWidth=8
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=stand
|
||||
|
Before Width: | Height: | Size: 314 B After Width: | Height: | Size: 314 B |