I'm creating a game with pygame. Then and again I want to let the player type something - multiple lines, with the option to click anywhere into the text and edit from there.
You can think of it pretty much like the post/comment input window here on stackoverflow.
So far the only thing I have found are other modules, and most of the modules dont have the functionality, that I can click with my mouse between any two letters and edit/type from there.
The only thing I have found, that is able to do that is Tkinter widgets, but I cannot get them working inside my pygame window.
I found something where pygame was blitting onto a Tkinter frame, but since my entire game is based on pygame, I would not like to change everything in order to implement the textbox.
Does anyone know of a input textbox tool/module with the described functionalities, which works with pygame?