i created a game, my character can walk, but when i export the game to android, i don’t how to make it walk. I used to run the game in laptop and walk it using the keyboard. But when in android i don’t know how,i created a game, that character can move like walking. But, when i export to android. I don’t how to make the character walk? I run the game in laptop and play using the mouse. But in android, i don’t how to change it.
You can add UI/Button and use them instead of keyboard.
Documentation: Button | Unity UI | 1.0.0
If your game is 2D you can make button using Colliders:
void OnMouseDown()
{
Walk();
}