How to implement onNodeTypeClicked function while keeping touch movement

In the showroom I’ve worked on, I have made specific functionalities for clicking on objects in the showroom, but now I have run into a problem where movement is difficult in mobile because every tap calls the onNodeTypeClicked function and thus disables the movement, unless the user double taps but it’s not very intuitive.

Is there a way to code it so sometimes the onNodeTypeClicked function allows for the movement?

You can return false from the onNodeTypeClicked callback for the touch movement to be handled.

1 Like

Oh I see, thanks for the reply! I tried it and it works