Color: Difference between revisions

From Bohemia Interactive Community
Category: Arrays
(color cannot have 5 elements)
m (Some wiki formatting)
 
(7 intermediate revisions by 5 users not shown)
Line 1: Line 1:
'''Format:'''
Color is [[:Category:Arrays|a format]] of an [[Array]],
namely an [[Array]] of [[Number]]s in format {{hl|[r, g, b]}} or {{hl|[r, g, b, a]}}, values ranging from 0 to 1.


[r, g, b, a]
* '''r''' is the intensity of '''{{Color|#F00|r}}'''ed,
* '''g''' is the intensity of '''{{Color|#0F0|g}}'''reen,
* '''b''' is the intensity of '''{{Color|#00F|b}}'''lue
* '''a''', if present, is '''{{Color|grey|a}}'''lpha (opacity). An alpha value of 0 means totally transparent and a value of 1 means totally opaque.


'''Description:'''
{{Feature|informative|
In config, the color array respects the RGBA format, only it is encapsulated by curly braces:
<syntaxhighlight lang="cpp">myColor[] = { 1, 1, 1, 1 };</syntaxhighlight>
}}


Color - r is the intensity of red, g is the intensity of green, b is the intensity of blue.
== Examples ==


a is alpha (opacity). An alpha value of 0 means totally transparent and a value of 1 means totally opaque.
{|  class="wikitable"
! Colour
! [[SQF Syntax|SQF]] Array
! HTML
! Render
|-
| Mauve purple
| <sqf>[0.3, 0.3, 0.5, 1]</sqf>
| <syntaxhighlight lang="html">#4D4D80</syntaxhighlight>
| style="background-color: #4D4D80" |
|-
| White
| <sqf>[1, 1, 1, 1]</sqf>
| <syntaxhighlight lang="html">#FFFFFF</syntaxhighlight>
| style="background-color: #FFF" |
|-
| Camo green
| <sqf>[0, 0.2, 0, 1]</sqf>
| <syntaxhighlight lang="html">#003300</syntaxhighlight>
| style="background-color: #030" |
|-
| Rust orange
| <sqf>[0.73, 0.24, 011, 1]</sqf>
| <syntaxhighlight lang="html">#BA3D1C</syntaxhighlight>
| style="background-color: #BA3D1C" |
|}


All values range from 0 to 1.
Here are a few colors to start you off:
[0.3,0.3,0.5,1]; // mauve purple
[1,1,1,1] // white
[0,0.2,0,1] // camo green
[0.73,0.24,0.11,1] // Rust orange


[[Category: Arrays]]
[[Category: Arrays]]

Latest revision as of 12:46, 22 November 2025

Color is a format of an Array, namely an Array of Numbers in format [r, g, b] or [r, g, b, a], values ranging from 0 to 1.

  • r is the intensity of red,
  • g is the intensity of green,
  • b is the intensity of blue
  • a, if present, is alpha (opacity). An alpha value of 0 means totally transparent and a value of 1 means totally opaque.
In config, the color array respects the RGBA format, only it is encapsulated by curly braces:
myColor[] = { 1, 1, 1, 1 };

Examples

Colour SQF Array HTML Render
Mauve purple
[0.3, 0.3, 0.5, 1]
#4D4D80
White
[1, 1, 1, 1]
#FFFFFF
Camo green
[0, 0.2, 0, 1]
#003300
Rust orange
[0.73, 0.24, 011, 1]
#BA3D1C