caffeinepills

Results 101 comments of caffeinepills

Just to update this, the issue is OGG's normally store their metadata tags in the "stream" (and sometimes even mp3's can also do, although rarely), which the current way does...

What audio driver are you using? Can you give us your pyglet info `python -m pyglet.info`

Strange that it's resolved on reboot, sound like a system issue. I think there is an open issue with MacOS about a memory leak somewhere? Maybe audio queue is getting...

I have a separate branch I've messed with with bringing DPI aware windows to Windows. It works but the problem is Windows handles it differently than other OS's I believe....

This is normal. This doesn't really have to do with FPS as there is no window involved. Refer to the docs: https://pyglet.readthedocs.io/en/latest/programming_guide/time.html#keeping-track-of-time > The dt, or delta time parameter gives...

``` gl_info.get_version(): 4.6.0 - Build 27.20.100.8280 gl_info.get_vendor(): Intel gl_info.get_renderer(): Intel(R) UHD Graphics gl_info.get_extensions(): ``` According to this it's not using NVIDIA, it's using your integrated Intel graphics. Either disable your...

Closing as there haven't been any further updates input on this. Most likely driver related.

That's not really viable as each character in a string has different width, and advance requirements, especially with HTML as even bolded can change the width. So re-using vertex placements...

To align something, you need to add a width to align it against. In this case an anchor is probably more in line with what you were wanting. Try adding...

There is `label.content_width` for pyglet labels, but again, align and anchor are two different things here. Align is for aligning based on the width of the document (which is set...