infoPanelComponents: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " *\| *PARAMETER[0-9]{1,3} *= * " to " ")
m (revert + fix)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma3
|game1= arma3


|1.72
|version1= 1.72


|gr1= Custom Panels
|gr1= Custom Panels


| Returns array of all components available to given object info panel.
|descr= Returns array of all components available to given object info panel.


| unit [[infoPanelComponents]] panelID
|s1= unit [[infoPanelComponents]] panelID


|p1= unit: [[Object]] - the concerned vehicle
|p1= unit: [[Object]] - the concerned vehicle
Line 15: Line 15:
|p2= panelID: [[String]] - "left" or "right" can be used as panel names
|p2= panelID: [[String]] - "left" or "right" can be used as panel names


| [[Array]] - format [className, componentType, isAccessible]:
|r1= [[Array]] - format [className, componentType, isAccessible]:
* className: [[String]] - component classname as defined in object/vehicle config
* className: [[String]] - component classname as defined in object/vehicle config
* componentType: [[String]] - componentType - component type
* componentType: [[String]] - componentType - component type
Line 33: Line 33:
* isAccessible: [[Boolean]] - boolean flag that shows if component is currently accessible (lack of required item can make it temporarily inaccessible)
* isAccessible: [[Boolean]] - boolean flag that shows if component is currently accessible (lack of required item can make it temporarily inaccessible)


|x1 = <code>{{cc| returns array of all components configured for _helicopter pilot seat}}_componentsData = [_helicopter, [-1]] [[infoPanelComponents]] "VehicleSystemsDisplayManagerComponentLeft";</code>
|x1 = <code>{{cc|returns array of all components configured for _helicopter pilot seat}}
_componentsData = [_helicopter, [-1]] [[infoPanelComponents]] "VehicleSystemsDisplayManagerComponentLeft";</code>


| [[Arma 3 Custom Info]], [[infoPanel]], [[infoPanels]], [[setInfoPanel]], [[enableInfoPanelComponent]], [[infoPanelComponentEnabled]]
|seealso= [[Arma 3 Custom Info]], [[infoPanel]], [[infoPanels]], [[setInfoPanel]], [[enableInfoPanelComponent]], [[infoPanelComponentEnabled]]
}}
}}
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
{{GameCategory|arma3|Scripting Commands}}

Revision as of 22:44, 29 January 2021

Hover & click on the images for description

Description

Description:
Returns array of all components available to given object info panel.
Groups:
Custom Panels

Syntax

Syntax:
unit infoPanelComponents panelID
Parameters:
unit: Object - the concerned vehicle
panelID: String - "left" or "right" can be used as panel names
Return Value:
Array - format [className, componentType, isAccessible]:
  • className: String - component classname as defined in object/vehicle config
  • componentType: String - componentType - component type
  • isAccessible: Boolean - boolean flag that shows if component is currently accessible (lack of required item can make it temporarily inaccessible)

Alternative Syntax

Syntax:
[unit, turretPath] infoPanelComponents panelID
Parameters:
unit: Object - the concerned vehicle
turretPath: Array - turret index
panelID: String - "left" or "right" can be used as panel names
Return Value:
Array - format [className, componentType, isAccessible]:
  • className: String - component classname as defined in object/vehicle config
  • componentType: String - componentType - component type
  • isAccessible: Boolean - boolean flag that shows if component is currently accessible (lack of required item can make it temporarily inaccessible)

Examples

Example 1:
// returns array of all components configured for _helicopter pilot seat _componentsData = [_helicopter, [-1]] infoPanelComponents "VehicleSystemsDisplayManagerComponentLeft";

Additional Information

See also:
Arma 3 Custom InfoinfoPanelinfoPanelssetInfoPanelenableInfoPanelComponentinfoPanelComponentEnabled

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