Exemplo n.º 1
0
 public void SetBTLoggingContext(UBTNode newBTLoggingContext)
 => E_UBehaviorTreeTypes_SetBTLoggingContext(this, newBTLoggingContext);
Exemplo n.º 2
0
 public string DescribeNodeHelper(UBTNode node)
 => E_UBehaviorTreeTypes_DescribeNodeHelper(this, node);
Exemplo n.º 3
0
 /// <summary>
 /// get index of child node
 /// </summary>
 public int GetChildIndex(UBTNode childNode)
 => E_UBTCompositeNode_GetChildIndex_o1(this, childNode);
Exemplo n.º 4
0
 /// <summary>
 /// called before passing search to child node
 /// </summary>
 public void OnChildActivation(FBehaviorTreeSearchData searchData, UBTNode childNode)
 => E_UBTCompositeNode_OnChildActivation(this, searchData, childNode);
Exemplo n.º 5
0
 /// <summary>
 /// get index of child node (handle subtrees)
 /// </summary>
 public int GetChildIndex(FBehaviorTreeSearchData searchData, UBTNode childNode)
 => E_UBTCompositeNode_GetChildIndex(this, searchData, childNode);