bbnm
bbnm

Reputation: 1094

How to extract color from color.new()

orangeWith80Transp = color.new(color.orange, 80)

How do I extract the color without transparency from orangeWith80Transp?

pureOrange = ?

Upvotes: 0

Views: 114

Answers (1)

rumpypumpydumpy
rumpypumpydumpy

Reputation: 3833

pureOrange = color.new(color.orange, 0)

or

pureOrange = color.new(orangeWith80Transp, 0)

Upvotes: 2

Related Questions