Search found 1 match

by Subedara
Sun Feb 09, 2025 12:22 pm
Forum: Support and Development
Topic: A little Help!
Replies: 1
Views: 1783

A little Help!

Hi Guys! Just wanted to ask how do I add a collider in this type of game? Code: function love.load() player = {} player.x = 200 player.y = 300 player.speedx = 5 player.speedy = 0 platform1 = {} platform1.x = 200 platform1.y = 500 platform1.width = 200 platform1.height = 50 end function love.update(...