synchronizeTrigger: Difference between revisions

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


| trigger '''synchronizeTrigger''' [waypoint1, ...] |= Syntax
| trigger '''synchronizeTrigger''' [waypoint1, waypoint2, ...] |= Syntax


|p1= trigger: [[Object]] - trigger to synchronize |= Parameter 1
|p1= trigger: [[Object]] - trigger to synchronize |= Parameter 1
|p2= [waypoint1, waypoint2, ...]: [[Array]] of waypoints to synchronize with trigger. Array can be empty to unset. |= Parameter 2
|p2= [waypoint1, waypoint2, ...]: [[Array]] of waypoints to synchronize with trigger. Array can be empty to unset. |= Parameter 2
|p3= waypoint1: [[Waypoint]] - first waypoint |= Parameter 3
|p3= waypoint1: [[Waypoint]] - first waypoint |= Parameter 3
|p4= waypoint2: [[Waypoint]] - second waypoint |= Parameter 4


| [[Nothing]] |= Return value
| [[Nothing]] |= Return value

Revision as of 17:38, 30 August 2015

Hover & click on the images for description

Description

Description:
Synchronizes the trigger with zero or more waypoints.
Groups:
Uncategorised

Syntax

Syntax:
trigger synchronizeTrigger [waypoint1, waypoint2, ...]
Parameters:
trigger: Object - trigger to synchronize
[waypoint1, waypoint2, ...]: Array of waypoints to synchronize with trigger. Array can be empty to unset.
waypoint1: Waypoint - first waypoint
waypoint2: Waypoint - second waypoint
Return Value:
Nothing

Examples

Example 1:
_trigger synchronizeTrigger []
Example 2:
_trigger synchronizeTrigger [_waypoint1]
Example 3:
_trigger synchronizeTrigger [_waypoint1, [_group5, 7], _waypoint3]

Additional Information

See also:
createTriggersynchronizeWaypoint

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section