Help with a basic touch movement system

When you create a new project, select Mobile / Table and the project will include on-screen joysticks for you to use.

If you want to track precise movements, you can Detect when a user touches the screen, and use the x/y coordinates’ delta on every tick to translate to player movement.

Example:

That doesn’t answer my question, I need it to mimic touch motions from player. The joystick wont work good for a bullet hell.

Updated with an another way for you to solve your problem.

Where would I go from there. I understand I need to get coordinates of where the player is touching and then add/subtract to the actor’s coordinates.

I’d like to have a movement system for my mobile game where the player can touch anywhere on the screen and have the actor mimic the movements. For example, if a player moves his finger up down left or right anywhere on the screen the actor will too. This is so the player’s finger won’t cover up the actor as my game requires precise movements. A perfect example of what I want is here. If someone could walk me through it or point me towards a good tutorial that would be really great. I feel like it shouldn’t really be that difficult.

https://i.gyazo.com/54cd5d41111a71b2bc0c2afddb26c7ca.png

Everything else is math :stuck_out_tongue_winking_eye:

What you are trying to do is nearly like a simple swipe. Everything about swipes can be found here. <3