How to fill screen with one tile

i found out a way to replace the whole screen with black but the problem is that it doesn’t work when i’m on my ipad or phone. is there a more efficient way to make this happen? don’t worry about the “call”

If you're doing the fill temporarily, you could try a fill command in the draw event

on draw do
  if drawBlack==1 then
    fill "black" at 0,0,200,120
  end
end

on clear do
  drawBlack = 1
end
1 Like