[IGN-1566] Perspective - Color function not returning a usable value

As a workaround, you can add a transform if you need to use color():

	colorIn = value
	hexVal = '#' + hex(colorIn.getRed()*65536 + colorIn.getGreen()*256 + colorIn.getBlue())[2:]
	return hexVal
3 Likes