I’ve been converting quite a few JavaScript scripts to C# and I’m finishing up. I encountered a problem with a few lines of code like this and I’m not experienced enough to know a work around. The error is Unexpected symbol `[’
GameQualitySettings.overallQuality = SettingsIntSlider (
"Overall Quality Level", 125, "Overall quality level of the game.",
GameQualitySettings.overallQuality, 0, 5,
["QUALITY: FASTEST", "QUALITY: FAST", "QUALITY: SIMPLE", "QUALITY: GOOD", "QUALITY: BEAUTIFUL", "QUALITY: FANTASTIC"]);
Thanks for taking a look.