fliph()
There is no example for fliph() function, so I had to find how it works by making a lot of mistakes and ended up with code like this:
.addSprite(name2,{animation: car, posx: carx, posy: cary, width: carw, height: carh}).fliph(true);
But it does not work as expected.
What I expected: flip image/mirror image horizontally
What really happened: It not only flips image but all logic too. Left side is not zero any more and if you want to move from left to right you need to decrease x instead of increasing it.
I want to let user to move object left and right and use the same animation, so its sounds logical just flip the same image instead of drawing new one...
Is there a solution for this?
.addSprite(name2,{animation: car, posx: carx, posy: cary, width: carw, height: carh}).fliph(true);
But it does not work as expected.
What I expected: flip image/mirror image horizontally
What really happened: It not only flips image but all logic too. Left side is not zero any more and if you want to move from left to right you need to decrease x instead of increasing it.
I want to let user to move object left and right and use the same animation, so its sounds logical just flip the same image instead of drawing new one...
Is there a solution for this?
Comments
What you want to do is:
.fliph()
and.flipv()
works in the following way:
- If you specify no argument they will return is the object is flipped or not.
- If you pass
- If you pass
This means that this operation is "absolute". To achieve what you want you have to do:true
the object will be flippedfalse
the object will not be flipped