I’m working with 2D (overlay) UI in Studio, using them as buttons to control my character. But I haven’t found a good way to detect whether they’re being touched.
Is there any way to handle events like touch start
, touch move
, or touch end
for 2D UI?
I noticed that things like ecs.input.SCREEN_TOUCH_START
don’t work on 2D UI elements, even though they do work on 3D UI.
But I need my buttons to stay in fixed positions on the screen, so using 2D UI is kind of essential for me.
here is my test project :