Skip to content

Commit

Permalink
Add TaskBundle Sample Scene
Browse files Browse the repository at this point in the history
Make TaskBundle implement IAgentTask instead of ITask
  • Loading branch information
lenalinke committed Apr 18, 2024
1 parent 4aca875 commit 50a8a9e
Show file tree
Hide file tree
Showing 9 changed files with 2,074 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace i5.VirtualAgents
/// A task which consists of multiple subtasks.
/// It allows for checking of preconditions and then executing a sequence of tasks.
/// </summary>
public class TaskBundle : ITask
public class TaskBundle : IAgentTask
{
public TaskBundle()
{
Expand Down Expand Up @@ -119,5 +119,7 @@ public TaskState Tick(Agent excutingAgent)
}
return State;
}

public bool CanStart { get; }
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 50a8a9e

Please sign in to comment.