Browse Source

Initial Commit

spesk1 4 years ago
commit
4c7f397e96
2 changed files with 27 additions and 0 deletions
  1. 3 0
      README.md
  2. 24 0
      color_noise.p8

+ 3 - 0
README.md

@@ -0,0 +1,3 @@
+# pico-8 projects
+
+Fooling around with basics of PICO-8 demos / games.

+ 24 - 0
color_noise.p8

@@ -0,0 +1,24 @@
+pico-8 cartridge // http://www.pico-8.com
+version 18
+__lua__
+
+cls()
+while 1 do
+for x=0,119 do
+  for y=0,119 do
+    r = rnd(9)
+    if (r > 8) then
+      pset(x,y,1+rnd(9))
+    end
+  end
+end
+flip()
+end
+
+__gfx__
+00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000