I’m trying to have a mobile touch interface that only contains movement joysticks, which changes to a different interface that adds “Interact” button when I look at an interactable actor (using line trace).
To achieve that, I’m using line trace and branch, if I’m looking at the actor, then “Activate Touch Interface” where the interface has an interactable button.
If I’m not looking at the actor, then “Activate Touch Interface” where the interface has no buttons.
The problem I’m facing is the touch interface is being created by “Set Timer by Event” so it’s being created each 0.1 seconds (for example) over itself over and over again, making the joystick uncontrollable and spinning around when tested.
I tried to use “Is Valid” node but didn’t work for me, so I’m wondering what I should do to make my touch buttons show and hide without being created over and over again.
P.S. Widget buttons don’t work for my workflow, the buttons have to be coming from Mobile Touch Interface.
Thank you