You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to provide ways to configrate when to update behavior tree.
As being discussed in this issue, Bevy itself has no official interface to do it for plugins now.
Fortunately bevior_tree has only one system, so making it configurable is not hard.
I have two options here.
Take State as generics type parameter, then use it for run criteria.
Take run criteria and use it.
Former is popular, latter is more configurable.
It may be difficult to run system for setup like OnEnter(state) with the latter, so other plugins may prefer the former.
The text was updated successfully, but these errors were encountered:
I want to provide ways to configrate when to update behavior tree.
As being discussed in this issue, Bevy itself has no official interface to do it for plugins now.
Fortunately
bevior_tree
has only one system, so making it configurable is not hard.I have two options here.
State
as generics type parameter, then use it for run criteria.Former is popular, latter is more configurable.
It may be difficult to run system for setup like
OnEnter(state)
with the latter, so other plugins may prefer the former.The text was updated successfully, but these errors were encountered: