#🔒 проблема с выводом предметов
19 messages · Page 1 of 1 (latest)
@autumn linden
Remember to:
- Ask your Python question, not if you can ask or if there's an expert who can help.
- Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
- Explain what you expect to happen and what actually happens.
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
!rule language
4. Use English to the best of your ability. Be polite if someone speaks English imperfectly.
I'm making a game on the PayGame library and I encountered an error where, when displaying the inventory, the item that is in it is first displayed, and only then the inventory itself, thereby overlapping the item
Pls help
@carmine zodiac
The last thing you blit will appear on top, so you need to make sure you blit the item after you blit the inventory grid.
this 👍
I did just that, but despite this, the item appears first, pay attention to the screen shot I provided
you only display it, when the key is pressed
instead have some kind of variable "show_inventory" that you toggle between True/False on key press... and render the inventory followed by the items depending on that variable only.
also, the key press should probably be listened for in the event loop. using the keys dict for that might trigger the same condition multiple times, depending on your framerate.
This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.