setEditorObjectScope: Difference between revisions
Jump to navigation
Jump to search
m (Grammar.) |
(description, syntax, examples) |
||
Line 7: | Line 7: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| This command defines the level of access a user has to editor objects | | This command defines the level of access a user has to editor objects. | ||
"objects" is an array of either [[Editor Object|Editor Objects]] (eg ["_unit_0"]) or actual [[Object|Game Objects]] (eg [player]). If the array is empty then the command will automatically parse all editor objects. | |||
"editorType" is the editor type to effect (eg "unit", "vehicle", "center") or "" for all types. | |||
"condition" is an executable string that must evaluate to true or false. If true, the scope of the evaluated editor object will be modified. "_x" can be used in the string as reference to the ingame representation of the currently processed array member. | |||
"scope" is one of "HIDE", "VIEW", "SELECT", "LINKTO", "LINKFROM", "ALLNODRAG", "ALLNOTREE", "ALLNOCOPY", "ALLNOSELECT" or "ALL". | |||
"subordinatesAlso" is a boolean value. If true then subordinates in the editor will be assigned the same scope as the parent. |= Description | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| map '''setEditorObjectScope''' [objects, | | map '''setEditorObjectScope''' [objects, editorType, condition, scope, subordinatesAlso]|= Syntax | ||
|p1= map: [[Control]] - |= PARAMETER1 | |p1= map: [[Control]] - |= PARAMETER1 | ||
|p2= [objects, | |p2= [objects, editorType, condition, scope, subordinatesAlso]: [[Array]] - |= PARAMETER2 | ||
|p3= objects: [[Array]] of [[Object|Objects]] and/or [[Editor Object|Editor Objects]] |= PARAMETER3 | |||
| | |p4= editorType: [[String]] |= PARAMETER4 | ||
|p5= condition: [[String]] |= PARAMETER5 | |||
|p6= scope: [[String]] |= PARAMETER6 | |||
|p7= subordinatesAlso: [[Boolean]] |= PARAMETER7 | |||
| [[Nothing]] |= RETURNVALUE | | [[Nothing]] |= RETURNVALUE | ||
|x1= <pre>_map setEditorObjectScope [[],vehicle,side effectiveCommander _x]</pre>|= EXAMPLE1 | |x1= <pre>_map setEditorObjectScope [[],"vehicle", "side effectiveCommander _x != side player", "HIDE", false]</pre>|= EXAMPLE1 | ||
|x2= <pre>((findDisplay 128) displayCtrl 51) setEditorObjectScope [["_unit_0"], "", "true", "ALLNODRAG", false]</pre>|= EXAMPLE2 | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ |
Revision as of 22:00, 19 April 2010
Description
- Description:
- This command defines the level of access a user has to editor objects. "objects" is an array of either Editor Objects (eg ["_unit_0"]) or actual Game Objects (eg [player]). If the array is empty then the command will automatically parse all editor objects. "editorType" is the editor type to effect (eg "unit", "vehicle", "center") or "" for all types. "condition" is an executable string that must evaluate to true or false. If true, the scope of the evaluated editor object will be modified. "_x" can be used in the string as reference to the ingame representation of the currently processed array member. "scope" is one of "HIDE", "VIEW", "SELECT", "LINKTO", "LINKFROM", "ALLNODRAG", "ALLNOTREE", "ALLNOCOPY", "ALLNOSELECT" or "ALL". "subordinatesAlso" is a boolean value. If true then subordinates in the editor will be assigned the same scope as the parent.
- Groups:
- Uncategorised
Syntax
- Syntax:
- map setEditorObjectScope [objects, editorType, condition, scope, subordinatesAlso]
- Parameters:
- map: Control -
- [objects, editorType, condition, scope, subordinatesAlso]: Array -
- objects: Array of Objects and/or Editor Objects
- editorType: String
- condition: String
- scope: String
- subordinatesAlso: Boolean
- Return Value:
- Nothing
Examples
- Example 1:
_map setEditorObjectScope [[],"vehicle", "side effectiveCommander _x != side player", "HIDE", false]
- Example 2:
((findDisplay 128) displayCtrl 51) setEditorObjectScope [["_unit_0"], "", "true", "ALLNODRAG", false]
Additional Information
- See also:
- See also needed
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