Search found 3 matches
- Fri May 06, 2016 5:54 pm
- Forum: Support and Development
- Topic: Proobleem
- Replies: 5
- Views: 2268
Re: Proobleem
mKlLI94xx8k Please read the posting rules first. Help us help you. This is not how you do string concatenation in Lua: "Score = " + gscore This is how you do it: "Score = " .. gscore I recommend reading the Lua 5.1 reference manual , which might be a bit dry at first but it's a ...
- Fri May 06, 2016 4:17 pm
- Forum: Support and Development
- Topic: Proobleem
- Replies: 5
- Views: 2268
Re: Proobleem
At line 18 you are overwriting your love.draw function you defined at line 10. gscore = 0 function love.conf(t) t.window.width = 800 t.window.height = 600 end function love.load() krktr = love.graphics.newImage("krktr.png") end function love.draw() love.graphics.draw(krktr, 350, 250) love...
- Fri May 06, 2016 3:40 pm
- Forum: Support and Development
- Topic: Proobleem
- Replies: 5
- Views: 2268
Proobleem
Can someone tell me why it's not working?