grafX2/scripts/nitrofurano4.lua
Adrien Destugues 46ed0b5718 Script contest entries.
git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1296 416bcca6-2ee7-4201-b75f-2eb2f807beb1
2010-02-02 16:14:46 +00:00

12 lines
232 B
Lua

-- drawgrid8x8matchcolor.lua
w,h=getpicturesize();
c=matchcolor(0xFF,0x00,0x00)
for y=0,h-1,1 do
for x=0,w-1,8 do
putpicturepixel(x,y,c);
end;end
for y=0,h-1,8 do
for x=0,w-1,1 do
putpicturepixel(x,y,c);
end;end