-
Beta Was this translation helpful? Give feedback.
Answered by
Julusian
Feb 15, 2024
Replies: 1 comment 1 reply
-
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Julusian
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you are on the right track, but the
held for 1000ms actions
will only be executed the once, so after 1s it will be decreasing the value by 10 and then stop.Instead, I would suggest using a
set value
(orset complex value
) action in theheld for 1000ms actions
group. If you give a value forfade time
then it will slowly change to the new value you specify.It sounds like you want it to then stop fading at whatever point it got to when the button is released, which you could do by adding a second delayed group
release after 1001ms
, which does anoffset value
with avalue change
of 0. This will replace the currently running fade inside the module with a new 'fade' which does nothing…