本文整理匯總了C#中Agent.bteventtree方法的典型用法代碼示例。如果您正苦於以下問題:C# Agent.bteventtree方法的具體用法?C# Agent.bteventtree怎麽用?C# Agent.bteventtree使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Agent
的用法示例。
在下文中一共展示了Agent.bteventtree方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: update
protected override EBTStatus update(Agent pAgent, EBTStatus childStatus)
{
EBTStatus result = EBTStatus.BT_SUCCESS;
Event pEventNode = this.GetNode() as Event;
if (!string.IsNullOrEmpty(pEventNode.m_referencedBehaviorPath))
{
if (pAgent != null)
{
TriggerMode tm = this.GetTriggerMode();
pAgent.bteventtree(pEventNode.m_referencedBehaviorPath, tm);
pAgent.btexec();
}
}
return result;
}
示例2: switchTo
public void switchTo(Agent pAgent)
{
if (!string.IsNullOrEmpty(this.m_referencedBehaviorPath))
{
if (pAgent != null)
{
TriggerMode tm = this.GetTriggerMode();
pAgent.bteventtree(pAgent, this.m_referencedBehaviorPath, tm);
pAgent.btexec();
}
}
}
示例3: switchTo
public void switchTo(Agent pAgent, Dictionary<uint, IInstantiatedVariable> eventParams)
{
if (!string.IsNullOrEmpty(this.m_referencedBehaviorPath))
{
if (pAgent != null)
{
TriggerMode tm = this.GetTriggerMode();
pAgent.bteventtree(pAgent, this.m_referencedBehaviorPath, tm);
Debug.Check(pAgent.CurrentBT != null);
pAgent.CurrentBT.AddVariables(eventParams);
pAgent.btexec();
}
}
}