We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! So let's say I have a default state machine:
protected StateMachine<States> fsm;
and in Update() I call fsm.Driver.Update.Invoke();
Update()
fsm.Driver.Update.Invoke();
void Update() { fsm.Driver.Update.Invoke(); }
It works well, but it looks like that Driver field is not preserved after a code reload while the game is running
NullReferenceException: Object reference not set to an instance of an object QT.Entity.Update () (at Script.cs:137)
Is this an expected behaviour, or am I using it wrong? If it is expected, is there a way we could preserve that field between reloads?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi!
So let's say I have a default state machine:
and in
Update()
I callfsm.Driver.Update.Invoke();
It works well, but it looks like that Driver field is not preserved after a code reload while the game is running
Is this an expected behaviour, or am I using it wrong?
If it is expected, is there a way we could preserve that field between reloads?
The text was updated successfully, but these errors were encountered: