What I'm trying to do is to increment the entire float value, for example:
Incrementing
-0.09683964401
to:
1.09683964401
or:
1.09683964401
to:
2.09683964401
Decrementing
-0.09683964401
to:
-1.09683964401
or:
-1.09683964401
to:
-2.09683964401
I know I would need to use a loop, but how would I do it?
This is what I tried:
(float)myFloatValue++;
which doesn't do what I actually need.