color_t

local col = color_t(255, 0, 0, 255)
print(col) 

-- if not supplying an alpha argument, it will default to 255
assert(col == color_t(255, 0, 0))

Fields

FieldDescription

r int

g int

b int

a int

Functions

TODO

Last updated