Advertisement
Guest User

Untitled

a guest
Jun 19th, 2015
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. for j = -0.75,0.25,0.025 do
  2. local xPos=1;
  3. for i = -1,1,0.012 do
  4. local d = camera.distance(i, 0-j)
  5. local a = 1
  6. if d > 0 then a = 2 + (8 - math.min(8, (d/1.2))) end
  7.  
  8. gpu.fill(2,2,5,5,"x")
  9. xPos=xPos+1;
  10. --term.write(string.sub(array, a, a)) -- works
  11. --print("test"); prints fine.
  12. end
  13. yp=yp+1
  14. --term.setCursor(1,yp) -- works
  15. end
  16. end
  17.  
  18. event.timer(0.2,camera_draw , math.huge);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement