Blackboard
Namespace
using FlowReactor.BlackboardSystem;GetVariableByName
public T GetVariableByName<T> (string name) where T : FRVariableusing FlowReactor;
using FlowReactor.BlackboardSystem;
// reference to blackboard
public BlackBoard variables;
// get variable value of type int with the name health
var _healthVariable = variables.GetVariableByName<FRInt>("health");
Debug.Log(_healthVariable.Value);SaveToFile
Parameters
Description
LoadFromFile
Last updated