Create Light Color Help!!!!

Noah167

Terrarian
I am trying to change my items "In-World" color to be a blue like Soul of Might but I cant change it from white...
What do i do?
My code:
public override void PostUpdate() {
Lighting.AddLight(Item.Center, Color.WhiteSmoke.ToVector3() * 0.28f * Main.essScale);
}
 

Attachments

  • 20221014171756_1.jpg
    20221014171756_1.jpg
    175.4 KB · Views: 61
are you saying if you change it to any other color it doesn't work or did you not try changing the color like this?

C#:
public override void PostUpdate() {

Lighting.AddLight(Item.Center, Color.SkyBlue.ToVector3() * 0.28f * Main.essScale);

}
 
Back
Top Bottom