コード例 #1
0
 public void Reset()
 {
     actionType         = null;
     target             = null;
     attributeSelectors = null;
 }
コード例 #2
0
ファイル: AgentType.cs プロジェクト: ming81/TotalAI
 public bool HasActionType(ActionType actionType)
 {
     return(defaultActions.Exists(x => x.actionType == actionType));
 }
コード例 #3
0
 public void Set(ActionType actionType, Entity target, List <Selector> attributeSelectors)
 {
     this.actionType         = actionType;
     this.target             = target;
     this.attributeSelectors = attributeSelectors;
 }