CColorRef:Set
The Set method initializes the red, green, and blue color members. Individual color members can be set directly as data members, as in rgb.R, rgb.G, and rgb.B for a CColorRef named rgb.
CColorRef:Set( R, G, B ) |
whereR, G, and B are numbers in the range 0 to 255.
The following script fragment sets the values for all 3 color components:
C = CColorRef:new() |
-- create a new CColorRef |
C:Set(255,100,0) |
-- set to orange |
Printf("Color: %d,%d,%d", C:Get() ) |
-- result: Color: 255,100,0 |