Created
May 30, 2025 18:14
-
-
Save Achie72/18857362d94ea711cddcebcc4b657a2a to your computer and use it in GitHub Desktop.
Grid play area in Daily Verse
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- borders around play area | |
line(8,7,87,7,1) | |
line(7,8,7,88,1) | |
line(88,8,88,88,1) | |
line(8,89,87,89,1) | |
-- fill pattern for grid | |
for i=1,10 do | |
fillp(▒) | |
--line((i*8)-1,8,(i*8),88,1) | |
local xpos = (i*8)-1 | |
-- vertical lines | |
line(xpos, 8, xpos, 88, 1) | |
-- horizontal lines | |
line(8, xpos, 88, xpos, 1) | |
fillp() | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Made for devlog about Daily Verse: https://ko-fi.com/post/Daily-Verse-2-PPJJGG-4--Gridwork-and-leftover-P5P71FR30J