How would I go about forcing an entire reset of a Behavior Tree by script?

Ok, I have almost no experience with BD, I own it but haven't had time to play with it. Here's what I came up with after checking the link you posted then, the events section https://opsive.com/support/documentation/behavior-designer/events/
Maybe you could try
var behaviorTree = GetComponent<BehaviorTree>();
behaviorTree.SendEvent<object>("OnBehaviorRestart", desired int);

I have no idea what to send as the int, but just maybe it will help to point you in right direction.
 
Top