Комментарии:
Sir can you make tutorial how to create 2d minecraft in python pygame
ОтветитьSir can you make tutorial how to add punch block and break block in python pygame
Ответитьthank you ,,,,that's Great but I want to ask about (platformer game) ?
Ответитьvery nice men! thanks a lot
ОтветитьCan you do a tutorial for a game who connect to tiktok live comments,donations,followers,likes and the game react to all descbribe,thank you !
ОтветитьBro your channel is a hidden gem, awesome content
ОтветитьNew video?
Ответитьwhen i press back it quits the application are u able to help please
ОтветитьVery nice tutorial I'm kinda new I followed some of your game tutorials and they are amazing I learnt so much and I also had a question what os do you use (i know its windows but just asking )
ОтветитьThanks!!!
ОтветитьWhat happened to your website?
When I tried to access it, it says "Account suspended" even though I haven't done anything.
keep getting an error "unident doesnt match with any other indentation level"
ОтветитьMan you're so damn good at explanation for real and only having 13k it's very undervalued :(
ОтветитьHey, I enjoy watching your videos! Are you in audea btw..
Ответитьthanks for the good video!👍
ОтветитьI dont get the ability to close the window even after putting in the exact same code as yourself. My window just stays locked open :/
ОтветитьThank you very much for this tutorial, I was having a lot of trouble with this part. Clean and straight to the point.
ОтветитьHi Coding Russ, have been watching most of your tutorials. Right now I am trying to create a function to pause the game inside Pygame. Do you have a video on it or is there any way you can guide me on it? Much appreciated for all your help.
ОтветитьAwesome video. I have a little problem where my submenu buttons are in the exact same place as the menu button. When I click a menu button, the program goes through and also clicks the submenu button. Is there a way I can delay the click or something? I noticed that in this video, your buttons are not in the same place so that problem may have not come up.
Edit: I added a "clicked" check and it worked.
Hi there. Thanks a lot
I'm having trouble creating various menus with Pygame using your method, since some of the menu buttons, although on different menu screens, share the same coordinates. So once one gets pressed, the next screen detects the button still being pressed and automatically triggers as well.
thanks
ОтветитьWait... So I don't even really need Tkinter for buttons? the first thing I noticed was no import for Tkinter. Wish I could find the tutorial I watched a few days ago and point the guy in this direction... I like the way you do buttons.
Ответитьthe font.render just gives me an error saying "'str' object has no attribute 'render'"
ОтветитьFor anyone having a problem such as buttons on the same coordinates in submenus gets automatically clicked, make a variable: clicked = False and set it to True whenever a button is clicked and make buttons clickable only if clicked is False. Set clicked back to False after the pygame.MOUSEBUTTONUP is triggered. For example:
if button.draw(screen) and not clicked: # if button.draw(screen) and clicked == False:
do_something()
clicked = True
for event in pygame.event.get():
if event.type == pygame.MOUSEBUTTONUP:
clicked = False
where did you get the images from??
Ответитьself.image.get_rect()
ОтветитьGreat video!
ОтветитьIf you alrready have a game for the code written, where would you add this code ? Thank u
ОтветитьHi, I been trying to do this menu, but I got a black screen for some reason
Ответитьnice tutorial i implement this paused menu to the tower defence game
Ответитьhow did you get that bar on the side of your screen on the python i have got its just a window with no menu bar at top all it says is the path i run it from
Ответитьim here because when i tried this, my menu don't adjust to fullscreen, the rest is just blank white, i hope its explained in the video
ОтветитьVideo muito esclarecedor! Obrigado amiigo!
Ответитьhow and where should i put my game code? please help me
ОтветитьHey, how about a character select menu? How can i make that?
Ответить👏
ОтветитьThis is really helpful but i keep running into a problem where it says:
resume_button = button.Button(304, 125, resume_img, 1)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: Button.__init__() missing 2 required positional arguments: 'size_x' and 'size_y'
Any fixes?
Ma dude you are an angel that helped me in my dark hour <3
Ответитьhey! i wanted to bind "pause game" to escape instead of space because i use space to jump in my game, but escape is also the key that is used to exit the programme, atleast in vscode. so when i press escape, the menu appears for a single frame and then the game quits, do you know of a workaround to this?
ОтветитьNOTHING WORKS IN ANY OF THESE VIDEOS
ОтветитьHey man, I might be late but I got something to ask. The else statement on game pause doesnt disappear on mine. You know any fixes?
Ответитьhey can u tell me that how did you save that images? i am on IDLE on MacBook so please explain me how!
Ответитьthanks, even if two years passed this tutorial helps me
Ответитьwhat program do you use that you have maps with images? I write on IDLE? I don't see this function or something. This is day 2 in python for me...
Ответить