AAAAAAAAAAAAAAAAAUUUUUGGGHHHH
Pyweek keeps falling on my midterms. I wish it was scheduled closer to the beginning of the semester when less was going on.I am only now free from all schoolwork. I don't know where Andrew is. Chelsea is helping with levels but its going slow.
Pyglet also has a bug that I probably spent an hour debugging. Functions cannot unschedule themselves even though a patch to fix this was submitted two months ago (and pulled in). So right now we are using bleeding edge pyglet with a two line patch I wrote.
Really sucks that this is my second pyweek without a functional game. Next one probably will be just by myself.
(log in to comment)
Cosmologicon on 2017/10/28 02:19:
I'm getting a pyglet error on Ubuntu:<pre>Traceback (most recent call last):
File "main.py", line 99, in <module>
w = Window((1280,720))
File "main.py", line 8, in __init__
self.board = core.Board(self, self.batch, wh)
File "/home/christopher/Downloads/theyrebehind/core/Board.py", line 32, in __init__
corkboard_im = load_resource("corkboard.jpg", "center")
File "theyrebehind/core/lib/image.py", line 18, in load_resource
img = pyglet.resource.image(filename)
File "theyrebehind/pyglet/resource.py", line 555, in image
atlas=atlas)
File "theyrebehind/pyglet/resource.py", line 494, in _alloc_image
return img.get_texture(True)
File "theyrebehind/pyglet/image/__init__.py", line 859, in get_texture
force_rectangle)
File "theyrebehind/pyglet/image/__init__.py", line 844, in create_texture
rectangle, force_rectangle)
File "theyrebehind/pyglet/image/__init__.py", line 1564, in create
blank)
File "theyrebehind/pyglet/gl/lib.py", line 105, in errcheck
raise GLException(msg)
pyglet.gl.lib.GLException: b'invalid value'</pre>
Anyone have any luck here?