2D-Mario-style-platformer icon indicating copy to clipboard operation
2D-Mario-style-platformer copied to clipboard

You can find the full tutorial on Youtube: https://youtu.be/KJpP85tnOKg

Results 3 2D-Mario-style-platformer issues
Sort by recently updated
recently updated
newest added

my main code was this: import pygame, sys # Pygame setup pygame.init() screen = pygame.display.set_mode((screen_width,screen_height)) clock = pygame.time.Clock() while True: for event in pygame.event.get(): if event.type == pygame.QUIT: pygame.quit() sys.exit()...

self.image = self.animations['idle'][self.frame_index] is giving me an error idk why

I keep getting this error code, any recommendations?