added indicator to touch

This commit is contained in:
Nicholas Dyer 2023-02-19 20:55:09 -05:00
parent 6602594267
commit 1d7947803b
No known key found for this signature in database
GPG Key ID: E4E6388793FA2105

View File

@ -92,6 +92,8 @@ def main(windowed_mode):
speed_coeff = math.cos((mouse_angle - (0.5 * PI)) - diff_angle)
final_speed = movement_speed * speed_coeff
dial.move_dial(final_speed / -3000.0)
pygame.draw.circle(window, (0, 255, 0), (10, 10), 15)
pygame.display.flip()
pygame.quit()