Tutorial Making Mod Menu for Unity based Games (OnGUI Method)

anhdd.ks

Rookie
Jun 24, 2019
2
0
1
24
vn
how can i change the code to get the scrollbar and input box and return the mod's original value
 

Gay shotlot

Rookie
Aug 24, 2022
3
0
1
24
ThaiLand
if (AudioManager.DVA1)
{
AudioManager.string1 = "Fast Backflip <color=blue>ON</color>";
AudioManager.DVA1 = false;
}
else
{
AudioManager.string1 = "Fast Backflip <color=red>OFF</color>";
AudioManager.DVA1 = true;
}

why we have to reverse the bool value the the code above? or you using it in reverse ?