Hi @Andre_Constancio
If i understand well you want your component, when selected, to go from
this state :
to this one :
but your component go directly to this one :
If this is your issue, it’s not a bug it’s the default behavior
When the component is selected
and received a “Mouse up” event it changes to its default
states. But right after (less than an 1ms), the default
state triggers the “While hovering” effect because you cursor is still above the component so it goes straight to its hover
states
Let me know if i missed the point
Hey 👋
I’m expecting this behaviour…
The ideia is to make a very realistic interaction with “mouse up/down” states (i’m using this prototype for usability testing)… Like a button, if i hold down the click, it should wait for me to release it to properly register my action, so if i hold the click down and release it outside the button, nothing happens.
The thing is, when setting “set variable” interactions in my variant, i need to change it to the desired state that I want the logic to happen, configure the logic, then switch back to its default state, so when i preview the prototype, it starts in the correct state.
But when interacting with the variant, reaching the state that should trigger my logic, nothing happens…
As a workaround i’ve managed to make it work as expected by “hardcoding” the toggle logic, basically making a new component from each of my variants (wich defies the purpose of having instances 😪)
Thanks for sharing 🫰