Search found 3 matches

by Beau192
Wed Dec 20, 2017 9:57 pm
Forum: Support and Development
Topic: Moving blocks help
Replies: 2
Views: 2024

Re: Moving blocks help

Thanks for the help, but unfortunately it didn't work. I ended up fixing my own mistake. Me, as a beginner, thought it was more complex to do this. I did this to fix it: x = x + 5 Then, I added a sensor to move the block back to the top when it hit the bottom. I also finished the project, but I'm st...
by Beau192
Wed Dec 20, 2017 9:50 pm
Forum: Support and Development
Topic: Blurry Text????
Replies: 1
Views: 1870

Blurry Text????

I'm trying to print your score for a game, but it ends up super blurry. Code: love.graphics.print("Your score is " .. score, 550, 150, 0, 3, 3) Can't seem to figure this one out. I read the wiki and it said: "Text may appear blurry if it's rendered at non-integer pixel locations."...
by Beau192
Wed Dec 20, 2017 2:16 am
Forum: Support and Development
Topic: Moving blocks help
Replies: 2
Views: 2024

Moving blocks help

function love.load() ranposX = love.math.random(0, 500) x = 250 y = 400 movey = 0 end function love.update(dt) if love.keyboard.isDown("right") then x = x + 2 end if love.keyboard.isDown("left") then x = x - 2 end if love.keyboard.isDown("left") and love.keyboard.isDow...