PyWeek - hmmmmm - feedback
DR0ID
mit-mit
It's pretty straight forward, not much to do but just swim around. I guess you could build a game on this. The ships and the water look pretty cool.
rdb
Congrats on your first PyWeek entry! I'd love to rate this higher but… there isn't much happening here? I see a ship and another ship I can control with the arrow keys, and that's about it.
Cosmologicon
Looks pretty incomplete but it's always great to see new teams! I'm looking forward to your entry next time around!
richard
Congrats on getting something done! I hope you'll get more done next time!
gummbum
I can see this is not really a game. It's got some very basic structure, graphics, and keyboard interaction. And there is nice artwork. But it needs something for the player to do. I mean, this much is obvious.
What you have here is a very solid start! I'm glad you want to learn. There is plenty to learn from the pygame community, and the people are generally happy and helpful. Find us in Discord.
Here is a tech tip for free, because I could not run the game with the default window size and flags. The title bar ate up too much screen and I could not drag it off. Try this:
import os
os.environ['SDL_VIDEO_CENTERED'] = '1'
screen = pygame.display.set_mode(
(infoObject.current_w, infoObject.current_h), pygame.NOFRAME)
When I did that I was able to run it and see all of your game screen.
I encourage you to keep at it. If you added some gameplay logic this entry could have been quite nice. I hope you all will come back next time and show us your bigger muscles. :)
tizilogic
Not sure what is supposed to happen, but every time I run this game, there's just a ship going from the top left to the top right. WASD doesn't do anything..
speedlimit35
Sorry, but I really could not figure out how to play this game. I looked at the code and the only operational keys were the arrow keys and escape. The only thing I could do in this game was move my ship around. I think this project might be unfinished.
Xyolidge
For mysterious reasons the ship goes by itself at the very right of the screen and does not respond to any command then, neither the "w-a-s-d" keys which are supposed to control it (BTW I has a AZERTY keyboard, no idea if it's related).
I could move the ship but nothing else. Seems rather incomplete.