allSimpleObjects: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Update)
m (Bot: Replacing category Scripting Commands Arma 3 with Arma 3: Scripting Commands)
Line 25: Line 25:
<!-- Appropriate categories go here -->
<!-- Appropriate categories go here -->


[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Arma 3: Scripting Commands]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Revision as of 17:34, 3 December 2018

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.

NOTE: There is no inheritance in simple objects, so only exact class match is allowed. className is not case sensitive.
Groups:
Uncategorised

Syntax

Syntax:
allSimpleObjects [className1, className2,...classNameN]
Parameters:
[className1, className2,...classNameN]: Array
className: String - simple object class name to return. 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