Schedule: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
[[Category:AI Programming]]
[[Category:AI Programming]]
A '''schedule''' is a list of [[task]] the NPC is to perform, a schedule could be to go to a specific location, such as <code>SCHED_FORCED_GO</code> or a schedule to create an attack plan <code>SCHED_PLAN_ATTACK</code>. The NPC's schedule selection is governed by its current [[state]] and [[condition]]s.
A '''schedule''' is a list of [[task]]s the NPC is to perform, a schedule could be to go to a specific location, such as <code>SCHED_FORCED_GO</code> or a schedule to create an attack plan <code>SCHED_PLAN_ATTACK</code>. The NPC's schedule selection is governed by its current [[state]] and [[condition]]s.
==See Also==
==See Also==
* [[Creating a schedule]]
* [[Creating a schedule]]
* [[Shared schedules]]
* [[Shared schedules]]

Revision as of 18:33, 10 June 2006

A schedule is a list of tasks the NPC is to perform, a schedule could be to go to a specific location, such as SCHED_FORCED_GO or a schedule to create an attack plan SCHED_PLAN_ATTACK. The NPC's schedule selection is governed by its current state and conditions.

See Also