Paul

Results 274 comments of Paul
trafficstars

We may want to wrap standard deprecation directives with warning boxes to mark `get_image` as deprecated. It seems that pyglet does something similar, but I haven't been able to find...

**TL;DR: The root issue is still the same: customizing frame / event loops** @FengchiW Since you mentioned being interested in dealing with #1137, i'm tagging you here. > But engines...

Follow-up from earlier reading tonight: 1. There's already [a `MediaDecoder` base type in pyglet](https://github.com/pyglet/pyglet/blob/28e58b9e7f2d8e3d36b66ae24a25f5c5749ff3b6/pyglet/media/codecs/__init__.py#L18) 2. Although we could define a `MediaDecoderLike` protocol, it may be redundant for now

@einarf **TL;DR: We should fix `Camera2D.__init__`'s arguments + improve underlying camera behavior.** > Should we not try to slim down the arcade module when possible? The current custom viewport options...

The recent commits pushed: 1. Rebase onto `development` to get #2062's fixes 2. Remove the `*Data` classes from `arcade.__all__`

> Might also be a good idea to update imports in examples here? Yep. I think this might wait till after the following: * #2065 * #2061 * The camera...

TL;DR: It might actually be very broken despite tests seeming to pass. I haven't it recently and so I don't remember the details, but there was at some point a...

This is redundant and additional work needs to be done before we're able to get the doc generating. That's WIP, so closing this.

TL;DR: This will be a non-breaking change & efficiency upgrade with pyglet 2.1, which seems to be [coming sooner than expected.](https://discord.com/channels/438622377094414346/701585557637038152/1218081219145895936) Benefits: 1. `sprite_instance.scale *= 2.0` will work with scalars...

Imo, it could be either without an `isinstance` check: ```py if hasattr(scale, "__len__"): self._scale = Vec2(*scale) else: self._scale = Vec2(scale, scale) ```