I'm trying to create an animated button that has 3 states for a mobile app.
The states are Resting, Short-press, Long-press.
What node objects should I be using to experiment with a button that does the following:
In resting state it's just a handle (like on a toilet), When pressed, I want a timer to watch the press for how long it's being pressed. For a short press, the animation switched to "Jiggle", then on long-press it switches to "Flush"
Is TextureButton the right object to be using? or should I be using Button and figure out the animation switching on my own?