kaphula / winit-egui-wgpu-template

Starter template for winit, egui and wgpu project.
MIT License
22 stars 2 forks source link

How to use multi-touch? #3

Closed oUp2Uo closed 2 months ago

oUp2Uo commented 2 months ago

Hi, thanks for the sample code.

I am a newbie to rust and wgpu. I tried to use multi-touch, which has the gesture, and easier using than touch, I thought. But I could not find a event for multi-touch in WindowEvent, only WindowEvent::Touch.

Do you have any idea about this?

Thank you.

kaphula commented 2 months ago

Hi, I think you need to consult winit for that information since this repository is focused only on showing how to glue together winit, egui and wgpu.

oUp2Uo commented 2 months ago

Hi, I think you need to consult winit for that information since this repository is focused only on showing how to glue together winit, egui and wgpu.

Thanks for the replay. I found the you write WindowEvent::Touch in the program, and thought maybe you know about the event. I will try to search for more information.

Thanks again.

kaphula commented 2 months ago

I have no experience with the touch stuff, sorry.