Advertisement
Guest User

Untitled

a guest
Feb 28th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class redDot
  2.   new: =>
  3.     @x=-1
  4.     @y=-1
  5.     @speed=20
  6.   update: =>
  7.     if @x==-1
  8.       @x=math.random 0, _A!.win.w
  9.       @y=math.random 0, _A!.win.h
  10.     @x=math.max(100,math.min(_A!.win.w-100,@x+math.random(-@speed,@speed)))
  11.     @y=math.max(100,math.min(_A!.win.h-100,@y+math.random(-@speed,@speed)))
  12.   render: =>
  13.     font\thin 0.5
  14.     font\color 1,0,0,0.8
  15.     font\smooth 1.5
  16.     font\renderGlyph @x,@y,2,"."
  17.     font\thin 0.7
  18.     font\color 1,0,0,1
  19.     font\smooth 0.1
  20.     font\renderGlyph @x,@y,2,"."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement