Python Forum
[PyGame] pygame image loading error
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[PyGame] pygame image loading error
#1
This pygame code does not work. All I am trying to do is load images to test an animation.
import pygame
pygame.init()

win = pygame.display.set_mode((500, 500))
pygame.display.set_caption("pesto anchovy")
plright = [pygame.image.load('Player/pl_idle.png'), pygame.image.load('Player/pl_move.png')]

char = pygame.image.load('pl_idle.png')
run = True

while run :
    pygame.time.delay(100)
    win.blit(plright[1], (50, 50))

    pygame.display.update()
    pygame.time.delay(100)

    win.blit(plright[0], (50, 50))

    pygame.display.update()
please help.
Reply


Messages In This Thread
pygame image loading error - by BlueClaw - Dec-05-2019, 09:00 PM
RE: pygame image loading error - by michael1789 - Dec-05-2019, 09:27 PM
RE: pygame image loading error - by BlueClaw - Dec-05-2019, 10:18 PM
RE: pygame image loading error - by michael1789 - Dec-06-2019, 12:16 AM
RE: pygame image loading error - by BlueClaw - Dec-06-2019, 08:46 PM
RE: pygame image loading error - by nilamo - Dec-06-2019, 08:57 PM
RE: pygame image loading error - by BlueClaw - Dec-10-2019, 08:50 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Pygame Zero - no actor image toiling_away 2 1,864 Oct-14-2022, 12:16 AM
Last Post: toiling_away
  How to make an image move in relation to another in PYGAME CompleteNewb 1 2,338 Nov-10-2021, 03:38 PM
Last Post: metulburr
  [PyGame] Pygame attribute error djwilson0495 3 4,007 Feb-18-2021, 03:34 PM
Last Post: michael1789
Big Grin Error installing Pygame-Zero dpa2007 1 3,206 Dec-26-2020, 03:50 PM
Last Post: MK_CodingSpace
  [PyGame] Error: Couldn't open image DotGuy 2 7,264 May-18-2020, 06:19 PM
Last Post: DotGuy
  pygame error in my clicker game CrazyMakes 2 2,606 Apr-19-2020, 03:04 AM
Last Post: Windspar
  Error to install pygame skp 1 3,529 Apr-14-2020, 05:17 PM
Last Post: joe_momma
  open cv ->pygame: turn image into location Gamedeveloper 1 2,087 Jan-20-2020, 05:00 PM
Last Post: michael1789
  installing pygame error pylab 1 4,298 Dec-31-2019, 05:44 PM
Last Post: pylab
  Problem with music - Pygame.error GaseBall 1 3,232 Nov-28-2019, 07:46 PM
Last Post: SheeppOSU

Forum Jump:

User Panel Messages

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