I understand how to change a Label’s text color (using set()), but I can’t seem to find out how to tween its color. There seems to be no documentation on how to do so and I don’t think set() allows you to tween. Is there a way to do this?
# Your function to tween should accept a parameter that the tween will tween through.
create_tween().tween_method(function_to_tween, from_color, to_color, duration)
Wow, that makes a whole lot more sense. I did actually try that before, but I wasn’t using theme overrides correctly in the first place (I didn’t have it enabled). Thanks for clarifying, though!