Color255: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Links to variable articles)
(undone multipage)
 
(46 intermediate revisions by 25 users not shown)
Line 1: Line 1:
A string of three unsigned [[integer]]s (0-255) separated by spaces:
{{LanguageBar}}
{{note|This is not a C++ variable.}}
 
A string of three [[byte]]s (0-255) separated by spaces:
<code>RED GREEN BLUE</code>
<code>RED GREEN BLUE</code>


===Examples:===
== Examples ==
 
:Red = "<code>255 0 0</code>"
:Red = "<code>255 0 0</code>"


Line 12: Line 14:
:Orange = "<code>255 128 0</code>"
:Orange = "<code>255 128 0</code>"


Hammers allows for additional [[integer]]s (possibly [[string]]s and [[float]]s too?) to be attached to the end of the color255.  This is used by light entities to store their brightness.
{{note|Light entities use Color255 to represent color, followed by an '''[[integer]]''' for intensity.<br>'''Example: <code>"255 255 255 5000"</code>'''}}
 
== See also ==
* [[Color1]]
 
== External links ==
* [https://www.w3schools.com/colors/colors_rgb.asp W3 Schoools Colors RGB and RGBA]
 
[[Category:Variables]]
[[Category:Glossary]]

Latest revision as of 06:07, 13 July 2024

English (en)Deutsch (de)Hrvatski (hr)Русский (ru)中文 (zh)Translate (Translate)
Note.pngNote:This is not a C++ variable.

A string of three bytes (0-255) separated by spaces: RED GREEN BLUE

Examples

Red = "255 0 0"
Green = "0 255 0"
Blue = "0 0 255"
Orange = "255 128 0"
Note.pngNote:Light entities use Color255 to represent color, followed by an integer for intensity.
Example: "255 255 255 5000"

See also

External links