At the moment this is what my code looks like:
if (!flipped){
scaleX -= 0.1;
if (scaleX < 0.0001){
sounds.playSound("flick");
flipped = true;
}
}
Here is what I'd like it to look like:
if (!flipped){
scaleX -= 0.1;
if (scaleX == 0){
sounds.playSound("flick");
flipped = true;
}
}
How can I achieve this? Because the double value (scaleX) is never actually 0.