I want to be able to change the keys of a game and I am using tkinter to recieve the keys as chars:
key = 'a'
I want to convert those chars to pygame event variables like this:
pygame.K_a
and keep them in a dictionary that i have already prepared.
I have seen ways to do the opposite but i have not seen a way to do this.
I want to use the arrow keys and special characters, can i do it? or do i need to manually set up keywords?