There seems to be some issue when using RRgb(r,g,b) and RColor(r,g,b,1.0)
When using one of the color constants everything is ok: print(str(RLPy.RRgb.BLUE.Red())+" "+str(RLPy.RRgb.BLUE.Red())+" "+str(RLPy.RRgb.BLUE.Blue())) OUTPUT: 0 0 255
When converting r, g, b values to an RRgb value there is a problem: rgb = RLPy.RRgb(100,200,50)
When using the AddDiffuseKey a RRgb value must be passed. When using one of the color Constants (i.e. RRgb.BLUE) it works fine. When using a custom color (i.e. RRgb(r,g,b)) it does not.