Search found 2 matches
- Mon Aug 08, 2022 5:44 pm
- Forum: Support and Development
- Topic: variables updated but not in love.graphics.rectangle
- Replies: 3
- Views: 1829
Re: variables updated but not in love.graphics.rectangle
Oh my God I'm so ashamed. Thanks a lot
- Fri Aug 05, 2022 8:37 am
- Forum: Support and Development
- Topic: variables updated but not in love.graphics.rectangle
- Replies: 3
- Views: 1829
variables updated but not in love.graphics.rectangle
I would like to stop the progression of the rectangle when it approach the border. My var have a good value but not the rectangle in the screen function love.load() x, y, w, h = 20, 20, 60, 20 width, height = love.window.getMode( ) end function love.update(dt) if w < width-x then w = w + 1 end if h ...