BIS fnc displayColorGet: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "Color" to "Color (RGBA)")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Function|Comments=
{{Function|Comments=
____________________________________________________________________________________________


| TKOH |Game name=
| TKOH |Game name=
Line 7: Line 6:


|gr1= GUI |GROUP1=
|gr1= GUI |GROUP1=
____________________________________________________________________________________________


| Loads custom [[User Interface Colors|color settings]] from CfgUIDefault.
| Loads custom [[User Interface Colors|color settings]] from CfgUIDefault.
Line 78: Line 76:
{{!}}}
{{!}}}
  |DESCRIPTION=
  |DESCRIPTION=
____________________________________________________________________________________________


| [tag, variable] call [[BIS_fnc_displayColorGet]] |SYNTAX=
| [tag, variable] call [[BIS_fnc_displayColorGet]] |SYNTAX=
Line 87: Line 84:


| [[Array]] - in format [[Color|Color (RGBA)]] |RETURNVALUE=
| [[Array]] - in format [[Color|Color (RGBA)]] |RETURNVALUE=
____________________________________________________________________________________________


|s2= init call [[BIS_fnc_displayColorGet]]; |SYNTAX2=
|s2= init call [[BIS_fnc_displayColorGet]]; |SYNTAX2=
Line 94: Line 90:


|r2= [[Nothing]] |RETURNVALUE2=
|r2= [[Nothing]] |RETURNVALUE2=
____________________________________________________________________________________________
   
   
|x1= <code>["GUI", "BCG_RGB"] [[call]] [[BIS_fnc_displayColorGet]];//Returns menu color</code>|EXAMPLE1=
|x1= <code>["GUI", "BCG_RGB"] [[call]] [[BIS_fnc_displayColorGet]];//Returns menu color</code>|EXAMPLE1=
____________________________________________________________________________________________


| [[Color|Color (RGBA)]], [[BIS_fnc_colorRGBtoHTML]], [[BIS_fnc_colorRGBAtoHTML]], [[BIS_fnc_colorRGBAtoTexture]] |SEEALSO=
| [[Color|Color (RGBA)]], [[BIS_fnc_colorRGBtoHTML]], [[BIS_fnc_colorRGBAtoHTML]], [[BIS_fnc_colorRGBAtoTexture]] |SEEALSO=

Revision as of 00:12, 17 January 2021

Hover & click on the images for description

Description

Description:
Loads custom color settings from CfgUIDefault. If variables are not stored in profileNamespace yet, the function will declare them.
Arma 3 v1.99
Tag Variable Description
"IGUI" "BCG_RGB" Backgrounds
"TEXT_RGB" Active Elements
"WARNING_RGB" Warnings
"ERROR_RGB" Errors
"TACTPING_RGB" Tactical Ping
"GUI" "BCG_RGB" Backgrounds
"TITLETEXT_RGB" Title Text
"Map" "BLUFOR" BLUFOR
"OPFOR" OPFOR
"Independent" Independent
"Civilian" Civilian
"Unknown" Unknown
"Subtitles" "Background" Subtitle background
"Text" Subtitle text
Take On Helicopters v1.00
Tag Variable Description
"IGUI" "IGUI_TEXT_RGB" HUD color RGB
"IGUI_TEXT_COLOR" HUD color RGBA
"GUI" "BCG_RGB" menu background RGB
"GUI_BCG_COLOR" menu background RGBA
"GUI_BCG_MEDIUM_RGB" button background RGB (darker version of GUI_BCG_RGB)
"GUI_BCG_MEDIUM_COLOR" button background RGBA
"GUI_BCG_ACTIVE_RGB" active button background color (e.g. focused buttons) RGB
Execution:
call
Groups:
GUI

Syntax

Syntax:
[tag, variable] call BIS_fnc_displayColorGet
Parameters:
tag: String - Tag defined in CfgUIDefault
variable: String - Variable defined in "CfgUIColors" >> Variables
Return Value:
Array - in format Color (RGBA)

Alternative Syntax

Syntax:
init call BIS_fnc_displayColorGet;
Parameters:
init: Boolean - when used, function will initialize all color presets
Return Value:
Nothing

Examples

Example 1:
["GUI", "BCG_RGB"] call BIS_fnc_displayColorGet;//Returns menu color

Additional Information

See also:
Color (RGBA)BIS_fnc_colorRGBtoHTMLBIS_fnc_colorRGBAtoHTMLBIS_fnc_colorRGBAtoTexture

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