diff options
author | Aki <nthirtyone@gmail.com> | 2016-08-01 17:14:40 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2016-08-01 17:14:40 +0200 |
commit | e5417a28fe23b8e49e26b7fd8633ee261a386330 (patch) | |
tree | a49696b9059ca37df65ef73e718b3d1a6127d974 | |
parent | e310597504114a13c36a5a47987172ddc53056b9 (diff) | |
download | roflnauts-e5417a28fe23b8e49e26b7fd8633ee261a386330.zip roflnauts-e5417a28fe23b8e49e26b7fd8633ee261a386330.tar.gz roflnauts-e5417a28fe23b8e49e26b7fd8633ee261a386330.tar.bz2 |
Default platforms moved to proper folder
-rw-r--r-- | assets/platforms/default-big.png (renamed from assets/platform_big.png) | bin | 2447 -> 2447 bytes | |||
-rw-r--r-- | assets/platforms/default-side.png (renamed from assets/platform_small.png) | bin | 664 -> 664 bytes | |||
-rw-r--r-- | assets/platforms/default-top.png (renamed from assets/platform_top.png) | bin | 579 -> 579 bytes | |||
-rw-r--r-- | maps/default.lua | 8 |
4 files changed, 4 insertions, 4 deletions
diff --git a/assets/platform_big.png b/assets/platforms/default-big.png Binary files differindex 830e41d..830e41d 100644 --- a/assets/platform_big.png +++ b/assets/platforms/default-big.png diff --git a/assets/platform_small.png b/assets/platforms/default-side.png Binary files differindex 111da11..111da11 100644 --- a/assets/platform_small.png +++ b/assets/platforms/default-side.png diff --git a/assets/platform_top.png b/assets/platforms/default-top.png Binary files differindex 3e1a342..3e1a342 100644 --- a/assets/platform_top.png +++ b/assets/platforms/default-top.png diff --git a/maps/default.lua b/maps/default.lua index 4dcc1b5..5c437db 100644 --- a/maps/default.lua +++ b/maps/default.lua @@ -21,25 +21,25 @@ return { x = -91, y = 0, shape = {0,1, 181,1, 181,10, 96,76, 86,76, 0,10}, - sprite = "assets/platform_big.png" + sprite = "assets/platforms/default-big.png" }, { x = 114, y = 50, shape = {0,1, 52,1, 52,30, 0,30}, - sprite = "assets/platform_small.png" + sprite = "assets/platforms/default-side.png" }, { x = -166, y = 50, shape = {0,1, 52,1, 52,30, 0,30}, - sprite = "assets/platform_small.png" + sprite = "assets/platforms/default-side.png" }, { x = -17, y = -50, shape = {0,1, 34,1, 34,16, 0,16}, - sprite = "assets/platform_top.png" + sprite = "assets/platform/default-top.png" } }, decorations = {} |