setTriggerArea: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(clarified parameters)
mNo edit summary
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Defines the area controlled by the trigger. |= Description
| Defines the area controlled by the trigger.
 
The area is either rectangular or elliptical, the width is 2 * xrad, the height is 2 * yrad.
 
It is rotated angle degrees. |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 13: Line 17:


|p1= trigger: [[Object]] |= Parameter 1
|p1= trigger: [[Object]] |= Parameter 1
 
|p2= [xrad, yrad, angle, rectangle]: [[Array]] |= Parameter 2
|p2= xrad: [[Number]] - horizontal(x) radius (or half the width of rectangle) |= Parameter 2
|p3= xrad: [[Number]] - horizontal(x) radius (or half the width of rectangle) |= Parameter 3
|p3= yrad: [[Number]] - vertical(y) radius (or half the height of rectangle) |= Parameter 3
|p4= yrad: [[Number]] - vertical(y) radius (or half the height of rectangle) |= Parameter 4
|p4= angle: [[Number]] - rotational in degrees |= Parameter 4
|p5= angle: [[Number]] - rotational in degrees |= Parameter 5
|p5= rectangle: [[Boolean]] - [[true]] if rectangle) |= Parameter 5
|p6= rectangle: [[Boolean]] - [[true]] if rectangle) |= Parameter 6


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

Revision as of 22:14, 25 January 2009

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Defines the area controlled by the trigger. The area is either rectangular or elliptical, the width is 2 * xrad, the height is 2 * yrad. It is rotated angle degrees.
Groups:
Uncategorised

Syntax

Syntax:
trigger setTriggerArea [xrad, yrad, angle, rectangle]
Parameters:
trigger: Object
[xrad, yrad, angle, rectangle]: Array
xrad: Number - horizontal(x) radius (or half the width of rectangle)
yrad: Number - vertical(y) radius (or half the height of rectangle)
angle: Number - rotational in degrees
rectangle: Boolean - true if rectangle)
Return Value:
Nothing

Examples

Example 1:
_trigger setTriggerArea [100, 50, 45, false ]

Additional Information

See also:
createTriggersetTriggerActivation, setTriggerStatementssetTriggerTextsetTriggerTimeoutsetTriggerType

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