In v3.+ conditions need to be Enabled and Disabled from the node that uses them. I see you are using a custom node named “Branch”. Can you please post your node code here and I will let me know the changes that need to be made so that the node works correctly. 🙂
private ConditionTask condition
{
get { return _condition; }
set { _condition = value; }
}
Task ITaskAssignable.task
{
get { return condition; }
set { condition = (ConditionTask)value; }
}
public override bool allowAsPrime { get { return false; } }
public override int maxInConnections { get { return -1; } }
public override int maxOutConnections { get { return 2; } }