In this tutorial repository you can learn how to add a Touch Movement Joystick to control your player using the New Input System.
We'll specifically look at how to do that with a NavMeshAgent
, but the same concept can be applied to Rigidbody
movement or a CharacterController
. In this tutorial you'll learn the full end to end process of Joystick Creation, Canvas Setup, & Code, along with some of the "gotchas" I learned when implementing my own mobile game so you don't have to run into the same struggles!
The Enhanced Touch API raises events onFingerDown
, onFingerMove
, and onFingerUp
events to us when the user touches, moves, or lets go of the screen. It keeps track of which finger is doing what, so we can track each finger separately.
Starting with Unity 2022 simply doing EnhancedTouch.Enable() is not sufficient to enable touch simulation. A difference in this repository versus the video above is we have attached a TouchSimulation.cs
script (that comes from the input system package) that enables the touch simulation.
Have you been getting value out of these tutorials? Do you believe in LlamAcademy's mission of helping everyone make their game dev dream become a reality? Consider becoming a Patreon supporter and get your name added to this list, as well as other cool perks. Head over to https://patreon.com/llamacademy to show your support.
- Andrew Bowen
- YOUR NAME HERE!
- Gerald Anderson
- AudemKay
- Matt Parkin
- Ivan
- Paul Berry
- Reulan
- YOUR NAME HERE!
- Bastian
- Trey Briggs
- Matt Sponholz
- Dr Bash
- YOUR NAME HERE!
Interested in other AI Topics in Unity, or other tutorials on Unity in general?
- Requires Unity 2020.3 LTS or higher.