allSimpleObjects: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Some wiki formatting)
 
(36 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Command|=
{{RV|type=command
____________________________________________________________________________________________
 
|arma3 |= Game
|game1= arma3
|1.67|= Game Version
|version1= 1.68
|arg=  |= Multiplayer Arguments
 
|eff=  |= Multiplayer Effects
|gr1= Object Detection
____________________________________________________________________________________________
 
| Returns array of all simple objects that belong to one of the listed types / classes. If the array of types is empty all simple objects are returned.<br><br>''There is no inheritance in simple objects, so only exact class match is allowed. However classname is not case sensitive.'' |= Description
|descr= Returns array of all simple objects that belong to the listed class names. If the array of types is empty [], all simple objects are returned including those without class name.
____________________________________________________________________________________________
{{Feature|informative|
| '''allSimpleObjects''' types |= Syntax
* There is no inheritance in simple objects, so only exact class match is allowed.
|p1= types: [[Array]] |= Parameter 1
* ''className'' is not case sensitive.
|p2=  |= Parameter 2
|p3=  |= Parameter 3
|p4=  |= Parameter 4
|p5=  |= Parameter 5
|p6=  |= Parameter 6
| simpleObjects: [[Array]] |= Return Value
|x1= '''allSimpleObjects''' ["Box_NATO_Equip_F","Land_CampingChair_V2_F"] |= Example 1
| [[createSimpleObject]],[[isSimpleObject]] |= See Also
}}
}}


<dl class='command_description'>
|s1= [[allSimpleObjects]] classes
<!-- BEGIN Note Section -->
<!-- For example:
<dd class='notedate'>Posted on Month Day, Year - Time (UTC)</dd>
<dt class='note'>'''[[User:User Name|User Name]]'''</dt>
<dd class='note'>This is an example note. It is true and verifiable, and contains a little code snippet.
<code>[[if]] ([[_this]] == anExample) [[then]] { [[hint]] Leave it here for others to read; };</code></dd>
-->
<!-- END Note Section -->
</dl>


<h3 style='display:none'>Bottom Section</h3>
|p1= classes: [[Array]] of [[String]]s - classnames array. Use {{hl|[]}} to return all simple objects
<!-- Appropriate categories go here -->


[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
|r1= [[Array]] - array of [[createSimpleObject|simple objects]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
 
|x1= <sqf>private _boxesAndChairs = allSimpleObjects ["Box_NATO_Equip_F", "Land_CampingChair_V2_F"];</sqf>
 
|x2= <sqf>private _allSimpleObjects = allSimpleObjects [];</sqf>
 
|seealso= [[createSimpleObject]] [[isSimpleObject]] [[nearestObjects]] [[nearObjectsReady]] [[nearObjects]] [[nearestObject]] [[createVehicle]]
}}

Latest revision as of 15:12, 22 April 2022

Hover & click on the images for description

Description

Description:
Returns array of all simple objects that belong to the listed class names. If the array of types is empty [], all simple objects are returned including those without class name.
  • There is no inheritance in simple objects, so only exact class match is allowed.
  • className is not case sensitive.
Groups:
Object Detection

Syntax

Syntax:
allSimpleObjects classes
Parameters:
classes: Array of Strings - classnames array. Use [] to return all simple objects
Return Value:
Array - array of simple objects

Examples

Example 1:
private _boxesAndChairs = allSimpleObjects ["Box_NATO_Equip_F", "Land_CampingChair_V2_F"];
Example 2:
private _allSimpleObjects = allSimpleObjects [];

Additional Information

See also:
createSimpleObject isSimpleObject nearestObjects nearObjectsReady nearObjects nearestObject createVehicle

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