Replies: 1 comment 5 replies
-
Why can't we use enter_tree and exit_tree for these usecases? Is it that both actor and blackboard would be unavailable at that stage? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I noticed a pattern in a bunch of nodes that I am creating:
Maybe we could have
enter()
andexit()
methods for these scenarios. Composite nodes would have to callenter()
before the firsttick()
andexit()
after it has returnedSUCCESS
orFAILURE
. Naturally, if this node is executed again later,enter()
andexit()
would be called again as well.What do you think?
Beta Was this translation helpful? Give feedback.
All reactions