2d rpg

dose anybody know if there are any 2d rpg tutorials for games like Zelda and pokemon
for unity?

First of: Zelda and Pokemon are very different games. Zelda is a “live-action RPG” while Pokemon is a Turn-based RPG (which require a whole different code for battles).

I guess the closest would be the Rogue-like tutorial: https://unity3d.com/learn/tutorials/projects/2d-roguelike

oh Thanks for the tip

Saw in the description of 2d rogue-like that they use a turn-based system, for a physics “live-action” system you could checkout: https://unity3d.com/learn/tutorials/projects/space-shooter

If you’re looking for a tile-based movement I don’t think there is any tutorial on the subject, but I know there are quite a lot of questions about the subject, so you can always google! :slight_smile:

The basics of such a movement is just limiting your movement to either up/down or right/left, never diagonal.