BIS fnc returnVehicleTurrets: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (1 revision)
m (Text replacement - "|= Game version" to "|Game version=")
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{Function|Comments=
{{Function|= Comments
____________________________________________________________________________________________
____________________________________________________________________________________________


| arma2 |= Game name
| arma2 |Game name=


|1.00|= Game version
|1.00|Game version=
____________________________________________________________________________________________
____________________________________________________________________________________________


| <pre>
| Return the path to all turrets and sub-turrets in a vehicle.
/*
{{Feature arma3|Does not seem to work in {{arma3}}. Use [[allTurrets]] and [[BIS_fnc_allTurrets]] instead}} |DESCRIPTION=
File: fn_returnVehicleTurrets.sqf
 
Description:
Function return the path to all turrets and sub-turrets in a vehicle.
 
Parameter(s):
_this select 0: vehicle config entry (Config)
 
Returns:
Array of Scalars and Arrays - path to all turrets
*/
 
//Validate parameter count
</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_returnVehicleTurrets]]; --> |= Syntax
| [configEntry] call [[BIS_fnc_returnVehicleTurrets]] |SYNTAX=


|p1= |= Parameter 1
|p1= configEntry: [[Config]] - vehicle config entry |PARAMETER1=


| |= Return value
| [[Array]] - turret paths ([0], [0, 1] format) |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code></code> |=  
|x1= <code><nowiki>[</nowiki>[[configFile]] >> "CfgVehicles" >> "B_MBT_01_TUSK_F"] [[call]] [[BIS_fnc_returnVehicleTurrets]];</code> |EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
| [[allTurrets]], [[BIS_fnc_allTurrets]] |SEEALSO=
 
}}
}}



Revision as of 00:54, 31 August 2019

Hover & click on the images for description

Description

Description:
Return the path to all turrets and sub-turrets in a vehicle. Template:Feature arma3
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[configEntry] call BIS_fnc_returnVehicleTurrets
Parameters:
configEntry: Config - vehicle config entry
Return Value:
Array - turret paths ([0], [0, 1] format)

Examples

Example 1:
[configFile >> "CfgVehicles" >> "B_MBT_01_TUSK_F"] call BIS_fnc_returnVehicleTurrets;

Additional Information

See also:
allTurretsBIS_fnc_allTurrets

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

Notes

Bottom Section