Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 663 Bytes

File metadata and controls

17 lines (11 loc) · 663 Bytes

LearningPyGame

This repository contains a few different python files representing me working through how to implement Pygame in a 2D side scroller.

Dependencies

This code base uses Python 3.6 and Pygame 1.9.4 https://www.pygame.org/

Files

gameCharacter.py

This is a module that contains all of the common attributes and functions that a player object or NPC have in common.

sprite_enemies.py

This is the main game module. It contains the code for getting player input, drawing and moving the background and loading enemies.

experiments folder

Contains older versions of the game where I test a different bit of Pygame functionality.