Lui.RadioGroup
A single-select list. Options are LuiOption(value, label) pairs, or a plain string list when the
value and label are the same.
var difficulties = new[]
{
new LuiOption("easy", "Easy"),
new LuiOption("normal", "Normal"),
new LuiOption("hard", "Hard")
};
Lui.RadioGroup(difficulties, difficulty.Value, value => difficulty.Value = value)
Lui.RadioGroup(new[] { "Low", "Medium", "High" }, quality.Value, value => quality.Value = value)Last updated on