Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. blanc = Color.create(255,255,255)
  2. y_ligne = 135
  3.  
  4.  
  5. while true do
  6.      g2d.Clear()
  7.      
  8.      g2d.BeginLines(g2d.STRIP)
  9.          g2d.SetColor(blanc)
  10.          g2d.SetCoordXY(60, 120)
  11.          g2d.Add()
  12.                
  13.          g2d.SetCoordXYRelative(60+15, y_ligne)
  14.          g2d.Add()
  15.      g2d.End()
  16.      
  17.      g2d.Flip()
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement