I'm currently trying to create brick breaker using love2d but the problem is whenever is used math.random() to generate random bricks the love application keeps running it multiple times and the brick moves constantly.
EDIT: So I want to generate bricks at particular column but the rows should be randomly selected. My basic idea was to do math.random(2) == 1 then drawing bricks using for loop but the problem is that it gets updated/drawn at every second and the bricks keeps on flickering/moving. I just want to randomly(only randomly select the y co-ordinate my x co-ordinate is fixed) to draw it once when you execute the code but its keep on flickering
The issue I'm facing - https://youtu.be/AJB5vH7yfHc
My code
for y = 0, VIRTUAL_HEIGHT- 4, 10 do
if math.random(2) == 1 then
love.graphics.rectangle('line', VIRTUAL_WIDTH - 10, y, 5, 10)
end
end
Alright, after you edited the question, this sounds more like what you're talking about. Just take out that #column loop, and set it to create cells on the last column.
love.load()
love.draw()