Thank you!! Yeah the power ups were a high priority for us, I really wish we could have expanded more on level design,gameplay, sound effects and some more homemade art!
Jolton
Creator of
Recent community posts
Thank you for participating in the 2024 Summer CougarCup, we had some amazing entries!!! Everyone did an amazing job and deserves commendation, the results are in and here are the winners!
#1 - The ChefMix by MoleHoleGames
#2 - Woodsengunz by Farek
#3 - TASERFISH by CelineCherry
If you made any of these games please DM on Discord me to claim your prize!!!! (Discord link is on main page)
Hey Yeetus! Next time if you want a faster response from a larger community you should join our Discord to ask questions! https://discord.gg/ZReu92VTCV
Loading the image:
import os
image_path = os.path.join("images", "your_image.png") # Replace with your image filename
try:
image = pygame.image.load(image_path)
except FileNotFoundError:
print("Error: Image file not found!")
quit()
Displaying the image:
screen.blit(image, (0, 0)) # Place the image at (0, 0) for top-left corner
Here is a complete example of the main.py:
import pygame
import os
pygame.init()
screen_width = 800
screen_height = 600
screen = pygame.display.set_mode((screen_width, screen_height))
image_path = os.path.join("images", "your_image.png")
try:
image = pygame.image.load(image_path).convert_alpha()
except FileNotFoundError:
print("Error: Image file not found!")
quit()
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
screen.fill((0, 0, 0))
screen.blit(image, (0, 0))
pygame.display.flip()
pygame.quit()
Please tell me if you need any further help! And for more convenience in terms of sharing code, and reaching to a larger audience, I would highly suggest you join CougarCup's discord here: https://discord.gg/ZReu92VTCV
Hi Yeetus_Codes,
Welcome to the world of coding and Pygame! It's great to see new coders diving into game development. Here are a few tips to help you get started:
There are many great tutorials online that can help you get started with Pygame. Check out resources like the official Pygame documentation, YouTube tutorials, and websites like Real Python.
Start with small, manageable projects. Instead of trying to create a complete game right away, focus on creating small components, like moving a character, handling user input, or displaying text.
The Pygame documentation is very detailed and can help you understand how to use the different functions and modules available.
Game development can be challenging, and you might encounter obstacles along the way. Stay patient, keep learning, and don’t give up!
Good luck with your coding journey and have fun creating with Pygame!
https://discord.gg/ZReu92VTCV
Join our discord for workshops, theme announcement, and more!
https://discord.gg/ZReu92VTCV
https://discord.gg/ZReu92VTCVhttps://discord.gg/ZReu92VTCVhttps://discord.gg/ZReu92VTCV
🎉 Announcing the Inaugural CougarCup Game Jam! 🎉
Get ready for an exciting summer-inspired game jam! The inaugural CougarCup starts on the weekend of June 7th and ends on June 15th. This is your chance to make a game in just one week and compete for fantastic prizes!
🏆 Prizes:
1st Place: $30 Amazon Gift Card
2nd Place: $20 Amazon Gift Card
3rd Place: $10 Amazon Gift Card
🗓️ Important Dates:
Start: 12 PM PST, Friday, June 7th
End: 6 PM PST, Saturday, June 15th
Voting Period: June 15th - June 19th
Results Announcement: 6 PM PST, Wednesday, June 19th
📜 Rules:
Make your game relevant to the theme and summer if possible.
Your game must be created specifically for this jam; no pre-made projects.
Preferably, create all assets during the jam. Premade assets must be declared.
Solo or team participation is allowed.
Keep content suitable for all ages: no excessive gore, horror, NSFW, or offensive content.
Respect fellow participants and maintain a positive atmosphere.
People of all skill levels are welcome! You don't need to have any game design knowledge or programming knowledge to participate!
(Workshops will be held during the Game Jam and many teams will require artists/musicians for their assets!)
Thanks!! We were planning on adding a selling mechanic where you can sell your towers but to be honest I forgot... Also I'm really bad at UI so we had a few hurdles there (we placed water by the menu toggle button because whenever someone pressed it, it instantiated a tower). I think after this jam ends I'm gonna fix most of the UI and add more interactiveness! Thanks for the feedback!!
Thanks! Yeah, we had way more in mind but couldn't add it due to time constraints, the difficulty scaling right now just spawns more enemies in a shorter interval, but really compared to the towers upgrading system it's really easy to fend off most of the waves. After this jam ends I'm thinking of going back and iterating on this game to fix waves and balance it.