As I understand correct, I need to do this via the Default Config Code?
The help file says:
Default Config Code:
- When creating new options, this determines the default value of the option. For most options, this starts in an OFF position, which is usually represented by a 'false' boolean.
The default code:
ConfigManager[symbol] = false;
- When creating new options, this determines the default value of the option. For most options, this starts in an OFF position, which is usually represented by a 'false' boolean.
The default code:
ConfigManager[symbol] = false;
So I picked the always dash option for testing purpose and did the following inside the Default Config Code:
ConfigManager[symbol] = true;
But it is not working. If I start the game, "always dash" is OFF.
Why? What am I doing wrong?