allSimpleObjects: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
mNo edit summary
(14 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Command|=
{{Command|Comments=
____________________________________________________________________________________________
____________________________________________________________________________________________
|arma3 |= Game
 
|1.67|= Game Version
|arma3 |Game name=
|arg=  |= Multiplayer Arguments
 
|eff=  |= Multiplayer Effects
|1.68|Game Version=
 
|arg=  |Multiplayer Arguments=
 
|eff=  |Multiplayer Effects=
 
|gr1= Object Detection |GROUP1=
____________________________________________________________________________________________
 
| 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.<br><br>
{{Informative|
*There is no inheritance in simple objects, so only exact class match is allowed.
* ''className'' is not case sensitive.}} |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________
| 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
 
| [[allSimpleObjects]] classes |SYNTAX=
 
|p1= classes: [[Array]] of [[String]]s - classnames array. Use <tt>[]</tt> to return all simple objects |PARAMETER1=
 
| [[Array]] - array of [[createSimpleObject|simple objects]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
| '''allSimpleObjects''' types |= Syntax
 
|p1= types: [[Array]] |= Parameter 1
|x1= <code>[[allSimpleObjects]] ["Box_NATO_Equip_F", "Land_CampingChair_V2_F"];</code> |EXAMPLE1=
|p2=  |= Parameter 2
 
|p3= |= Parameter 3
|x2= <code>_allSimpleObjects = [[allSimpleObjects]] [];</code> |EXAMPLE2=
|p4= |= Parameter 4
 
|p5=  |= Parameter 5
| [[createSimpleObject]], [[isSimpleObject]], [[nearestObjects]], [[nearObjectsReady]], [[nearObjects]], [[nearestObject]], [[createVehicle]] |SEEALSO=
|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'>
<dl class='command_description'>
<!-- 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>
</dl>



Revision as of 15:48, 27 September 2020

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

Bottom Section