SFML community forums

Help => Window => Topic started by: Tima32 on June 04, 2021, 10:18:08 pm

Title: My app is not receiving touch events.
Post by: Tima32 on June 04, 2021, 10:18:08 pm
My application is not receiving touch events.
The touchscreen works well, tested in Chrome.
cout << "E: " << event_e.type << endl;
if (event_e.type == Event::TouchBegan)
{
        cout << event_e.touch.finger << endl;
}
 
What could I have missed?
SFML 2.5.1
Windows 10
Visual Studio 19
Title: Re: My app is not receiving touch events.
Post by: Laurent on June 05, 2021, 10:46:18 am
There's no support for touch events on Windows.
Title: Re: My app is not receiving touch events.
Post by: eXpl0it3r on June 07, 2021, 04:49:21 pm
Or rather not yet.

Mostly waiting for someone to pick up the existing branch and bring it up to date with the current short comings: https://github.com/SFML/SFML/pull/965

There were also some issues with touch inputs last I tried it