New: pygameAll contenthive-129948krhive-196917steemzzanhive-183959hive-185836hive-180932hive-166405photographyuncommonlabhive-150122hive-183397hive-101145hive-188619hive-144064bitcoinhive-145157krsuccesslifehive-184714hive-193637hive-181136hive-109690hive-103599TrendingNewHotLikersthegreenknight (25)in art • 5 months agoMy Attempt at Pixel ArtMy Pixel Art So I am not an artist but I want to make a game using pygame and I need sprites. I couldn't find any free ones I liked so I tried to make my own. Don't be afraid to give honest…codemy (64)in pygame • 8 months agoShoot Bullets - PyGame Thursdays 32In this video we'll add the ability for our character to shoot bullets for our platformer with Pygame and Python. Shooting is super important in most games. In this video I'll show you how to do…codemy (64)in pygame • 8 months agoSprite Mask Magic! - PyGame Thursdays 31In this video we'll add a Sprite Mask to our Platformer game with PyGame and Python. Our player doesn't fall off the cliff when they hang over, because the transparent part of the image is still…codemy (64)in pygame • 8 months agoSprite Animations - Let's Move! - PyGame Thursdays 30In this video we'll learn about sprite animations in Pygame. We'll modify our Aspen platformer game with a new character that has arms and legs. Then we'll animate that character so that the…codemy (64)in pygame • 8 months agoWrap Around Movement - PyGame Thursdays 29In this video we'll build out the Wrap Around function and the water function for our Platformer Game with Pygame and Python. When our Aspen character goes off the side of the screen, we want her…codemy (64)in pygame • 9 months agoPlatformer Game Jumping - PyGame Thursdays 28In this video we'll add Jumping to our Aspen Platformer game with Pygame and Python! In the last video we added gravity, now we can make our player Jump! Jumping is pretty straight forward once…codemy (64)in pygame • 9 months agoAdd Gravity To Our Platformer Game - PyGame Thursdays 26In this video we'll learn how to create Gravity for our Platformer game with Pygame and Python. Gravity is a constant force pushing down on our player. It's what will make our player fall when…codemy (64)in pygame • 9 months agoAdd Player and Background To Platformer - PyGame Thursdays 25In this video we'll learn how to use 2D Vector Movement for Platformer Games in Pygame and Python. Movement gets more interesting when we account for Position, Velocity, and Acceleration. We can…codemy (64)in pygame • 9 months agoAdd Player and Background To Platformer - PyGame Thursdays 25In this video we'll add our Aspen player and a background image to our Platform game with Pygame and Python. Adding players in a tile map platformer is different than we've learned in the past.…codemy (64)in pygame • 10 months agoPlatform Games - PyGame Thursdays 24In this video we'll start to build out an Aspen Platformer Game for Pygame and Python! We'll start out by learning about Tile Maps and then we'll build out a basic tile map to see how they work.…codemy (64)in pygame • 10 months agoFinished Feed Aspen Shooter Game PT2 - PyGame Thursdays 23In this video we'll finish building out our Feed Aspen shooter game with Pygame and Python. We'll start by removing the red food from the game and restricting the bones to the game field. Then…codemy (64)in pygame • 10 months agoFeed Aspen Shooter Game - PyGame Thursdays 22In this video we'll start to rework our Feed Aspen game to make it into a shooter game. We'll move Aspen to the bottom of the screen and keep her there. Then we'll give her the ability to shoot…codemy (64)in pygame • 10 months agoReset Feed Aspen Game - PyGame Thursdays 21In this video we'll reset our Feed Aspen game for Pygame and Python. When the game ends, we need to do a bunch of things to end the game and reset the game. We have to determine if the player…codemy (64)in pygame • 11 months agoAdd Red Food Remove Blue Food - PyGame Thursdays 20In this video we'll change up our Feed Aspen Game's food color system for Pygame and Python. Whenever Aspen catches a Red food, we want to increase the score, and then remove a blue food. We…codemy (64)in pygame • 11 months agoObject Oriented Sounds - PyGame Thursdays 19In this video we'll learn how to add sounds to our Feed Aspen game for Pygame and Python. We've already looked at sounds with Functional Programming, but we've switched to Object Oriented…codemy (64)in pygame • 11 months agoAdd Red Food To Feed Aspen Game - PyGame Thursdays 18In this video we'll add in red food to our Feed Aspen game for Pygame and Python. If Aspen eats the red food, she scores...if she touches the blue food, she dies! This is a little more…codemy (64)in pygame • 11 months agoAdd Text To Our Game - PyGame Thursdays 17In this video we'll add text to our new Feed Aspen game. We've added text to our games in the past, but not since switching to Object Oriented Class based programming. So, we need to learn how…codemy (64)in pygame • 11 months agoAspen Food Boundaries - PyGame Thursdays 16In this video we'll build out a boundary box for the food in our new Feed Aspen Game for Pygame and Python. We'll create a box for the food, and we'll also change the motion of the food to…codemy (64)in pygame • last yearPause A Game - PyGame Thursdays 15In this video we'll learn how to pause our game for PyGame and Python. Inside of our Game class, we'll build a function to pause our game. We'll call it from the Update function whenever a user…codemy (64)in pygame • last yearCreate A Game Class - PyGame Thursdays 14In this video we'll create a Game Class using Object Oriented Programming in Pygame. The Game class will take care of Game-type things... Things like pausing the game, restarting, keeping score…