Exemple #1
0
 public BTBlackboard(BlackboardAsset asset)
 {
     mVariables = new BTBlackboarProperty[asset.m_Properties.Length];
     for (int i = 0; i < mVariables.Length; i++)
     {
         mVariables[i] = new BTBlackboarProperty(asset.m_Properties[i].m_Key, asset.m_Properties[i].m_Value);
     }
 }
Exemple #2
0
 public BTBlackboardSetter(BTBlackboarProperty prop) : base(prop)
 {
 }
Exemple #3
0
 public BTBlackboardGetter(BTBlackboarProperty prop)
 {
     mProperty = prop;
 }