├── .gitignore ├── color_change.py ├── cursors ├── cursor.py ├── cursor_images.png └── example.py ├── drag_text.py ├── eight_dir_move.py ├── eight_dir_movement_adjusted.py ├── four_direction_movement ├── eight_dir_move_four_dir_anim.py ├── four_dir_anim.py ├── four_dir_mask.py ├── four_dir_naive.py ├── four_dir_obstacles.py ├── four_dir_obstacles_test.py ├── shader.png └── skelly.png ├── platforming ├── base_face.png ├── fall_mask.py ├── fall_rect.py ├── fall_rotate.py ├── just_face.png ├── moving_platforms.py ├── moving_platforms_ease.py ├── shader.png └── smallface.png ├── punch_a_hole ├── frac.jpg └── punch.py ├── readme.txt ├── resizable ├── resizable_aspect_ratio.py └── resizable_screen.py ├── rotation_animation ├── asteroid_simple.png └── rotate_animate.py ├── tank_turret ├── tank.py ├── turret.png ├── turret_gamepad.py └── turret_mouse.py └── topdown_scrolling ├── pond.png ├── scrolling.py ├── scrolling_mouse.py └── smallface.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /color_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/color_change.py -------------------------------------------------------------------------------- /cursors/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/cursors/cursor.py -------------------------------------------------------------------------------- /cursors/cursor_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/cursors/cursor_images.png -------------------------------------------------------------------------------- /cursors/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/cursors/example.py -------------------------------------------------------------------------------- /drag_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/drag_text.py -------------------------------------------------------------------------------- /eight_dir_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/eight_dir_move.py -------------------------------------------------------------------------------- /eight_dir_movement_adjusted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/eight_dir_movement_adjusted.py -------------------------------------------------------------------------------- /four_direction_movement/eight_dir_move_four_dir_anim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/four_direction_movement/eight_dir_move_four_dir_anim.py -------------------------------------------------------------------------------- /four_direction_movement/four_dir_anim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/four_direction_movement/four_dir_anim.py -------------------------------------------------------------------------------- /four_direction_movement/four_dir_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/four_direction_movement/four_dir_mask.py -------------------------------------------------------------------------------- /four_direction_movement/four_dir_naive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/four_direction_movement/four_dir_naive.py -------------------------------------------------------------------------------- /four_direction_movement/four_dir_obstacles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/four_direction_movement/four_dir_obstacles.py -------------------------------------------------------------------------------- /four_direction_movement/four_dir_obstacles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/four_direction_movement/four_dir_obstacles_test.py -------------------------------------------------------------------------------- /four_direction_movement/shader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/four_direction_movement/shader.png -------------------------------------------------------------------------------- /four_direction_movement/skelly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/four_direction_movement/skelly.png -------------------------------------------------------------------------------- /platforming/base_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/platforming/base_face.png -------------------------------------------------------------------------------- /platforming/fall_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/platforming/fall_mask.py -------------------------------------------------------------------------------- /platforming/fall_rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/platforming/fall_rect.py -------------------------------------------------------------------------------- /platforming/fall_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/platforming/fall_rotate.py -------------------------------------------------------------------------------- /platforming/just_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/platforming/just_face.png -------------------------------------------------------------------------------- /platforming/moving_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/platforming/moving_platforms.py -------------------------------------------------------------------------------- /platforming/moving_platforms_ease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/platforming/moving_platforms_ease.py -------------------------------------------------------------------------------- /platforming/shader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/platforming/shader.png -------------------------------------------------------------------------------- /platforming/smallface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/platforming/smallface.png -------------------------------------------------------------------------------- /punch_a_hole/frac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/punch_a_hole/frac.jpg -------------------------------------------------------------------------------- /punch_a_hole/punch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/punch_a_hole/punch.py -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/readme.txt -------------------------------------------------------------------------------- /resizable/resizable_aspect_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/resizable/resizable_aspect_ratio.py -------------------------------------------------------------------------------- /resizable/resizable_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/resizable/resizable_screen.py -------------------------------------------------------------------------------- /rotation_animation/asteroid_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/rotation_animation/asteroid_simple.png -------------------------------------------------------------------------------- /rotation_animation/rotate_animate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/rotation_animation/rotate_animate.py -------------------------------------------------------------------------------- /tank_turret/tank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/tank_turret/tank.py -------------------------------------------------------------------------------- /tank_turret/turret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/tank_turret/turret.png -------------------------------------------------------------------------------- /tank_turret/turret_gamepad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/tank_turret/turret_gamepad.py -------------------------------------------------------------------------------- /tank_turret/turret_mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/tank_turret/turret_mouse.py -------------------------------------------------------------------------------- /topdown_scrolling/pond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/topdown_scrolling/pond.png -------------------------------------------------------------------------------- /topdown_scrolling/scrolling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/topdown_scrolling/scrolling.py -------------------------------------------------------------------------------- /topdown_scrolling/scrolling_mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/topdown_scrolling/scrolling_mouse.py -------------------------------------------------------------------------------- /topdown_scrolling/smallface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mekire/pygame-samples/HEAD/topdown_scrolling/smallface.png --------------------------------------------------------------------------------