Python Forum
[pyGame] My First Test, Error Fount !
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[pyGame] My First Test, Error Fount !
#2
It needs to be a sequence such as a tuple is what most people use
screen = pygame.display.set_mode((640, 480))
https://www.pygame.org/docs/ref/display.html#pygame.display.set_mode

Also make sure you add a clause to close for the little X on the windows via pygame.QUIT. And its better to loop events and close on such events, as well as put your screen fill and screen updates in the main game loop to update. An example below...

import pygame

screen = pygame.display.set_mode((800,600))
done = False

while not done:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            done = True
        elif event.type == pygame.KEYDOWN:
            if event.key == pygame.K_ESCAPE:
                done = True
        
    screen.fill((255,255,255))
    pygame.display.update()
Recommended Tutorials:
Reply


Messages In This Thread
RE: [pyGame] My First Test, Error Fount ! - by metulburr - Sep-24-2017, 01:57 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [PyGame] Pygame attribute error djwilson0495 3 4,017 Feb-18-2021, 03:34 PM
Last Post: michael1789
Big Grin Error installing Pygame-Zero dpa2007 1 3,212 Dec-26-2020, 03:50 PM
Last Post: MK_CodingSpace
  pygame error in my clicker game CrazyMakes 2 2,614 Apr-19-2020, 03:04 AM
Last Post: Windspar
  Error to install pygame skp 1 3,547 Apr-14-2020, 05:17 PM
Last Post: joe_momma
  installing pygame error pylab 1 4,306 Dec-31-2019, 05:44 PM
Last Post: pylab
  [PyGame] pygame image loading error BlueClaw 6 6,479 Dec-10-2019, 08:50 PM
Last Post: BlueClaw
  Problem with music - Pygame.error GaseBall 1 3,241 Nov-28-2019, 07:46 PM
Last Post: SheeppOSU
  Pygame to exe error Clunk_Head 0 3,016 Oct-19-2019, 01:34 PM
Last Post: Clunk_Head
  [PyGame] Error setting up pygame wazee 10 13,449 Jun-14-2018, 11:19 PM
Last Post: wazee
  Pygame: Help With JackRouter Error arrangereality 4 5,111 Aug-02-2017, 03:28 AM
Last Post: arrangereality

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020