Answers for "how to select multiple toggles at once in unity"

C#
0

how to select multiple toggles at once in unity

public void MyToggles()
{
     if (ToggleOptions > 2)
     {
     //code to uncheck the last checked item
     }
}

public void ToggleOptions()
{
//code here to group together your toggles
}
Posted by: Guest on April-15-2022

Code answers related to "how to select multiple toggles at once in unity"

C# Answers by Framework

Browse Popular Code Answers by Language