#How to make a button turn smth on when tapped once but off when tapped twice?

1 messages · Page 1 of 1 (latest)

nimble summit
#

Basically a lever?

median osprey
#

Make a global variable (i recommend using a custom attribute if your going to use multiple)
Tappable component
When tapped
If {your attribute/variable) = false then
Set (a/v) = true
Execute command animate (activated anim)
Else
Set (a/v) = false
Execute command animate (deactivated anim)

median osprey
#

Idk test it