QUICKLY Implement Joystick For Mobile Games In Unity (2023)

Поделиться
HTML-код
  • Опубликовано: 15 ноя 2024

Комментарии • 15

  • @okeuwechue9238
    @okeuwechue9238 Год назад +1

    Thnx for the vid. Very helpful.
    @2:18 you say that we need to add a Player Input component. If I wanted to associate this new movement controller to my main camera, what type of component should I be adding instead?

  • @alxdrksoul
    @alxdrksoul Год назад +2

    Thank you Mario :D I love all these updates to the course nwn

  • @numdypixel2654
    @numdypixel2654 3 месяца назад +1

    Thank you!!!

  • @Majitov2
    @Majitov2 7 месяцев назад +1

    raxmat brat
    thank you

  • @dashcamfootage7305
    @dashcamfootage7305 3 месяца назад

    So i have set up joystick in the way youre showing, but the problem comes when i want to implement jump action by swiping up on the screen at the same time im dragging joystick and it wont register until i remove finger from joystick. What am i doing wrong? @Root Games

  • @StickyLabDev
    @StickyLabDev 8 месяцев назад

    what if i must have 5 different joystick ,,,,,,,,,,,,,,,please help,, i must show the joystick ui so i'll use on screen stick ,the problem is , how to differentiate each joystick

  • @bluefroggames5451
    @bluefroggames5451 Год назад

    So I used this for a 3D project is there a way to make it easily move forward and backwards because when the joystick goes upwards my character flys up into the air great tutorial btw

    • @RootGames
      @RootGames  Год назад

      Maybe you are using the wrong axis. Try to apply movement to another axis.

    • @SenpaiZeroo
      @SenpaiZeroo 4 месяца назад

      i know this is late but i will comment it anyway for others to see. save it in vector2 variables then get the y and store it as z value
      Vector2 vector = moveAction.action.ReadValue();
      mX = vector.x;
      mZ = vector.y;

  • @codehubhq
    @codehubhq 5 месяцев назад

    why is every one using the easiest way to make a joystick?
    Can you make a tutorial on how to make a DPad for mobile?

  • @hooliganszone6484
    @hooliganszone6484 Год назад +1

    Is this can move 3d charachter?

    • @RootGames
      @RootGames  Год назад

      yes, you just need the code for 3d but the principle is the same

    • @hooliganszone6484
      @hooliganszone6484 Год назад

      Thanks about the course is it necessary to have a big backround in c#? Cuz im justa. A beginner

    • @RootGames
      @RootGames  Год назад

      @@hooliganszone6484 No, beginner level is enough to follow the course.