BIS fnc addCuratorAreaFromTrigger: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl>" to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| arma3 |Game name=
| arma3


|1.16|Game version=
|1.16


|gr1 = Curator |GROUP1=
|gr1 = Curator


|Add curator editing / camera area based on triggers.
|Add curator editing / camera area based on triggers.
|Description=


| [curatorLogic,triggers,checkedPosition,triggerType,editingArea,cameraArea] call [[BIS_fnc_addCuratorAreaFromTrigger]] |Syntax=


|p1=curatorLogic: [[Logic]] - Curator logic|Parameter 1=
| [curatorLogic,triggers,checkedPosition,triggerType,editingArea,cameraArea] call [[BIS_fnc_addCuratorAreaFromTrigger]]


|p2=triggers: [[Array]] - List of triggers|Parameter 2=
|p1=curatorLogic: [[Logic]] - Curator logic


|p3=checkedPosition: [[Anything]] - Checked position. Check [[BIS_fnc_position]] for supported data types|Parameter 3=
|p2=triggers: [[Array]] - List of triggers


|p4=triggerType: [[Boolean]] - [[true]] to use a trigger nearest to the '''checkedPosition''', [[false]] to use all triggers which the position is in|Parameter 4=
|p3=checkedPosition: [[Anything]] - Checked position. Check [[BIS_fnc_position]] for supported data types


|p5=editingArea: [[Boolean]] - [[true]] to add editing area|Parameter 5=
|p4=triggerType: [[Boolean]] - [[true]] to use a trigger nearest to the '''checkedPosition''', [[false]] to use all triggers which the position is in


|p6=cameraArea: [[Boolean]] - [[true]] to add camera area|Parameter 6=
|p5=editingArea: [[Boolean]] - [[true]] to add editing area


| [[Boolean]]|Return value=
|p6=cameraArea: [[Boolean]] - [[true]] to add camera area


|x1= <code>[ BIS_curator,[trigger_1,trigger_2],[0,0,0],[[true]], [[true]], [[true]] ] [[call]] [[BIS_fnc_addCuratorAreaFromTrigger]];</code>|Example 1=
| [[Boolean]]


|x1= <code>[ BIS_curator,[trigger_1,trigger_2],[0,0,0],[[true]], [[true]], [[true]] ] [[call]] [[BIS_fnc_addCuratorAreaFromTrigger]];</code>


| [[Curator]] |See also=
 
| [[Curator]]
}}
}}



Revision as of 23:40, 17 January 2021

Hover & click on the images for description

Description

Description:
Add curator editing / camera area based on triggers.
Execution:
call
Groups:
Curator

Syntax

Syntax:
[curatorLogic,triggers,checkedPosition,triggerType,editingArea,cameraArea] call BIS_fnc_addCuratorAreaFromTrigger
Parameters:
curatorLogic: Logic - Curator logic
triggers: Array - List of triggers
checkedPosition: Anything - Checked position. Check BIS_fnc_position for supported data types
triggerType: Boolean - true to use a trigger nearest to the checkedPosition, false to use all triggers which the position is in
editingArea: Boolean - true to add editing area
cameraArea: Boolean - true to add camera area
Return Value:
Boolean

Examples

Example 1:
[ BIS_curator,[trigger_1,trigger_2],[0,0,0],true, true, true ] call BIS_fnc_addCuratorAreaFromTrigger;

Additional Information

See also:
Curator

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


Bottom Section