Dorian
Dorian
I introduce the `glutin::event::WindowEvent::{DroppedFile, HoveredFile, HoveredFileCancelled}` into speedy2d. I added a new method: `on_file_drag` to the `WindowHandler` trait.
Is it possible for `speedy2d` to handle multiple windows ? I know that `winit` can do this but I couldn't find any reference to this in the documentation/source code. I...
When I use `graphics.draw_text(...)`, I often get black rectangle instead of the text at the first frame : When I ask for a redraw, (and so I update the text...
When there is leading whitespace in a text, they are not calculated by the `layout_text` method. By removing this [block of code](https://github.com/QuantumBadger/Speedy2D/blob/75ab19f4caf29a505a93f14f1338bb14c914ae6a/src/font.rs#L445-L451), it works as intended : ```rust // Skip...
This pull request has been automatically generated by prose.io.
For now, the viewer can handle URL which can be downloaded from with the `fetch` API. I wanted to add the possibility to load a scene directly from a file,...
I encountered this issue when using a WebComponent that embeds a PlayCanvas application inside a Vue project. The component instance is accessed through a Vue `$ref`, which is actually a...
Hello and thank you for this helpful librairy. I noticed that the ruler theme was not working for vertical slider. Nonetheless, manually modifying the CSS for the one below fixed...
Some libraries (like `lit`) require `"useDefineForClassFields": false` in the tsconfig.json However, it seems to break the Script class : The following code : ```ts export class Annotation extends Script {...
This PR attempts to fix #8107 when the app object is used behind a proxy (ex: vue / solidjs). The cache system use the `canvas.id` as key instead of the...