Hello ,
I am really grateful to you for sharing this template. It has helped me a lot to move ahead in my projects.
There is a specific change that I need to make in the blueprint which is a requirement for my project. I want the teleportation tracer appear only when I press the Thumbpad 1 on my controller. I should be able to teleport when I release the key. Moreover the tracer target and trajectory should appear only when I press the key and disappear when I teleport. I have tried different approaches on my end, but it did not work. I am a novice in UE4 development and blueprints. I would really appreciate it if you could suggest a quick fix for this.
Thanks a lot!
Sure here’s how to do it
First move this if statement before the trace logic so we don’t trace when we don’t have to
Next create a sequence node and attach it to the button up as well as both the trace down and trace up
Next add a new pin to the sequence
on the button down show the trace visualiser
then call trace leave on the focused object
then reset the focused object
and finally hide the trace visualiser
Lastly add these doOnce nodes to the motion controller detection
If you want I just updated the master with the changes pretty much made for you