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
Version 3.0.12-Beta
As mentioned on discord the agentTypeConfigFactories in the GoapBehaviour is adding two instances of the abstract base class. This causes exceptions.
agentTypeConfigFactories
GoapBehaviour
Suggested update for quick fix - or find why the base classes are being picked up.
private void CreateAgentTypes() { var agentTypeFactory = new AgentTypeFactory(this.Config); this.agentTypeConfigFactories.ForEach(factory => { if (factory != null) this.Register(agentTypeFactory.Create(factory.Create())); }); }
The text was updated successfully, but these errors were encountered:
Fix #271
97d03c8
Fixed in 3.0.19-beta
Sorry, something went wrong.
No branches or pull requests
Version 3.0.12-Beta
As mentioned on discord the
agentTypeConfigFactories
in theGoapBehaviour
is adding two instances of the abstract base class.This causes exceptions.
Suggested update for quick fix - or find why the base classes are being picked up.
The text was updated successfully, but these errors were encountered: