synchronizeTrigger: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\|x([0-9])= *<code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>") |
Lou Montana (talk | contribs) m (Text replacement - "\|x([0-9])= <sqf>([^\/: ]+)([^;])<\/sqf>" to "|x$1= <sqf>$2$3;</sqf>") |
||
Line 28: | Line 28: | ||
|r1= [[Nothing]] | |r1= [[Nothing]] | ||
|x1= <sqf>_trigger synchronizeTrigger []</sqf> | |x1= <sqf>_trigger synchronizeTrigger [];</sqf> | ||
|x2= <sqf>_trigger synchronizeTrigger [_waypoint1]</sqf> | |x2= <sqf>_trigger synchronizeTrigger [_waypoint1];</sqf> | ||
|x3= <sqf>_trigger synchronizeTrigger [_waypoint1, [_group5, 7], _waypoint3]</sqf> | |x3= <sqf>_trigger synchronizeTrigger [_waypoint1, [_group5, 7], _waypoint3];</sqf> | ||
|seealso= [[createTrigger]] [[synchronizeWaypoint]] | |seealso= [[createTrigger]] [[synchronizeWaypoint]] | ||
}} | }} |
Revision as of 22:43, 28 June 2022
Description
- Description:
- Synchronizes the trigger with zero or more waypoints.
- Groups:
- TriggersWaypoints
Syntax
- Syntax:
- trigger synchronizeTrigger [waypoint1, waypoint2, ...]
- Parameters:
- trigger: Object - trigger to synchronize
- [waypoint1, waypoint2, ...]: Array of Waypoint - 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:
- createTrigger synchronizeWaypoint
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