Hell godot spcialists!
I've change the modulate to Color.AQUAMARINE, now I need to return modulate on object to default, how can i do this?
How to revert "modulate" property to defaul value?
I've always done this by simply storing the original value in a variable, ready to reassign when needed. I'm not sure if there's a better/different way though.
For someone who come here for answer: default value for modulate is Color(1,1,1,1) you can define it as
const DEFAULT_MODULATE = Color(1,1,1,1)
and use when you need it to restore defaults for modulate property