Urho Laukkarinen

Results 21 comments of Urho Laukkarinen

At first I went with `Into`, because the public api currently only takes 4x4 matrices and all of the most common math crates seem to support such conversion. Using Mint...

This has happened to me many times over the last year or so. It had worked fine for several weeks, but today it happened again. I have a dual boot...

If this is something you would really like to have, feel free to create a new issue and I'll look into it again. I'm closing this one as stale.

@aleblanc39 Thanks, but I already have a script that can execute test cases by name, and a macro that selects the test case's name and executes the script.

@aleblanc39 Yes, I know. I'm using IntelliJ IDEA and by macro I meant a macro recorded inside the IDE. I can execute a test by moving the cursor to the...

Thanks, I am a bit short on time at the moment, but feel free to submit a PR if you would like to implement it!

Seems to work for me on both Chrome and Firefox, albeit it takes a long time to load, and the zooming is broken.

The `consumed` is part of `egui_winit::EventResponse`. For mouse input, it should get marked as consumed when `egui::Context::wants_pointer_input()` returns true. At least in the egui-gizmo-demo that seems to immediately return true...

I meant that in the demo `egui::Context::wants_pointer_input()` returns true after interacting with gizmo, but I have not tried the Gizmo with `egui_winit` yet. Anyways, the Gizmo does not explicitly consume...

Egui containers like Area and Window seem to cause `wants_pointer_input` to return true already on hover. I suppose I could also do that for the Gizmo, but I haven't yet...