After switching to Behavior Designer Pro, I found that I can no longer assign references to other tasks via the Inspector.
In BD version, I could assign nextSeekAction to another task in the tree using the Inspector.
Questions:
Is this limitation intentional in the Pro version?
Are direct task references no longer supported or recommended?
What is the suggested alternative for targeting specific task instances?
I’m aware of SharedVariables, but direct referencing is sometimes more intuitive and precise for certain setups.
Any clarification would be appreciated.
C#:
public class A_SeekRandomPos : Action
{
public A_SeekToTargetPos nextSeekAction;
public override TaskStatus OnUpdate()
{
nextSeekAction.targetPos = ...;
return TaskStatus.Success;
}
}
In BD version, I could assign nextSeekAction to another task in the tree using the Inspector.
Questions:
Is this limitation intentional in the Pro version?
Are direct task references no longer supported or recommended?
What is the suggested alternative for targeting specific task instances?
I’m aware of SharedVariables, but direct referencing is sometimes more intuitive and precise for certain setups.
Any clarification would be appreciated.