Created
July 1, 2019 14:58
-
-
Save pr00thmatic/0d82787b1aa846e0d672ac13d9e8d14c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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