Quantcast
Channel: Questions in topic: "state machine"
Viewing all articles
Browse latest Browse all 42

NullReferenceException while following Unity3d College tutorial @JasonWeimann

$
0
0
I have followed the following tutorial as the setup for my state machine https://unity3d.college/2017/05/26/unity3d-design-patterns-state-basic-state-machine/ there is a null reference exception but I don't get why. Rigidbody, InputHandler and Character components all are attached to my character in the inspector. The RigidBody is attached to the Input handler and the Character class. Inputhandler does all the if(Input.GetButtonDown("blah blah")) stuff and returns some bools, it also checks for if grounded Inputhandler.grounded_ is a simple h_vel = Rb.velocity.x; grounded_ = (h_vel == 0f)? true : false; and I have instantiated the rigidbody as Rb in InputHandler correctly console is saying the issue is at Update() in character, and Tick() in Begin State. Please note at this point there are no forces being applied to the character so I'm considering the possibility that its not getting a value out of the rigid body, but I'm really not sure. Please help! public class Character : MonoBehaviour { public State currentState; public Rigidbody rb; public Animator animator; // Start is called before the first frame update private void Start() { SetState(new BeginState(this)); } // Update is called once per frame private void Update() { currentState.Tick(); } public void SetState(State state) { if (currentState != null) { currentState.OnStateExit(); } currentState = state; if (currentState != null) { currentState.OnStateEnter(); } } } ---------- public abstract class State { protected Character character; protected float timescalar = 10f; protected Animator animator; public abstract void Tick(); public virtual void OnStateEnter(){} public virtual void OnStateExit(){} public State(Character character) { this.character = character; } } ---------- public class BeginState : State { private InputHandler inputHandler; public BeginState(Character character) : base(character) { } public override void Tick() { if(inputHandler.grounded_) { character.SetState(new IdleState(character)); } else { character.SetState(new AerialIdleState(character)); } } public override void OnStateEnter() { } }

Viewing all articles
Browse latest Browse all 42

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>