2D-Mario-style-platformer
2D-Mario-style-platformer copied to clipboard
You can find the full tutorial on Youtube: https://youtu.be/KJpP85tnOKg
probloms
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?