So im working on a UI and i want to animate one of the buttons (the “settings” button) to rotate when the user hovers over the icon. my current issue is that when the user removes their mouse from the button , the icon plays the animation in reverse (cross fading back) to the idle animation. ultimately this isn’t going to kill me but its something that i’d like to fix if at all possible D:
i tried editing the “Highlighted” animation to add a transition to the idle (“normal”) state making the transition time 0 but that didn’t help either. any thoughts or suggestions?
Solved it!:
for anybody else with this problem, simply edit the transition from the “Any State” node to which ever node you wish. this is an example pipeline of a normal on mouse over: [Start] >>> [ANIMATION(Normal)]>>>(Any State)>>>[ANIMATION(Highlighted)]>>>(Any State)>>>[ANIMATION(Normal)](loop till any state is called again)
Solved it, had to edit the transition from “any state” to the node i wanted.