Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function love.load()
- font=love.graphics.newFont(48,"resources/festivefont.ttf") -- Load up a nice, festive font for the text to be printed in here.
- love.graphics.setFont(font)
- end
- function love.update(dt)
- random_x=math.random(0,love.graphics.getWidth())
- random_y=math.random(0,love.graphics.getHeight())
- end
- function love.draw()
- love.graphics.print(random_x,random_x,"Merry Christmas Notch :D")
- end
Advertisement
Add Comment
Please, Sign In to add comment