Animations & More Light
I put animations in again and tweaked the lighting more. Here is a screenshot, at the bottom is a video clip showing the player with no light and personal lighting. The animation is quite simple. First I'm using Simple Citizens pack, as shown here below, and using the default animation pack that comes with it. You are welcome to get it yourself, its not pricey. Simple Citizens - Unity Asset Store Then I added a NavMesh to the background to define where my character could walk, and added a NavAgent to the character, so they could traverse the area. On top of that, I added this simple script: using UnityEngine ; using UnityEngine.AI ; public class CharacterAnimator : MonoBehaviour { private Animator _Animator; private NavMeshAgent _Agent; public string SpeedVariableName = "Speed_f" ; void Start () { _Animator = GetComponent<Animator>(); _Agent = GetComponent<NavMeshAgent>(); } void Update...