Skip to content

Instantly share code, notes, and snippets.

@pr00thmatic
Created July 1, 2019 14:58
Show Gist options
  • Save pr00thmatic/0d82787b1aa846e0d672ac13d9e8d14c to your computer and use it in GitHub Desktop.
Save pr00thmatic/0d82787b1aa846e0d672ac13d9e8d14c to your computer and use it in GitHub Desktop.
public static string ToggleGroup (string current, string[] options) {
foreach (string option in options) {
if (GUILayout.Toggle(current == option, option, "Button")) {
current = option;
}
}
return current;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment