Einar Forselv
Einar Forselv
The `hidden_passord` module doesn't exist for me but other examples using input don't have this problem. Be free to reopen.
Definitely something fishy here. The blinking is still a problem in latest dev.
Is it possible to make a minimal pyglet only version of this so we can narrow it down?
Modified pyglet text input example don't show any blinking ```py """Demonstrates basic use of IncrementalTextLayout and Caret. A simple widget-like system is created in this example supporting keyboard and mouse...
@eruvanos @DragonMoffon
Created https://github.com/pythonarcade/arcade/issues/2197 so this doesn't get lost in the noise
Did you also try with 3.0.0.dev29?
Both are definitely related to changes applied when the new camera was added. These used to call `arcade.set_viewport` to do the scrolling but this function is now removed because the...
arcade\examples\full_screen_example.py When swapping from fullscreen. ``` File "arcade\camera\camera_2d.py", line 502, in projection self._projection_data.rect = value * _z ~~~~~~^~~~ TypeError: can't multiply sequence by non-int of type 'float' ```
`arcade\examples\gl\custom_sprite.py` ``` File "arcade\examples\gl\custom_sprite.py", line 160, in on_mouse_drag self.cam.pos = self.cam.pos[0] - dx, self.cam.pos[1] - dy ^^^^^^^^^^^^ ```