aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--background.lua19
-rw-r--r--pico-bhell.p82
2 files changed, 6 insertions, 15 deletions
diff --git a/background.lua b/background.lua
index 48a2f57..dab354d 100644
--- a/background.lua
+++ b/background.lua
@@ -1,16 +1,7 @@
-circfill(6,6,4,8)
-circfill(12,12,4,2)
-circfill(32,32,4,4)
-circfill(64,64,4,6)
+cls(1)
+rectfill(0,0,128,16,13)
-
-circfill(6,12,4,8)
-circfill(12,18,4,2)
-circfill(32,38,4,4)
-circfill(64,66,4,6)
-
-
-
-circfill(-t()*100%256-64,145,64,2)
-circfill(-t()*100%230-64,160,80,2) \ No newline at end of file
+rectfill(0,64,128,128,13)
+rectfill(0,80,128,128,2)
+-- rectfill(0,100,128,128,2) \ No newline at end of file
diff --git a/pico-bhell.p8 b/pico-bhell.p8
index c227e30..0185ea4 100644
--- a/pico-bhell.p8
+++ b/pico-bhell.p8
@@ -2,6 +2,7 @@ pico-8 cartridge // http://www.pico-8.com
version 34
__lua__
#include objects.lua
+#include particles.lua
#include players.lua
#include enemies.lua
#include bullets.lua
@@ -11,7 +12,6 @@ function _update60()
end
function _draw()
-cls(0)
#include background.lua
#include draw.lua