weird physics bug when a ball hits the left wall
for some reason when a ball hits the left wall it gains momentum i tried using "* -1" instead of "-" heres the code y = y + vel_y x = x + vel_x vel_y = vel_y + 1 if y >= 900: y = 900 vel_y = -(vel_y – 10) if x >= 900:… Read More weird physics bug when a ball hits the left wall