tModLoader Cant make color red?

AxerTheAxe

Skeletron Prime
Ok so, this is a weird post but here we go. I am making a last prism type weapon with a red laser. But I cant figure out how to get a good red (code shows below). If this is too stupid of a post tell me. Thank you.

C#:
private const float BeamColorHue = 1f;
private const float BeamHueVariance = 1f;
private const float BeamColorSaturation = 1f;
private const float BeamColorLightness = 1f;

//I think the values cant go past 1 :/
 
hsl(9, 100%, 60%) is red. And please look up on how HSL works
 
hsl(9, 100%, 60%) is red. And please look up on how HSL works

I have looked into it many times but nothing including what you gave me worked. Tho I have been able to get it close enough to red. Thanks
 
I have looked into it many times but nothing including what you gave me worked. Tho I have been able to get it close enough to red. Thanks
If you want a bit more saturated red then use this one hsl(5, 99%, 50%) This one should stand out a bit more as red
 
Back
Top Bottom