Display a background with a text

master
Olivier DOSSMANN 2017-06-14 21:01:40 +02:00
parent d702fdf0b6
commit 514baf9508
5 changed files with 22 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

8
conf.lua 100644
View File

@ -0,0 +1,8 @@
-- Set windows size and add a title
function love.conf(t)
t.title = "Menu displayer"
t.version = "0.10.2"
t.window.height = 800
t.window.width = 1024
t.window.resizable = true
end

2
main.lua 100755
View File

@ -0,0 +1,2 @@
require 'moonscript'
require 'menu'

12
menu.moon 100644
View File

@ -0,0 +1,12 @@
homeBackground = nil
-- Load elements. What did you expect?!
love.load = (arg) ->
homeBackground = love.graphics.newImage "assets/Pond_in_Proteus_1024-800.png"
-- Display Hello World
love.draw = ->
--love.graphics.print "Hello World!", 400, 300
love.graphics.draw homeBackground, 0, 0
love.graphics.print "Hello World!", love.graphics.getWidth() / 2, love.graphics.getHeight() / 2