How to make godot detect the double click from an action in Input Map?
I've created an action "mouse_clicked". Added:
* mouse button index: Left Button
* Device: All Devices.
Then in the code I do:
if event.isactionpressed("mouse_clicked") and event.doubleclick:
#some action
On Windows this works but not on Android.
Emulate Mouse from Touch is on.