So I have a ColorRect and I try to change its transparency thru code.
I write:
$ColorRect.color = Color(100,100,100,0) #becomes invisible
$ColorRect.color = Color(100,100,100,1) #becomes white
$ColorRect.color = Color(100,100,100,100) #becomes white
$ColorRect.color = Color(100.0,100.0,100.0,100.0) #becomes white
$ColorRect.color = Color(100,100,100,0.1) #becomes white
$ColorRect.color = Color(0.39,0.39,0.39,0.39) #becomes partially transparent
$ColorRect.color = Color("64646464") #becomes partially transparent
Is that a bug or is that supposed to work like that?