Forum Discussion
AlexMilyaev-f86
5 months agoCommunity Member
If you want motion path 2 to start after the second mouse click, you will need additional triggers. There are several ways to implement such a mechanism.
The most obvious and correct way is to use variables. For example, you can create a numeric variable. Let's call it count, for example. When clicking on the button, we assign the variable a value of 1 if the variable's value is 0. In the Else case, we set the variable to 0 (i.e., if the variable has a value of 1 - it will become 0). And we will activate the motion paths when the count variable changes. When the variable changes, we activate path1 if the variable's value is 1, in else we activate path2.