aboutsummaryrefslogtreecommitdiff
path: root/background.lua
diff options
context:
space:
mode:
authorRibbon <ambiguousmachine@gmail.com>2022-02-02 19:32:53 -0800
committerRibbon <ambiguousmachine@gmail.com>2022-02-02 19:32:53 -0800
commit80f39c08a0b6195088d38888b71825203d038902 (patch)
tree2f13649b56e76fd397906241204c1af4676a97bd /background.lua
parentb23dbf913d15fca6e537898b406c7428948d8c21 (diff)
pallette swap
Diffstat (limited to 'background.lua')
-rw-r--r--background.lua15
1 files changed, 9 insertions, 6 deletions
diff --git a/background.lua b/background.lua
index 070b050..6965774 100644
--- a/background.lua
+++ b/background.lua
@@ -27,12 +27,15 @@ function addbgcircle(x, y, velx, r, color, pos)
end
function drawbg()
- cls(1)
- scrollingcircles(90, 50, 25, 16, 5)
- scrollingcircles(120, 100, 50, 32, 3)
+ cls(0)
- -- rectfill(0,0,128,16,13)
- -- rectfill(0,64,128,128,13)
- -- rectfill(0,80,128,128,2)
+ --clouds
+ scrollingcircles(-9, 24, 22, 22, 4)
+ scrollingcircles(-14, 40, 25, 20, 13)
+
+
+ --landscape
+ scrollingcircles(110, 72, 25, 20, 14)
+ scrollingcircles(135, 100, 30, 32, 15)
end