Turn rect values in to maps
authorJC <dev@jacobcasper.com>
Mon, 31 Jul 2023 00:39:49 +0000 (19:39 -0500)
committerJC <dev@jacobcasper.com>
Mon, 31 Jul 2023 00:39:49 +0000 (19:39 -0500)
This will be useful later for determining live/deadness

source/main.lua

index 8bda86b..e4c3d58 100644 (file)
@@ -5,7 +5,8 @@ local rects = {}
 for i=1, 10 do
     rects[i] = {}
       for j=1, 10 do
-          rects[i][j] = pd.geometry.rect.new(32 * (i-1), 32 * (j-1), 32, 32)
+          r = pd.geometry.rect.new(32 * (i-1), 32 * (j-1), 32, 32)
+          rects[i][j] = { rect = r }
       end
 end
 
@@ -13,7 +14,7 @@ end
 function playdate.update()
     for i,row in ipairs(rects) do
         for j,r in ipairs(row) do
-            gfx.drawRect(r)
+            gfx.drawRect(r.rect)
         end
     end
     if playdate.buttonJustPressed("a") then