PyWeek - Cat Devs 2: Boogaloo - feedback
DR0ID
gummbum
command "poetry" not found
IMO need better documentation for those of us unfamiliar with poetry, which are probably the majority at Pyweek.
scott
Interesting idea. There seemed to be a bug that meant that you could not play beyond the tutorial though without modifying code.
apple
The concept had great potential, but the execution was a little poor. The game didn't fit on my screen but it was playable, and it was a bit annoying to have to manually change the level in game.py
RicBin
'poetry install' didn't work for me.
Trying to run with my setup, I got this error:
File "c:\ ... \src\__main__.py", line 3, in <module>
from .game import update
ImportError: attempted relative import with no known parent package
Try to take out the dot from the import, but other error appear.
File "c:\ ... src\menus.py", line 6, in <module>
background = pyglet.graphics.OrderedGroup(0)
AttributeError: module 'pyglet.graphics' has no attribute 'OrderedGroup'
Krzysztof
Does not scale correctly on to 4k screen. First level was unbeatable.
Also required a poetry install, installed black and flake 8.
No idea why a requirements.txt wasn't included.
no sound, no end condition, strange package dependency manager (and only pyglet in the right version is needed!)
Seems rather unfinished. Could have had potential for more levels.
Thanks for trying and for your time.
Level 4 gave me an error (almost missed that there where more levels!):
Traceback (most recent call last):
File "...\python390\lib\runpy.py", line 197, in _run_module_as_main
return _run_code(code, main_globals, None,
File "...\python390\lib\runpy.py", line 87, in _run_code
exec(code, run_globals)
File "...\33\tbd\pyweek-33\src\__main__.py", line 3, in <module>
from .game import update
File "...\33\tbd\pyweek-33\src\game.py", line 12, in <module>
exec(levels["level4"])
File "<string>", line 1, in <module>
ImportError: cannot import name 'good' from 'src.level4' (...\33\tbd\pyweek-33\src\level4.py)