- Edited
I'm trying to implement a method for dynamically changing font_color in Labels and Buttons. I have one method that is used for both initial application and for updates, but only the first value passed ever gets used.
public void OnColorChanged(string key, Color color)
{
GD.Print("StandardLabel::OnColorChanged " + key + " from " + label.GetThemeColor(key).ToString(".00") + " to " + color.ToString(".00"));
label.AddThemeColorOverride("font_color", color);
}
I can see that the method is being called and recieves the correct new Color values, and there are no runtime warnings or errors, but the value returned by GetThemeColor (and the Color visible in the game screen) is always unchanged- it returns the first value that was applied. Any further calls to AddThemeColorOverride don't change anything.
I even tried re-writing this to call RemoveThemeColorOverride first, or to call RemoveOverride and then wait a frame before applying the new value. Nothing works.
Whats the deal here? Is AddThemeColorOverride only meant to be called ONE TIME and can't be changed later? How can the value be modified more than once? Is there some extra method I have to call to get the value applied?
EDIT 1:
Even more confounding is that if I use the Remote browser, the "Font Color" property can be changed and the value on the screen updates accordingly. How is changing the value in the editor different from calling AddThemeColorOverride?
EDIT 2:
The same issue exists when using the Label's Modulate property. Only the first value applied sticks.