
This brick changes the color of particles emitted by the actor. It’s like changing the color of confetti in a party popper.
A hex code color is a way to represent colors using hexadecimal values. It is made up of six characters, which can be numbers (0-9) or letters (A-F). The code is usually written with a “#” at the beginning, like this: #RRGGBB.
- The first two characters (
RR) represent the red component of the color. - The next two characters (
GG) represent the green component. - The last two characters (
BB) represent the blue component.
Each pair of characters can range from 00 (which means none of that color) to FF (which means the maximum amount of that color). For example:
#000000 is black (no color).
#FF0000 is pure red.
#00FF00 is pure green.
#0000FF is pure blue.
#FFFFFF is white (maximum red, green, and blue).

You must be logged in to post a comment.