Okay so the title may not make the most sense but I will explain it better here.. what i'm trying to do is take the value of 2 and make it equal to .01 and make .01 = 2, well I tried to hardcode it like this
if (Value = 2)
Value = 0;
else if (Value = 1.99)
Value = .01;
else if (Value = 1.98)
Value = .02;
else if (Value = 1.97)
Value = .03;
else if (Value = 1.96)
Value = .04;
else if (Value = 1.95)
Value = .05;
(I did that all the way down to 0... however it didn't function properly
I also tried to get the inverse of the value like so..
Value = 1 / Value;
Now if the value was 2 it would return it to .5 and if the value was 1 it would set it to 1.. I knew this wouldn't work when I tried I just didn't know what to do... If anyone could lead me in the right direction that would be cool.. (also I think this thread is a little bit better than my past threads seeing how I explained it :^) )