Player Movement

Hello guys, how do I reproduce the movement style in Hunter Assassin android game
Movement Hunter assainn

The goal is to touch any part of the screen and get the player to move to that part touched.

I don’t want the player to teleport to the part touched, i want it to move to that part.

The example I saw in the platform makes the player to teleport to the part of the screen touched.

If you’re doing a top down game and want that functionality, look at pathfinding.

It’s a behaviour you add to the player object. There an additional pathfinding obstacle behaviour for any objects that are the player cannot go through or should avoid, such as walls and, in your case, the enemies.

2 Likes

Thank you so much.
It worked,