I have an object (a simple card) equipped with the Rigidbody, Collider and Animator components. In particular, Animator performs a simple clip that rotates the card 180 degrees.
So the clip should cover or uncover the card. The problem is that the card returns to its original state.
For example, when the card is uncovered, I click on it to cover and it covers as expected. However, immediately after the animation ends, it returns to its original state (uncovered). What should I do to leave it covered? Should I create two different animations? One to cover and the other to uncover and then managing the states of the animations with the blocks and arrows?
A full detailed question can be found here.