Godot Version
4
Question
I need someone to tell me how to change the value of a constant value please help me!
4
I need someone to tell me how to change the value of a constant value please help me!
Constants are unchangeable values, hence the name.
What’s your goal?
As @dharhix mentioned, const
cannot be changed, that’s exactly what they’re for.
If you want to have a variable whose value you can change, consider using a var
instead.