Advertisement
Guest User

Untitled

a guest
Feb 19th, 2014
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. local w,h=love.graphics.getDimensions()
  2. function love.draw()
  3. local t=math.random(0,255)
  4. for lx=1,w do
  5. for ly=1,h do
  6. t=((t*7)+math.random(0,255))/8
  7. love.graphics.setColor(t,t,t)
  8. love.graphics.point(lx,ly)
  9. end
  10. end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement