druid and cursor script not working together I add this msg.post(“.”, “acquire_input_focus”) to druid gui script the cursor script input wil stop working and if I remove the line the druid input stop working
1 Like
I assume you mean a “cursor” from Defold Input?
Defold Input is built in a script, while Druid is for GUI. If you keep both in a same game object and return true (consume input) from one of the components (e.g. GUI if it’s first), you might not get the input to the on_input of the other component (e.g. script, if it’s second), perhaps that’s a root cause of the issue?
1 Like
thank you @Pawel
1 Like