CColorRef:Set


The Set method initializes the red, green, and blue color members. Individual color members can be set directly as properties, as in rgb.R, rgb.G, and rgb.B for a CColorRef object Rgb.

Syntax

CColorRef:Set( R, G, B )

where

    R,G, and B are numbers in the range 0 to 255.

Example

The following script 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

Related Topics

Get

CColorRef class