I have a bool
UPROPERTY(EditAnywhere, meta=(Output))
bool bIsPlayerOnSight;
like this in a task’s instance data. And also
UPROPERTY(EditAnywhere, meta=(Input))
bool bIsPlayerOnSight = false;
this in another task’s instance data.
In Editor, I have a bool Parameter, under global parameters, named bIsPlayerOnSight. Both tasks are bind to that and only the task with output meta writes to that parameter but it is always false for other task that I read data from. How can I share, read/write data across tree?