allSimpleObjects: Difference between revisions
Jump to navigation
Jump to search
(dev) |
Killzone Kid (talk | contribs) (format, see also, example) |
||
Line 6: | Line 6: | ||
|eff= |= Multiplayer Effects | |eff= |= Multiplayer Effects | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| Returns array of all simple objects that belong to | | 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>'''NOTE''': There is no inheritance in simple objects, so only exact class match is allowed. ''className'' is not case sensitive. |= Description | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| '''allSimpleObjects''' | | '''allSimpleObjects''' [className1, className2,...classNameN] |= Syntax | ||
|p1= | |p1= [className1, className2,...classNameN]: [[Array]] |= Parameter 1 | ||
|p2= |= Parameter 2 | |p2= className: [[String]] - simple object class name to return. Use [] to return all simple objects|= Parameter 2 | ||
| [[Array]] - array of [[createSimpleObject|simple objects]] |= Return Value | |||
| | |x1= <code>[[allSimpleObjects]] ["Box_NATO_Equip_F", "Land_CampingChair_V2_F"];</code> |= Example 1 | ||
|x2= <code>_allSimpleObjects = [[allSimpleObjects]] [];</code> |= Example 1 | |||
| [[createSimpleObject]], [[isSimpleObject]], [[createVehicle]] |= See Also | |||
|x1= | |||
| [[createSimpleObject]],[[isSimpleObject]] |= See Also | |||
}} | }} | ||
<dl class='command_description'> | <dl class='command_description'> | ||
</dl> | </dl> | ||
Revision as of 22:46, 13 December 2016
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
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
[[Category:Introduced with arma3dev version 1.67]][[ Category: arma3dev: New Scripting Commands | ALLSIMPLEOBJECTS]][[ Category: arma3dev: Scripting Commands | ALLSIMPLEOBJECTS]]