getMissionLayerEntities: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(added 2nd example)
m (Fix)
 
(56 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


|arma3|= Game name
|game1= arma3
|version1= 1.56


|1.56|= Game version
|serverExec= server
____________________________________________________________________________________________


| Returns all entities within specific [[Eden Editor]] layer. To be used when the scenario is running, not in the editor workspace.
|gr1= Eden Editor


Useful for disabling / enabling whole parts of the scenario which you add to specific layer while editing.
|gr2= Mission Information
  |= Description
____________________________________________________________________________________________


| '''getMissionLayerEntities''' layerName |= Syntax
|descr= Returns all entities within the specific [[Eden Editor: Layer|Eden Editor layer]] and its sub-layers.
|p1= 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. |= PARAMETER1
To be used when the scenario is running, not in the editor workspace.
| [[Array]] in format <code>[objects:Array, markers:Array]</code> |= RETURNVALUE
Useful to disable/enable whole parts of the scenario if layers are used during mission design.
{{Feature|informative|Default layers are not returned.}}


|x1= <code>_base = [[getMissionLayerEntities]] "Base";</code>
|s1= [[getMissionLayerEntities]] layerName
|= EXAMPLE1


|p1= layerName: can be one of:
* [[String]] - case-insensitive; layer name in the editor. If multiple layers with the same name are present in the scenario, the first found one is used
* [[Number]] - layer ID in the editor


|x2= <code>[[waitUntil]] {([[player]] [[distance]] _someObject) > 800};
|r1= [[Array]] in format [objects, markers, {{GVI|arma3|2.14|size= 0.75}} groups] (or empty array if the layer does not exist)
{
[[deleteVehicle]] [[_x]];
} [[forEach]] (('''getMissionLayerEntities''' "Simple Objects") [[select]] 0);//Deletes all objects within that layer after the player is over 800m away from _someObject</code>
|= EXAMPLE2


____________________________________________________________________________________________
|x1= <sqf>private _base = getMissionLayerEntities "Base";</sqf>


| [[get3DENLayerEntities]] |= SEEALSO
|x2= delete all objects within that layer after the player is over 800m away from _someObject:
|  |= MPBEHAVIOUR
<sqf>
____________________________________________________________________________________________
waitUntil { sleep 1; (player distance _someObject) > 800 };
}}
private _simpleObjects = (getMissionLayerEntities "Simple Objects") select 0;
{
deleteVehicle _x;
} forEach _simpleObjects;
</sqf>


<h3 style='display:none'>Notes</h3>
|x3= <sqf>private _layer1337Entities = getMissionLayerEntities 1337;</sqf>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<!-- DISCONTINUE Notes -->


|x4= <sqf>getMissionLayerEntities 42 params [["_objects", []], ["_markers", []], ["_groups", []]];</sqf>


<h3 style='display:none'>Bottom Section</h3>
|seealso= [[get3DENLayerEntities]]
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
}}
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Command Group: Eden Editor|{{uc:{{PAGENAME}}}}]]


<!-- CONTINUE Notes -->
{{Note
<dl class="command_description">
|user= R3vo
<dd class="notedate">Posted on October 26, 2016 - 15:27 (UTC)</dd>
|timestamp= 20161026152700
<dt class="note">[[User:Revo|Revo]]</dt>
|text= After an [[object]] was deleted from a layer, [[getMissionLayerEntities]] will return {{hl|&lt;NULL-object&gt;}} for the deleted [[object]].
<dd class="note">
}}
After an [[object]] was deleted from a layer, '''getMissionLayerEntities''' will return <NULL-object> for the deleted [[object]].
<br>
<br>
Version: 1.65<br>
Build: 139010<br>
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 12:45, 14 February 2024

Hover & click on the images for description

Description

Description:
Returns all entities within the specific Eden Editor layer and its sub-layers. To be used when the scenario is running, not in the editor workspace. Useful to disable/enable whole parts of the scenario if layers are used during mission design.
Default layers are not returned.
Groups:
Eden EditorMission Information

Syntax

Syntax:
getMissionLayerEntities layerName
Parameters:
layerName: can be one of:
  • String - case-insensitive; layer name in the editor. If multiple layers with the same name are present in the scenario, the first found one is used
  • Number - layer ID in the editor
Return Value:
Array in format [objects, markers, Arma 3 logo black.png2.14 groups] (or empty array if the layer does not exist)

Examples

Example 1:
private _base = getMissionLayerEntities "Base";
Example 2:
delete all objects within that layer after the player is over 800m away from _someObject:
waitUntil { sleep 1; (player distance _someObject) > 800 }; private _simpleObjects = (getMissionLayerEntities "Simple Objects") select 0; { deleteVehicle _x; } forEach _simpleObjects;
Example 3:
private _layer1337Entities = getMissionLayerEntities 1337;
Example 4:
getMissionLayerEntities 42 params [["_objects", []], ["_markers", []], ["_groups", []]];

Additional Information

See also:
get3DENLayerEntities

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
R3vo - c
Posted on Oct 26, 2016 - 15:27 (UTC)
After an object was deleted from a layer, getMissionLayerEntities will return <NULL-object> for the deleted object.