
I'm not very good at programming, so this stuff is a bit confusing for me. Anyways, what I am trying to do is something like "If pressing Button 7 (right trigger on my controller), invert the control stick's vertical input. If not pressing Button 7, then work normally." So what i did was put this in the Control Stick Up section:
And this in the Control Stick Down section:
And this works perfectly, except for when I'm not pressing Input 1. In that case, it simply doesn't do anything.
The reason I'm even doing this is because in Mario Sunshine, when you use the Squirt Nozzle, the up and down controls are inverted, so I'm trying to make it so it's not inverted.
Thank you in advance.
Code:
if(`Button 7`=false, `Axis Y-`, null), if(`Button 7`=true, `Axis Y+`, null)
Code:
if(`Button 7`=false, `Axis Y+`, null), if(`Button 7`=true, `Axis Y-`, null)
The reason I'm even doing this is because in Mario Sunshine, when you use the Squirt Nozzle, the up and down controls are inverted, so I'm trying to make it so it's not inverted.
Thank you in advance.