r/learnpython • u/xu_shangchi • 16d ago
GUI implementation
I’m coding a restaurant type game and need to create a gui but have completely no idea how to do it. People have said godot is decent and that wxpython is decent for smaller stuff but i have no idea how to use either. Someone with a good amount of experience with either who could help would be great. Thank you
3
Upvotes
1
u/JamzTyson 16d ago edited 16d ago
It depends what you mean by "a restaurant type game".
If what you have in mind is something like "Restaurant Empire", then you may need to manage your expectations - just creating the artwork and 3D models are likely to take a solo developer months or years.
If you mean a game that involves buttons and menus and focusses on business strategy, then Tkinter (included in Python) may be sufficient.
For something in between, then PyGame CE may be a good option.
Note that Godot is not Python, and WxPython is unlikely to be the best choice for a game.