getMissionLayerEntities: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "{{Command " to "{{RV|type=command ") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *PARAMETER[0-9]{1,3} *= * " to " ") |
||
Line 31: | Line 31: | ||
|s2= [[getMissionLayerEntities]] layerID | |s2= [[getMissionLayerEntities]] layerID | ||
|p21= layerID: [[Number]] - Layer ID in the editor. | |p21= layerID: [[Number]] - Layer ID in the editor. | ||
|r2= [[Array]] in format <code>[objects:Array, markers:Array]</code> | |r2= [[Array]] in format <code>[objects:Array, markers:Array]</code> |
Revision as of 18:06, 29 January 2021
Description
- Description:
- Description needed
- Groups:
- Eden EditorMission Information
Syntax
- Syntax:
- Syntax needed
- Parameters:
- layerName: String - Layer name in the editor. If multiple layers with the same name are present in the scenario, the first found one is used.
- Return Value:
- Array in format
[objects:Array, markers:Array]
Alternative Syntax
- Syntax:
- getMissionLayerEntities layerID
- Parameters:
- layerID: Number - Layer ID in the editor.
- Return Value:
- Array in format
[objects:Array, markers:Array]
Examples
- Example 1:
_base = getMissionLayerEntities "Base";
- Example 2:
waitUntil {(player distance _someObject) > 800}; { deleteVehicle _x; } forEach ((getMissionLayerEntities "Simple Objects") select 0); // Deletes all objects within that layer after the player is over 800m away from _someObject
- Example 3:
_layer1337Entities = getMissionLayerEntities 1337;
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
- Posted on October 26, 2016 - 15:27 (UTC)
- R3vo
-
After an object was deleted from a layer, getMissionLayerEntities will return <NULL-object> for the deleted object.
Version: 1.65
Build: 139010