Waypoints: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:


Condition expression is used to determine when the waypoint execution is terminated.<br>
Condition expression is used to determine when the waypoint execution is terminated.<br>
Boolean variable [[this]] is set during evaluation of condition expression to primary waypoint termination condition.<br>
[[Boolean]] variable '''this''' is set during evaluation of condition expression to primary waypoint termination condition.<br>
Array variable [[thisList]] is set to list of all units in the group that given waypoint is assigned to.<br>
Array variable '''thisList''' is set to list of all units in the group that given waypoint is assigned to.<br>
Condition must return [[Boolean]] value.
Condition must return [[Boolean]] value.



Revision as of 18:38, 15 April 2006

Description:

Condition expression is used to determine when the waypoint execution is terminated.
Boolean variable this is set during evaluation of condition expression to primary waypoint termination condition.
Array variable thisList is set to list of all units in the group that given waypoint is assigned to.
Condition must return Boolean value.


On Activation expression defines action that is peformed after the waypoint is terminated.
Expression must either be an assignment or return nothing (see type Nothing).