Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

so I am using Pygame .Whenever I run my game the screen does not renders anything and it seems black however for debugging purpose I use print statement and I find out that all functions are working ,so what's the problem with my code?

question from:https://stackoverflow.com/questions/65599632/is-there-any-solution-for-pygame-black-screen-error

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

Since I don't know how you coded the program, I cannot be sure of the exact problem that is causing your program to display a black screen. However, I suspect it might be one of the following:

  1. Not having a game loop.
  2. Not calling pygame.display.update() in your game loop.
  3. Not filling the screen with any color, for example, screen.fill(background_color).

Hope this is helpful!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...