Sorry to bring this up again.
I an topic you said that the order of events are (and this is still true, at least from my tests):
- OnHover(True)
- OnPress(True)
- OnPress(False)
- OnHover(True)
- OnClick
Now I have separate sounds for OnHover and OnClick, but I get played them both when clicking. Is it because of this:
...
- OnPress(True)
- OnPress(False)
- OnHover(True) sound played
- OnClick sound played
...
How it can be avoided?
Thanks.