Color: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Some wiki formatting) |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
== Format == | == Format == | ||
[[Array]] of [[Number]]s in format | [[Array]] of [[Number]]s in format {{hl|[r, g, b]}} or {{hl|[r, g, b, a]}}, values ranging from 0 to 1. | ||
* '''r''' is the intensity of '''r'''ed, | * '''r''' is the intensity of '''r'''ed, | ||
Line 12: | Line 12: | ||
== Examples == | == Examples == | ||
< | <sqf> | ||
[1, 1, 1, 1] | [0.3, 0.3, 0.5, 1] // mauve purple | ||
[0, 0.2, 0, 1] | [1, 1, 1, 1] // white | ||
[0.73, 0.24, 0.11, 1] | [0, 0.2, 0, 1] // camo green | ||
[0.73, 0.24, 0.11, 1] // Rust orange | |||
</sqf> | |||
The color array is encapsulated by curly braces in config: | The color array is encapsulated by curly braces in config: |
Latest revision as of 14:09, 15 July 2022
Color is a format of an Array.
Format
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.
Examples
[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
The color array is encapsulated by curly braces in config:
myColor[] = { 1, 1, 1, 1 };