Druid scroll not working on mobile

I added a druid scroll component to my game, following this guide. It works well, when I build it on my computer, but does not work on mobile (via bundle). I get no error messages via adb.

I assume this has something to do with key bindings or druid settings that I do not kknow about.
I am using a mobile template in defold, so the only keybinding I have is mouse left click → touch . Should I add some mmore keybindings, add some special druid settings, or is the cause of my problem something complelty different?

The mobile devices uses touch_multi action_id for Scroll component instead of touch on desktop devices
Ensure you setup it in your input bindings (https://github.com/Insality/druid/blob/master/docs_md/advanced-setup.md#input-bindings) or use all.input_binding profile

3 Likes

this works! Thank you

1 Like