CODE
control DEF theMainMenuJoy Joystick
{
function OnRightThumbMoveUp()
{
PlaySoundA();
c.Large_X_Spinner.rpm = c.Modded_Orb.rpm + 1;
UpdateMainMenu();
}
function OnRightThumbMoveDown()
{
PlaySoundA();
c.Large_X_Spinner.rpm = c.Modded_Orb.rpm - 1;
UpdateMainMenu();
}
{
function OnRightThumbMoveUp()
{
PlaySoundA();
c.Large_X_Spinner.rpm = c.Modded_Orb.rpm + 1;
UpdateMainMenu();
}
function OnRightThumbMoveDown()
{
PlaySoundA();
c.Large_X_Spinner.rpm = c.Modded_Orb.rpm - 1;
UpdateMainMenu();
}
I have the PlaySoundA() in there just to make sure it works, and it does play the sound. So I am guessing that the menu has to be reinitialized? I got the idea from this topic in the tHc forums. So hopefully gas or jb will know. Any help would be greatly apprecitated!