allSimpleObjects: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with "{{Command|= ____________________________________________________________________________________________ |arma3 |= Game |dev|= Game Version |arg= |= Multiplayer Arguments |ef...")
 
m (Some wiki formatting)
(29 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Command|=
{{RV|type=command
____________________________________________________________________________________________
 
|arma3 |= Game
|game1= arma3
|dev|= 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|
____________________________________________________________________________________________
* There is no inheritance in simple objects, so only exact class match is allowed.
| '''allSimpleObjects''' types |= Syntax
* ''className'' is not case sensitive.}}
|p1= types: [[Array]] |= Parameter 1
 
|p2=  |= Parameter 2
|s1= [[allSimpleObjects]] classes
|p3=  |= Parameter 3
 
|p4=  |= Parameter 4
|p1= classes: [[Array]] of [[String]]s - classnames array. Use <tt>[]</tt> to return all simple objects
|p5=  |= Parameter 5
 
|p6=  |= Parameter 6
|r1= [[Array]] - array of [[createSimpleObject|simple objects]]
| simpleObjects: [[Array]] |= Return Value
|x1= '''allSimpleObjects''' ["Box_NATO_Equip_F","Land_CampingChair_V2_F"] |= Example 1
| [[createSimpleObject]],[[isSimpleObject]] |= See Also
}}


<dl class='command_description'>
|x1= <code>[[allSimpleObjects]] ["Box_NATO_Equip_F", "Land_CampingChair_V2_F"];</code>
<!-- 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>
|x2= <code>_allSimpleObjects = [[allSimpleObjects]] [];</code>
<!-- Appropriate categories go here -->


[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
|seealso= [[createSimpleObject]], [[isSimpleObject]], [[nearestObjects]], [[nearObjectsReady]], [[nearObjects]], [[nearestObject]], [[createVehicle]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
}}

Revision as of 21:53, 9 June 2021

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:
allSimpleObjects ["Box_NATO_Equip_F", "Land_CampingChair_V2_F"];
Example 2:
_allSimpleObjects = allSimpleObjects [];

Additional Information

See also:
createSimpleObjectisSimpleObjectnearestObjectsnearObjectsReadynearObjectsnearestObjectcreateVehicle

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