Storing Menu Option Choices

Hey Guys

This might seem like a dumb question, but if I have a Single Player game and in the Menu the player can choose to use the Metric or Imperial system for example, where would I store this choice? I have functions with a bool that change between the two for in game stuff, but where would I store the choice made so I can then access it when using these functions?

Thanks.

Hi,
You can store variables in the Game_Instance, it will be spawned at start game and live on levels , until you close the game.
To save a variable even when you close the game, you have create a savegame

Thanks. I’ll try it that way.