MonoBehaviourTree
MonoBehaviourTree copied to clipboard
Simple event driven Behaviour tree for Unity projects
When you open the node menu using RMB, you can choose "Edit Script" to immediately open it in your code editor.
Hi! First of all, I love your package and much appreciate your work! Is it by design that there is no option to zoom in and out when editing a...
Refactor NodeDropdown to allow more than one folder in node dropdown menu. https://github.com/Qriva/MonoBehaviourTree/blob/76dce2d5afbcf354626432c05ef3a1ae23f3d35f/Assets/MonoBehaviourTree/Source/Editor/NodeDropdown.cs#L117
Some possible improvements: 1. Allow copying selected variables from master blackboard to sub blackboards. To reduce the amount of manual typing and selecting variable type! 2. Allow copying variable names....
Today I do a profiling and notice that the current usage of `Variable.AddListener` and `.RemoveListener` causes at least 4 allocations every frame. --- Each of these methods creates 1 allocation....